@omnia/fx 7.6.14-preview → 7.6.16-preview
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/internal-do-not-import-from-here/services/identities/GroupService.d.ts +3 -1
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/IdentityCreationRequestView.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ResolvedGroupIdentity, GroupIdentity, GroupIdentityAddOrUpdateRequest, Identity, GroupMembershipUpdateRequest, GroupManagementQuery, ArchiveIdentityManagementQuery } from "../../models";
|
|
1
|
+
import { ResolvedGroupIdentity, GroupIdentity, GroupIdentityAddOrUpdateRequest, Identity, GroupMembershipUpdateRequest, GroupManagementQuery, ArchiveIdentityManagementQuery, GroupIdentityAddOrUpdateWithMembershipRequest, GroupIdentityAddOrUpdateWithMembershipResponse } from "../../models";
|
|
2
2
|
export declare class GroupService {
|
|
3
3
|
private httpClient;
|
|
4
4
|
getAll: (query: GroupManagementQuery) => Promise<{
|
|
@@ -16,4 +16,6 @@ export declare class GroupService {
|
|
|
16
16
|
}>;
|
|
17
17
|
restore: (identity: GroupIdentity) => Promise<void>;
|
|
18
18
|
purge: (identity: GroupIdentity) => Promise<void>;
|
|
19
|
+
addorupdatewithmembership: (request: GroupIdentityAddOrUpdateWithMembershipRequest) => Promise<GroupIdentityAddOrUpdateWithMembershipResponse>;
|
|
20
|
+
checkCurrentUserIsGroupOwner: (identity: GroupIdentity) => Promise<boolean>;
|
|
19
21
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse } from "../../models";
|
|
1
|
+
import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse, ScopeTypes, Identity } from "../../models";
|
|
2
2
|
export declare class UserService {
|
|
3
3
|
private httpClient;
|
|
4
4
|
getAll: (query: UserManagementQuery) => Promise<{
|
|
@@ -19,7 +19,8 @@ export declare class UserService {
|
|
|
19
19
|
getBulkImportTemplateFileData: (templateFileSettings: TemplateFileSettings) => Promise<TemplateFileData>;
|
|
20
20
|
uploadBulkImportUsersFile: (file: File) => Promise<void>;
|
|
21
21
|
preValidateBulkImportFile: (file: File) => Promise<BulkImportFileValidation>;
|
|
22
|
-
getUserImportTasks: (
|
|
22
|
+
getUserImportTasks: (businessProfileId: string) => Promise<BulkImportUsersTasks[]>;
|
|
23
23
|
getUserImportTaskDetails: (id: GuidValue) => Promise<BulkImportUsersTasks>;
|
|
24
24
|
ensureAzureAdUserByUsername(username: string): Promise<UserIdentity>;
|
|
25
|
+
changeScope: (users: Array<Identity>, scopeType: ScopeTypes, scope: string) => Promise<void>;
|
|
25
26
|
}
|
|
@@ -24,6 +24,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
24
24
|
emailEnabled: BoolFilter;
|
|
25
25
|
permissionEnabled: BoolFilter;
|
|
26
26
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
27
|
+
businessProfileId: string;
|
|
27
28
|
}, "onIdentityAdded">, any, any, any>> & {
|
|
28
29
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
29
30
|
valueBind: Identity[];
|
|
@@ -49,6 +50,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
49
50
|
emailEnabled: BoolFilter;
|
|
50
51
|
permissionEnabled: BoolFilter;
|
|
51
52
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
53
|
+
businessProfileId: string;
|
|
52
54
|
}, "onIdentityAdded">;
|
|
53
55
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
54
56
|
valueBind: Identity[];
|
|
@@ -74,6 +76,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
74
76
|
emailEnabled: BoolFilter;
|
|
75
77
|
permissionEnabled: BoolFilter;
|
|
76
78
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
79
|
+
businessProfileId: string;
|
|
77
80
|
}, "onIdentityAdded">, any, any, any>> & {
|
|
78
81
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
79
82
|
valueBind: Identity[];
|
|
@@ -99,6 +102,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
99
102
|
emailEnabled: BoolFilter;
|
|
100
103
|
permissionEnabled: BoolFilter;
|
|
101
104
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
105
|
+
businessProfileId: string;
|
|
102
106
|
}, "onIdentityAdded">;
|
|
103
107
|
});
|
|
104
108
|
export default _default;
|
|
@@ -21,6 +21,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
21
21
|
emailEnabled: BoolFilter;
|
|
22
22
|
permissionEnabled: BoolFilter;
|
|
23
23
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
24
|
+
businessProfileId: string;
|
|
24
25
|
}, never>, any, any, any>> & {
|
|
25
26
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
26
27
|
onValueBindChanged: (identity: Identity) => void;
|
|
@@ -43,6 +44,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
43
44
|
emailEnabled: BoolFilter;
|
|
44
45
|
permissionEnabled: BoolFilter;
|
|
45
46
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
47
|
+
businessProfileId: string;
|
|
46
48
|
}, never>;
|
|
47
49
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
48
50
|
onValueBindChanged: (identity: Identity) => void;
|
|
@@ -65,6 +67,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
65
67
|
emailEnabled: BoolFilter;
|
|
66
68
|
permissionEnabled: BoolFilter;
|
|
67
69
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
70
|
+
businessProfileId: string;
|
|
68
71
|
}, never>, any, any, any>> & {
|
|
69
72
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
70
73
|
onValueBindChanged: (identity: Identity) => void;
|
|
@@ -87,6 +90,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
87
90
|
emailEnabled: BoolFilter;
|
|
88
91
|
permissionEnabled: BoolFilter;
|
|
89
92
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
93
|
+
businessProfileId: string;
|
|
90
94
|
}, never>;
|
|
91
95
|
});
|
|
92
96
|
export default _default;
|
|
@@ -31,6 +31,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
31
31
|
emailEnabled: BoolFilter;
|
|
32
32
|
permissionEnabled: BoolFilter;
|
|
33
33
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
34
|
+
businessProfileId: string;
|
|
34
35
|
}, "valueBind">, any, any, any>> & {
|
|
35
36
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
36
37
|
valueBind: Identity[];
|
|
@@ -63,6 +64,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
63
64
|
emailEnabled: BoolFilter;
|
|
64
65
|
permissionEnabled: BoolFilter;
|
|
65
66
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
67
|
+
businessProfileId: string;
|
|
66
68
|
}, "valueBind">;
|
|
67
69
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
68
70
|
valueBind: Identity[];
|
|
@@ -95,6 +97,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
95
97
|
emailEnabled: BoolFilter;
|
|
96
98
|
permissionEnabled: BoolFilter;
|
|
97
99
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
100
|
+
businessProfileId: string;
|
|
98
101
|
}, "valueBind">, any, any, any>> & {
|
|
99
102
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
100
103
|
valueBind: Identity[];
|
|
@@ -127,6 +130,7 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
127
130
|
emailEnabled: BoolFilter;
|
|
128
131
|
permissionEnabled: BoolFilter;
|
|
129
132
|
enableSpecialUser: ISpecialUserConfiguration;
|
|
133
|
+
businessProfileId: string;
|
|
130
134
|
}, "valueBind">;
|
|
131
135
|
});
|
|
132
136
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropertyBinding,
|
|
1
|
+
import { PropertyBinding, PropertyConfiguration, PropertyDefinition } from "@omnia/fx-models";
|
|
2
2
|
export interface UserRequestProperty {
|
|
3
3
|
propertyBinding: PropertyBinding<PropertyDefinition<any, any, any>>;
|
|
4
4
|
propertyConfiguration: PropertyConfiguration<PropertyDefinition<any, any, any>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.6.
|
|
4
|
+
"version": "7.6.16-preview",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.6.
|
|
23
|
+
"@omnia/fx-models": "7.6.16-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|