@omnia/fx 7.8.2-preview → 7.8.2
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/README.md +2 -2
- package/events/package.json +3 -3
- package/internal-do-not-import-from-here/core/Cookies.d.ts +2 -1
- package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +60 -21
- package/internal-do-not-import-from-here/core/http/RequestAborter.d.ts +5 -0
- package/internal-do-not-import-from-here/core/http/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +11 -1
- package/internal-do-not-import-from-here/index.d.ts +4 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/rules/DisplayRules.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AIEngineSetupService.d.ts +10 -0
- package/internal-do-not-import-from-here/services/BusinessProfileService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/OmniaSearchUserService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/SecurityRoles.d.ts +1 -0
- package/internal-do-not-import-from-here/services/SemanticSearchService.d.ts +12 -0
- package/internal-do-not-import-from-here/services/TargetingPropertyService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/index.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/Future.d.ts +8 -0
- package/internal-do-not-import-from-here/shared/models/Future.js +36 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.js +1 -0
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +17 -37
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +20 -27
- package/internal-do-not-import-from-here/spfx/components/OmniaWPStandaloneContainer.d.ts +11 -0
- package/internal-do-not-import-from-here/spfx/components/OmniaWPStandaloneInstanceHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/spfx/components/SpfxFontFamilyBase.d.ts +5 -0
- package/internal-do-not-import-from-here/spfx/components/renderer/Settings.d.ts +24 -0
- package/internal-do-not-import-from-here/spfx/components/useOmniaWP.d.ts +69 -0
- package/internal-do-not-import-from-here/spfx/models/ClientManifests.d.ts +9 -0
- package/internal-do-not-import-from-here/spfx/models/SettingsModel.d.ts +7 -0
- package/internal-do-not-import-from-here/spfx/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/spfx/tooling/index.d.ts +6 -0
- package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/FocusStore.d.ts +11 -0
- package/internal-do-not-import-from-here/stores/MediaPickerStore.d.ts +5 -1
- package/internal-do-not-import-from-here/stores/ProfileCardHandlerStore.d.ts +20 -10
- package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/analytics/metric/Metric.d.ts +35 -0
- package/internal-do-not-import-from-here/ux/analyticssettings/AnalyticsSettings.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/analyticssettings/loc/localize.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InternalConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/AppInstanceSummaryStep.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/authenticationchecker/AuthenticationChecker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/button/Button.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/button/IButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/dialog/IDialog.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/IMediaFieldDisplay.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/MediaFieldDisplay.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/IMediaFieldEdit.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/MediaFieldEdit.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filepickerprovider/mycomputerprovider/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/loc/localize.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowReportUsage.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowPostProcessor.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/IUnsplashProvider.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/Ioc/localize.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/models/UnsplashImage.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/models/CommentStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileSwitchingBtn.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/profilecard/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/loc/localize.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberConfiguration.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/social/Like.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/social/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/user/UserTokenProvider.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -0
- package/messaging/package.json +3 -3
- package/models/package.json +3 -3
- package/package.json +6 -6
- package/services/package.json +3 -3
- package/sp/models/package.json +3 -3
- package/sp/package.json +3 -3
- package/spfx/package.json +3 -3
- package/spfx/tooling/package.json +3 -3
- package/stores/package.json +3 -3
- package/ux/admin/package.json +3 -3
- package/ux/app/package.json +3 -3
- package/ux/editor/package.json +3 -3
- package/ux/package.json +3 -3
- package/ux/richtexteditor/package.json +3 -3
- package/ux/vuetify/package.json +3 -3
- package/internal-do-not-import-from-here/spfx/components/IOmniaWPContainerSettings.d.ts +0 -17
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Omnia Fx Tooling
|
|
2
2
|
|
|
3
|
-
Omnia Fx Tooling is a product from
|
|
3
|
+
Omnia Fx Tooling is a product from Omnia Digital Workplace AB. In order to use Omnia Fx you need a product license for one of the following products:
|
|
4
4
|
|
|
5
5
|
### Documentation
|
|
6
|
-
https://github.com/
|
|
6
|
+
https://github.com/omniaintranet/OmniaDocs
|
package/events/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Omnia fx events",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CookieOptions } from "../models";
|
|
1
|
+
import { CookieOptions, CookieExpiresInDays, CookieExpiresInSeconds } from "../models";
|
|
2
2
|
export declare class Cookies {
|
|
3
3
|
/**
|
|
4
4
|
* Gets content of cookie by name
|
|
@@ -6,6 +6,7 @@ export declare class Cookies {
|
|
|
6
6
|
static get(name: string): string;
|
|
7
7
|
private static isDayExpiry;
|
|
8
8
|
private static isSecondsExpiry;
|
|
9
|
+
static getCookieExpiryUtcString(expires: CookieExpiresInDays | CookieExpiresInSeconds): string;
|
|
9
10
|
/**
|
|
10
11
|
* Creates a cookie
|
|
11
12
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosRequestConfig, AxiosInstance, AxiosResponse } from "axios";
|
|
2
|
-
import { GuidValue, HttpHeaders, IContextProviderCollection, IContextProvider } from "../../models";
|
|
2
|
+
import { GuidValue, HttpHeaders, IContextProviderCollection, IContextProvider, Future } from "../../models";
|
|
3
3
|
export interface HttpClientConstructor {
|
|
4
4
|
configPromise?: Promise<AxiosRequestConfig>;
|
|
5
5
|
}
|
|
@@ -43,33 +43,70 @@ export declare class HttpClient {
|
|
|
43
43
|
constructor(configPromise?: Promise<AxiosRequestConfig>);
|
|
44
44
|
useConfig(conf: AxiosRequestConfig): void;
|
|
45
45
|
/**
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
* Handle abort functionality of abort setup
|
|
47
|
+
* @param config axios config
|
|
48
|
+
* @param httpClientOnAbort abort setup function of Future object type
|
|
49
|
+
* @returns
|
|
50
|
+
*/
|
|
51
|
+
private tryConfigAxiosAbortSignal;
|
|
49
52
|
/**
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
* Perform request using the provided request config
|
|
54
|
+
* @param config axios config
|
|
55
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
56
|
+
* @returns
|
|
57
|
+
*/
|
|
58
|
+
request<T = any>(config: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
53
59
|
/**
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
60
|
+
* Perform GET request for provided url
|
|
61
|
+
* @param url url
|
|
62
|
+
* @param config axios config
|
|
63
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
64
|
+
* @returns
|
|
65
|
+
*/
|
|
66
|
+
get<T = any>(url: string, config?: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
67
|
+
/**
|
|
68
|
+
* Perform DELETE request for provided url
|
|
69
|
+
* @param url url
|
|
70
|
+
* @param config axios config
|
|
71
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
72
|
+
* @returns
|
|
73
|
+
*/
|
|
74
|
+
delete<T = any>(url: string, config?: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
57
75
|
/**
|
|
58
|
-
|
|
59
|
-
|
|
76
|
+
* Perform HEAD request for provided url
|
|
77
|
+
* @param url url
|
|
78
|
+
* @param config axios request config
|
|
79
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
80
|
+
* @returns
|
|
81
|
+
*/
|
|
60
82
|
head(url: string, config?: AxiosRequestConfig): Promise<AxiosResponse<any>>;
|
|
61
83
|
/**
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
84
|
+
* Perform POST request for provided url
|
|
85
|
+
* @param url url
|
|
86
|
+
* @param data data
|
|
87
|
+
* @param config axios config
|
|
88
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
89
|
+
* @returns
|
|
90
|
+
*/
|
|
91
|
+
post<T = any>(url: string, data?: any, config?: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
65
92
|
/**
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
93
|
+
* Perform PUT request for provided url
|
|
94
|
+
* @param url url
|
|
95
|
+
* @param data data
|
|
96
|
+
* @param config axios config
|
|
97
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
98
|
+
* @returns
|
|
99
|
+
*/
|
|
100
|
+
put<T = any>(url: string, data?: any, config?: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
69
101
|
/**
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
102
|
+
* Perform PATCH request for provided url
|
|
103
|
+
* @param url url
|
|
104
|
+
* @param data data
|
|
105
|
+
* @param config axios config
|
|
106
|
+
* @param onAbortCallback abort call back of Future type from outside
|
|
107
|
+
* @returns
|
|
108
|
+
*/
|
|
109
|
+
patch<T = any>(url: string, data?: any, config?: AxiosRequestConfig): Future<AxiosResponse<T>>;
|
|
73
110
|
private handleAxiosError;
|
|
74
111
|
private handleSuccessResponse;
|
|
75
112
|
private enableCircuitBreaker;
|
|
@@ -78,7 +115,9 @@ export declare class HttpClient {
|
|
|
78
115
|
private writeHeadersToCookie;
|
|
79
116
|
private removeHeadersCookie;
|
|
80
117
|
private requestCtxKey;
|
|
118
|
+
private expiresAt;
|
|
81
119
|
private setupCtxAwareClient;
|
|
120
|
+
private ensureRemoveHeadersCookie;
|
|
82
121
|
private setupCtxAwareClientMSService;
|
|
83
122
|
private configurePreflightKiller;
|
|
84
123
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GuidValue, IIcon, TenantRegionalSettings, TimePeriodSettings } from "../../models";
|
|
1
|
+
import { FirstDayOfWeeks, GuidValue, IIcon, TenantRegionalSettings, TimePeriodSettings } from "../../models";
|
|
2
2
|
export declare module Utils {
|
|
3
3
|
function isNativeClass(value: any): boolean;
|
|
4
4
|
function asyncForEach<T>(array: Array<T>, callback: (item: T, index?: number, items?: Array<T>) => Promise<void>): Promise<void>;
|
|
@@ -136,6 +136,7 @@ export declare module Utils {
|
|
|
136
136
|
timeFormat: string;
|
|
137
137
|
};
|
|
138
138
|
function formatDateTime(regionalSettings: TenantRegionalSettings, date?: Date | string): string;
|
|
139
|
+
function getVuetifyFirstDayOfWeek(value: FirstDayOfWeeks): 0 | 1;
|
|
139
140
|
function removeClaimPrefixFromLoginName(loginName: string): string;
|
|
140
141
|
function getManifestIdByElementName(elementName: string): GuidValue;
|
|
141
142
|
/**
|
|
@@ -158,4 +159,13 @@ export declare module Utils {
|
|
|
158
159
|
function isUriScheme(url: string): boolean;
|
|
159
160
|
function convertDateToGMT(val: Date): Date;
|
|
160
161
|
function covertDateToLocalTimeZone(val: Date): Date;
|
|
162
|
+
function convertStringToArray(object: any): any;
|
|
163
|
+
/**
|
|
164
|
+
* Support accessibility alert after search completion: Replace message after search
|
|
165
|
+
*/
|
|
166
|
+
function supportSearchCompletedAlert(hiddenSearchAlertId: string, message: string): void;
|
|
167
|
+
/**
|
|
168
|
+
* Support accessibility alert after search completion: Get hidden alert id based on componentId
|
|
169
|
+
*/
|
|
170
|
+
function getHiddenSearchAlertId(componentId: string): string;
|
|
161
171
|
}
|
|
@@ -68,6 +68,10 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
|
68
68
|
useOmniaClient(serviceId?: Models.GuidValue): Exposes.HttpClient;
|
|
69
69
|
HttpContextProviderCollection: typeof Exposes.HttpContextProviderCollection;
|
|
70
70
|
HttpClient: typeof Exposes.HttpClient;
|
|
71
|
+
useRequestAborter: () => {
|
|
72
|
+
addRequest: (request: Models.Future<any>) => Models.Future<any>;
|
|
73
|
+
abortRequests: () => void;
|
|
74
|
+
};
|
|
71
75
|
MD5Util: typeof Exposes.MD5Util;
|
|
72
76
|
WebUtils: typeof Exposes.WebUtils;
|
|
73
77
|
Utils: typeof Exposes.Utils;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/MessageBus.js":{"id":"./node_modules/@omnia/fx/core/messaging/messagebus.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MessageBus"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronComponentPropertyEditors","VelcronDataTypes","VelcronDescriptorTypes","VelcronHorizontalAlignments","VelcronIconTypes","VelcronImageRatios","VerticalAlignments"]},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaPropertyBagBase","Provide","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","isInjectable","propertyPath","propertyPathValue","registerApi","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/MessageBus.js":{"id":"./node_modules/@omnia/fx/core/messaging/messagebus.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MessageBus"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticService","OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronComponentPropertyEditors","VelcronDataTypes","VelcronDescriptorTypes","VelcronHorizontalAlignments","VelcronIconTypes","VelcronImageRatios","VerticalAlignments"]},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaPropertyBagBase","Provide","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","isInjectable","propertyPath","propertyPathValue","registerApi","useInject","useOmniaClient","useProvide","useRequestAborter"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","Localize","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","UserTypeStore","Utils","VueWebComponentSlot","WebComponentBootstrapper","WebUtils","extendApi","install","isInjectable","omniaScriptApi","propertyPath","propertyPathValue","registerApi","setCurrentManifest","useInject","useLocalize","useOmniaClient","useProvide","vueCustomElement"]},"./node_modules/@omnia/fx/stores/index.js":{"id":"5e618f4d-d014-414e-a681-89e34cbeda0f","buildMeta":{"exportsType":"namespace"},"expo.js":["AiSettingsStore","AppNamingPolicyStore","AppStore","AuditLogStore","AzureAdUserStore","BlockTitleGlobalSettingsStore","BlockTitleSettingsStore","BusinessProfileStore","ClipboardStore","CommentLikeStore","ConnectedTenantStore","DirectionRuleStore","DynamicGroupStore","EnterpriseGlossaryStore","EnterprisePropertyCategoryStore","EnterprisePropertySetStore","EnterprisePropertyStore","ExtensionStore","FeatureStore","FileUploaderStore","GroupIdentityStore","IdentityStore","IdentitySyncProviderStore","LinkReferencesStore","LocalizationStore","MSTeamsStore","MediaPickerStore","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardHandlerStore","ProfileCardStore","PromotedTagStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","UserIdentityStore","UserTargetingStore","UserTypeIdentityPickerStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","defineStore","defineStore2"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["Localize","VueWebComponentSlot","install","useLocalize","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["AiSettingsService","AppNamingPolicyService","AppRouteService","AppService","AuditLogService","AzureAdGroupService","AzureAdUserService","AzureOpenAIService","BusinessProfilePropertyBindingProvider","BusinessProfileService","ConnectedTenantService","DataSourcePropertiesService","DataSourcePropertyDefinitionHandler","DynamicGroupService","DynamicPropertyDataSource","EnterpriseGlossaryService","EnterprisePropertiesProvider","EnterprisePropertyCategoryService","EnterprisePropertySetService","ExtendedEnterprisePropertiesPropertyBindingProvider","ExtensionsService","FeatureService","FileStorageService","GroupIdentityService","GroupService","IdentityAuthenticationService","IdentityCreationRequestService","IdentityPropertyBindingProvider","IdentitySelfServiceService","IdentityService","IdentitySyncProviderService","ImageProxyService","LinkStatusService","LocalizationService","LoginLogService","ManifestService","MediaPickerService","MicrosoftStreamService","OmniaSearchService","OmniaSearchUserService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","PropertyBindingService","PropertyDataSourceBase","QueryablePropertiesService","QueueService","RealtimeService","ReindexOmniaSearchUserService","SecretsService","SecurityRoles","SecurityService","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TestDataSourcePropertiesService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserPropertyBindingProvider","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService","WriteBackStatus"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","Localize","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","UserTypeStore","Utils","VueWebComponentSlot","WebComponentBootstrapper","WebUtils","extendApi","install","isInjectable","omniaScriptApi","propertyPath","propertyPathValue","registerApi","setCurrentManifest","useInject","useLocalize","useOmniaClient","useProvide","useRequestAborter","vueCustomElement"]},"./node_modules/@omnia/fx/stores/index.js":{"id":"5e618f4d-d014-414e-a681-89e34cbeda0f","buildMeta":{"exportsType":"namespace"},"expo.js":["AiSettingsStore","AppNamingPolicyStore","AppStore","AuditLogStore","AzureAdUserStore","BlockTitleGlobalSettingsStore","BlockTitleSettingsStore","BusinessProfileStore","ClipboardStore","CommentLikeStore","ConnectedTenantStore","DirectionRuleStore","DynamicGroupStore","EnterpriseGlossaryStore","EnterprisePropertyCategoryStore","EnterprisePropertySetStore","EnterprisePropertyStore","ExtensionStore","FeatureStore","FileUploaderStore","FocusStore","GroupIdentityStore","IdentityStore","IdentitySyncProviderStore","LinkReferencesStore","LocalizationStore","MSTeamsStore","MediaPickerStore","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardHandlerStore","ProfileCardStore","PromotedTagStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","UserIdentityStore","UserTargetingStore","UserTypeIdentityPickerStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","defineStore","defineStore2"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["Localize","VueWebComponentSlot","install","useLocalize","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["AIEngineSetupService","AiSettingsService","AppNamingPolicyService","AppRouteService","AppService","AuditLogService","AzureAdGroupService","AzureAdUserService","AzureOpenAIService","BusinessProfilePropertyBindingProvider","BusinessProfileService","ConnectedTenantService","DataSourcePropertiesService","DataSourcePropertyDefinitionHandler","DynamicGroupService","DynamicPropertyDataSource","EnterpriseGlossaryService","EnterprisePropertiesProvider","EnterprisePropertyCategoryService","EnterprisePropertySetService","ExtendedEnterprisePropertiesPropertyBindingProvider","ExtensionsService","FeatureService","FileStorageService","GroupIdentityService","GroupService","IdentityAuthenticationService","IdentityCreationRequestService","IdentityPropertyBindingProvider","IdentitySelfServiceService","IdentityService","IdentitySyncProviderService","ImageProxyService","LinkStatusService","LocalizationService","LoginLogService","ManifestService","MediaPickerService","MicrosoftStreamService","OmniaSearchService","OmniaSearchUserService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","PropertyBindingService","PropertyDataSourceBase","QueryablePropertiesService","QueueService","RealtimeService","ReindexOmniaSearchUserService","SecretsService","SecurityRoles","SecurityService","SemanticSearchService","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TestDataSourcePropertiesService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserPropertyBindingProvider","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService","WriteBackStatus"]}}}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AIEngineRAGSettings, AIEngineApiKeyCredential } from "../models/aiengine";
|
|
2
|
+
export declare class AIEngineSetupService {
|
|
3
|
+
private httpClient;
|
|
4
|
+
constructor();
|
|
5
|
+
private baseUrl;
|
|
6
|
+
getAISearchUrl: () => Promise<string>;
|
|
7
|
+
updateAISearchCredentials: (apiKeyCredential: AIEngineApiKeyCredential) => Promise<void>;
|
|
8
|
+
updateOpenAIApiCredentials: (apiKeyCredential: AIEngineApiKeyCredential) => Promise<void>;
|
|
9
|
+
updateRAGSettings: (ragSettings: AIEngineRAGSettings) => Promise<void>;
|
|
10
|
+
}
|
|
@@ -9,6 +9,7 @@ export declare class BusinessProfileService {
|
|
|
9
9
|
findProfile: (path: string) => Promise<BusinessProfile>;
|
|
10
10
|
getProfiles: () => Promise<Array<BusinessProfile>>;
|
|
11
11
|
getProfile: (profileId: string) => Promise<BusinessProfile>;
|
|
12
|
+
getDefaultBusinessProfileUrl: (profileId: string, includeOmniaAdminPath?: boolean) => Promise<string>;
|
|
12
13
|
getProfileWithProperties: (profileId: string) => Promise<BusinessProfileWithProperties>;
|
|
13
14
|
deleteProfile: (profileId: string) => Promise<void>;
|
|
14
15
|
getPathsOfProfile: (profileId: string) => Promise<Array<string>>;
|
|
@@ -4,4 +4,5 @@ export declare class OmniaSearchUserService {
|
|
|
4
4
|
private baseUrl;
|
|
5
5
|
constructor();
|
|
6
6
|
searchPaged: (searchRequest: SearchUserQuery) => Promise<PagedOmniaSearchResult<SearchUserIdentity>>;
|
|
7
|
+
multipleSearchPaged: (searchRequests: Array<SearchUserQuery>) => Promise<Array<PagedOmniaSearchResult<SearchUserIdentity>>>;
|
|
7
8
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GuidValue, SemanticSearchJobResult, SemanticSearchGetRequest, SemanticSearchResult, SemanticSearchJobResultWithData, SemanticSearchQueryableProperty, SemanticSearchQueryablePropertyCreation } from "../models";
|
|
2
|
+
export declare class SemanticSearchService {
|
|
3
|
+
private httpClient;
|
|
4
|
+
constructor();
|
|
5
|
+
private baseUrl;
|
|
6
|
+
createSemanticSearchQueriesJob: (searchRequest: SemanticSearchGetRequest) => Promise<SemanticSearchJobResult>;
|
|
7
|
+
createSemanticSearchQuestionsJob: (searchRequest: SemanticSearchGetRequest) => Promise<SemanticSearchJobResult>;
|
|
8
|
+
getSemanticSearchQuestionsResult: (questionJobId: GuidValue) => Promise<SemanticSearchJobResultWithData<SemanticSearchResult>>;
|
|
9
|
+
getSemanticSearchQueriesResult: (queryJobId: GuidValue) => Promise<SemanticSearchJobResultWithData<SemanticSearchResult>>;
|
|
10
|
+
getSemanticSearchQueryableProperties: () => Promise<SemanticSearchQueryableProperty[]>;
|
|
11
|
+
updateSemanticSearchQueryableProperties: (semanticSearchQueryableProperties: SemanticSearchQueryablePropertyCreation[]) => Promise<void>;
|
|
12
|
+
}
|
|
@@ -9,4 +9,5 @@ export declare class TargetingPropertyService {
|
|
|
9
9
|
getTargetingPropertyResult: () => Promise<Array<TargetingPropertyResult>>;
|
|
10
10
|
terminateTargetingProperty: (propertyId: GuidValue) => Promise<void>;
|
|
11
11
|
restoreTargetingProperty: (propertyId: GuidValue) => Promise<TargetingProperty<TargetingPropertyData>>;
|
|
12
|
+
invalidateTargetingPropertyResultCache: () => Promise<void>;
|
|
12
13
|
}
|
|
@@ -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
|
}
|
|
@@ -15,6 +15,14 @@ export declare class Future<T> extends Promise<T> {
|
|
|
15
15
|
* @memberof Future
|
|
16
16
|
*/
|
|
17
17
|
tryCatch(): Future<[success: T, error: Error]>;
|
|
18
|
+
unwrapAxiosApiResponse<T2>(): Future<T2>;
|
|
19
|
+
unwrap<T2>(executor: (value: T, resolve: (value: T2) => void, reject: (reason?: any) => void) => void): Future<T2>;
|
|
20
|
+
/**
|
|
21
|
+
* Expose abort for other future to use.
|
|
22
|
+
* chain method for future
|
|
23
|
+
* @param onAbort
|
|
24
|
+
*/
|
|
25
|
+
abortIf(onAbort: (cb: (reason?: any) => void) => void): this;
|
|
18
26
|
/**
|
|
19
27
|
* Aborts the request
|
|
20
28
|
*
|
|
@@ -53,6 +53,42 @@ class Future extends Promise {
|
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
55
|
}
|
|
56
|
+
unwrapAxiosApiResponse() {
|
|
57
|
+
return new Future((resolve, reject, abort) => {
|
|
58
|
+
this.abortIf(abort);
|
|
59
|
+
return this.then(response => {
|
|
60
|
+
const apiResponse = response;
|
|
61
|
+
if (apiResponse?.data.success) {
|
|
62
|
+
resolve(apiResponse.data.data);
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
reject(apiResponse.data.errorMessage);
|
|
66
|
+
}
|
|
67
|
+
}).catch(() => {
|
|
68
|
+
reject();
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
unwrap(executor) {
|
|
73
|
+
return new Future((resolve, reject, abort) => {
|
|
74
|
+
this.abortIf(abort);
|
|
75
|
+
return this.then(q => executor(q, resolve, reject));
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Expose abort for other future to use.
|
|
80
|
+
* chain method for future
|
|
81
|
+
* @param onAbort
|
|
82
|
+
*/
|
|
83
|
+
abortIf(onAbort) {
|
|
84
|
+
//to avoid "Illegal invocation" from lost context of this
|
|
85
|
+
const abort = (reason) => { this.abort(reason); };
|
|
86
|
+
onAbort(abort);
|
|
87
|
+
return this;
|
|
88
|
+
}
|
|
89
|
+
// then<TResult1 = T, TResult2 = never>(onfulfilled?: (value: T) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>): Promise<TResult1 | TResult2> {
|
|
90
|
+
// this.then();
|
|
91
|
+
// }
|
|
56
92
|
/**
|
|
57
93
|
* Aborts the request
|
|
58
94
|
*
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { SettingsService } from "../../../fx/services";
|
|
2
|
-
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
3
1
|
export type WebComponentDefinition = {
|
|
4
2
|
id: string;
|
|
5
3
|
name: string;
|
|
@@ -8,39 +6,21 @@ export type WebComponentDefinition = {
|
|
|
8
6
|
html?: string;
|
|
9
7
|
};
|
|
10
8
|
};
|
|
11
|
-
|
|
9
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
12
10
|
webpartid: string;
|
|
13
|
-
displaymode:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
private pfxWPClasses;
|
|
30
|
-
created(): void;
|
|
31
|
-
mounted(): void;
|
|
32
|
-
private init;
|
|
33
|
-
private handleSettingsElementUpdated;
|
|
34
|
-
private subcribeOpenPaneEvent;
|
|
35
|
-
private populateComponentTitle;
|
|
36
|
-
private saveComponentSettings;
|
|
37
|
-
private onSelectComponentChanged;
|
|
38
|
-
private onDisplayModeChanged;
|
|
39
|
-
private subcribeMessage;
|
|
40
|
-
private saveSettings;
|
|
41
|
-
private closeSettings;
|
|
42
|
-
private closeSettingsComponentForm;
|
|
43
|
-
private renderSettingsComponent;
|
|
44
|
-
private renderDisplayComponent;
|
|
45
|
-
render(): VueTsxSupport.JSX.Element;
|
|
46
|
-
}
|
|
11
|
+
displaymode: unknown;
|
|
12
|
+
}, never>, any, any, any>> & {
|
|
13
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
webpartid: string;
|
|
15
|
+
displaymode: unknown;
|
|
16
|
+
}, never>;
|
|
17
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
18
|
+
webpartid: string;
|
|
19
|
+
displaymode: unknown;
|
|
20
|
+
}, never>, any, any, any>> & {
|
|
21
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
22
|
+
webpartid: string;
|
|
23
|
+
displaymode: unknown;
|
|
24
|
+
}, never>;
|
|
25
|
+
});
|
|
26
|
+
export default _default;
|
|
@@ -1,31 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IOmniaWPContainerSettings } from "./IOmniaWPContainerSettings";
|
|
3
|
-
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
4
|
-
import { BlockRegistration, GuidValue } from "../../models";
|
|
1
|
+
import { GuidValue } from "../../models";
|
|
5
2
|
import "./styles/OmniaWPContainerSettings.css";
|
|
6
|
-
|
|
3
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
7
4
|
opened: boolean;
|
|
8
5
|
onClosed: () => void;
|
|
9
6
|
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
private renderDefaultBlocks;
|
|
29
|
-
private renderSearchResult;
|
|
30
|
-
render(): VueTsxSupport.JSX.Element;
|
|
31
|
-
}
|
|
7
|
+
}, never>, any, any, any>> & {
|
|
8
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
9
|
+
opened: boolean;
|
|
10
|
+
onClosed: () => void;
|
|
11
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
12
|
+
}, never>;
|
|
13
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
opened: boolean;
|
|
15
|
+
onClosed: () => void;
|
|
16
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
17
|
+
}, never>, any, any, any>> & {
|
|
18
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
19
|
+
opened: boolean;
|
|
20
|
+
onClosed: () => void;
|
|
21
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
22
|
+
}, never>;
|
|
23
|
+
});
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface OmniaWPStandaloneContainer {
|
|
2
|
+
manifestid: string;
|
|
3
|
+
webpartid: string;
|
|
4
|
+
displaymode: any;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<OmniaWPStandaloneContainer, never>, any, any, any>> & {
|
|
7
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<OmniaWPStandaloneContainer, never>;
|
|
8
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<any>, {}, import("vue-tsx-support").PropsForOutside<OmniaWPStandaloneContainer, never>, any, any, any>> & {
|
|
9
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<OmniaWPStandaloneContainer, never>;
|
|
10
|
+
});
|
|
11
|
+
export default _default;
|
package/internal-do-not-import-from-here/spfx/components/OmniaWPStandaloneInstanceHandler.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OmniaWPContainerSettingsModel } from "../../models";
|
|
2
|
+
import { OmniaWPState } from "../useOmniaWP";
|
|
3
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
4
|
+
webpartid: string;
|
|
5
|
+
settings: OmniaWPContainerSettingsModel;
|
|
6
|
+
wpState: OmniaWPState;
|
|
7
|
+
}, "settings" | "webpartid" | "wpState">, any, any, any>> & {
|
|
8
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
9
|
+
webpartid: string;
|
|
10
|
+
settings: OmniaWPContainerSettingsModel;
|
|
11
|
+
wpState: OmniaWPState;
|
|
12
|
+
}, "settings" | "webpartid" | "wpState">;
|
|
13
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
webpartid: string;
|
|
15
|
+
settings: OmniaWPContainerSettingsModel;
|
|
16
|
+
wpState: OmniaWPState;
|
|
17
|
+
}, "settings" | "webpartid" | "wpState">, any, any, any>> & {
|
|
18
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
19
|
+
webpartid: string;
|
|
20
|
+
settings: OmniaWPContainerSettingsModel;
|
|
21
|
+
wpState: OmniaWPState;
|
|
22
|
+
}, "settings" | "webpartid" | "wpState">;
|
|
23
|
+
});
|
|
24
|
+
export default _default;
|