@elliemae/pui-app-sdk 5.14.0 → 5.14.1
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/dist/cjs/index.js
CHANGED
|
@@ -80,6 +80,7 @@ __export(lib_exports, {
|
|
|
80
80
|
createManager: () => import_redux_injectors.createManager,
|
|
81
81
|
createSideEffect: () => import_listenerMiddleware.createSideEffect,
|
|
82
82
|
enableReactAppForHostIntegration: () => import_react2.enableReactAppForHostIntegration,
|
|
83
|
+
endSession: () => import_auth.endSession,
|
|
83
84
|
error: () => import_error.actions,
|
|
84
85
|
errorMiddleware: () => import_errorMiddleware.errorMiddleware,
|
|
85
86
|
fetchHostAppData: () => import_fetch_host_app_data.fetchHostAppData,
|
|
@@ -98,6 +99,7 @@ __export(lib_exports, {
|
|
|
98
99
|
getStore: () => import_store3.getStore,
|
|
99
100
|
globalConstants: () => import_constants.default,
|
|
100
101
|
history: () => import_history.browserHistory,
|
|
102
|
+
httpClientProps: () => import_props.httpClientProps,
|
|
101
103
|
initServiceWorker: () => import_service_worker.initServiceWorker,
|
|
102
104
|
isCIBuild: () => import_helpers.isCIBuild,
|
|
103
105
|
isProd: () => import_helpers.isProd,
|
|
@@ -151,6 +153,7 @@ module.exports = __toCommonJS(lib_exports);
|
|
|
151
153
|
var import_auth = require("./utils/auth/index.js");
|
|
152
154
|
var import_loginParams = require("./utils/auth/loginParams.js");
|
|
153
155
|
var import_http_client = require("./communication/http-client/index.js");
|
|
156
|
+
var import_props = require("./communication/http-client/props.js");
|
|
154
157
|
var import_baseQuery = require("./communication/http-client/baseQuery.js");
|
|
155
158
|
var import_response_interceptor = require("./communication/http-client/response-interceptor.js");
|
|
156
159
|
var import_actions = require("./data/auth/actions.js");
|
package/dist/esm/index.js
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
isUserAuthorized,
|
|
3
|
+
login,
|
|
4
|
+
authorize,
|
|
5
|
+
endSession
|
|
6
|
+
} from "./utils/auth/index.js";
|
|
2
7
|
import { setLoginParams } from "./utils/auth/loginParams.js";
|
|
3
8
|
import {
|
|
4
9
|
getHTTPClient,
|
|
5
10
|
getAuthHTTPClient
|
|
6
11
|
} from "./communication/http-client/index.js";
|
|
12
|
+
import { httpClientProps } from "./communication/http-client/props.js";
|
|
7
13
|
import { sdkBaseQuery } from "./communication/http-client/baseQuery.js";
|
|
8
14
|
import { onAuthorizationFailure } from "./communication/http-client/response-interceptor.js";
|
|
9
15
|
import { auth } from "./data/auth/actions.js";
|
|
@@ -186,6 +192,7 @@ export {
|
|
|
186
192
|
createManager,
|
|
187
193
|
createSideEffect,
|
|
188
194
|
enableReactAppForHostIntegration,
|
|
195
|
+
endSession,
|
|
189
196
|
actions2 as error,
|
|
190
197
|
errorMiddleware,
|
|
191
198
|
fetchHostAppData,
|
|
@@ -204,6 +211,7 @@ export {
|
|
|
204
211
|
getStore,
|
|
205
212
|
default2 as globalConstants,
|
|
206
213
|
browserHistory as history,
|
|
214
|
+
httpClientProps,
|
|
207
215
|
initServiceWorker,
|
|
208
216
|
isCIBuild,
|
|
209
217
|
isProd,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export { isUserAuthorized, login, authorize } from './utils/auth/index.js';
|
|
1
|
+
export { isUserAuthorized, login, authorize, endSession, } from './utils/auth/index.js';
|
|
2
2
|
export { setLoginParams } from './utils/auth/loginParams.js';
|
|
3
3
|
export { getHTTPClient, getAuthHTTPClient, } from './communication/http-client/index.js';
|
|
4
|
+
export { httpClientProps } from './communication/http-client/props.js';
|
|
4
5
|
export { sdkBaseQuery } from './communication/http-client/baseQuery.js';
|
|
5
6
|
export { onAuthorizationFailure } from './communication/http-client/response-interceptor.js';
|
|
6
7
|
export { auth } from './data/auth/actions.js';
|