@omnia/fx 7.8.31-preview → 7.8.33-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/UserService.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse, ScopeTypes, Identity } from "../../models";
|
|
1
|
+
import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse, ScopeTypes, Identity, ImagePropertyDefinition } from "../../models";
|
|
2
2
|
export declare class UserService {
|
|
3
3
|
private httpClient;
|
|
4
4
|
getAll: (query: UserManagementQuery) => Promise<{
|
|
@@ -23,4 +23,5 @@ export declare class UserService {
|
|
|
23
23
|
getUserImportTaskDetails: (id: GuidValue) => Promise<BulkImportUsersTasks>;
|
|
24
24
|
ensureAzureAdUserByUsername(username: string): Promise<UserIdentity>;
|
|
25
25
|
changeScope: (users: Array<Identity>, scopeType: ScopeTypes, scope: string) => Promise<void>;
|
|
26
|
+
resyncImage: (identity: UserIdentity) => Promise<PropertyValueBinding<ImagePropertyDefinition>>;
|
|
26
27
|
}
|
|
@@ -10,5 +10,12 @@ export declare module IdentityPickerLocalization {
|
|
|
10
10
|
SpecialIdentities: {
|
|
11
11
|
CurrentUser: string;
|
|
12
12
|
};
|
|
13
|
+
RemoveUser: string;
|
|
14
|
+
PeolePicker: string;
|
|
15
|
+
SearchUserLabel: string;
|
|
16
|
+
SearchUserTooltip: string;
|
|
17
|
+
NoItemsFound: string;
|
|
18
|
+
Searching: string;
|
|
19
|
+
ResultsFound: string;
|
|
13
20
|
}
|
|
14
21
|
}
|
|
@@ -40,7 +40,7 @@ export declare module SignInLocalization {
|
|
|
40
40
|
Email: string;
|
|
41
41
|
Send: string;
|
|
42
42
|
Retry: string;
|
|
43
|
-
|
|
43
|
+
SendResetPasswordMessageTooltip: string;
|
|
44
44
|
SentResetPasswordMessage: string;
|
|
45
45
|
SendResetPasswordError: string;
|
|
46
46
|
RetryResetPasswordWarning: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.33-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.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.33-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|