@dvelop-sdk/identityprovider 4.0.3 → 4.0.4
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/lib/authentication/get-auth-session/get-auth-session.d.ts +1 -1
- package/lib/authentication/get-auth-session/get-auth-session.js +1 -1
- package/lib/authentication/get-impersonated-auth-session-id/get-impersonated-auth-session-id.d.ts +1 -1
- package/lib/authentication/get-impersonated-auth-session-id/get-impersonated-auth-session-id.js +1 -1
- package/lib/authentication/request-app-session/request-app-session.d.ts +1 -1
- package/lib/authentication/request-app-session/request-app-session.js +1 -1
- package/lib/authentication/validate-auth-session-id/validate-auth-session-id.d.ts +1 -1
- package/lib/authentication/validate-auth-session-id/validate-auth-session-id.js +1 -1
- package/package.json +3 -3
|
@@ -18,7 +18,7 @@ export interface AuthSession {
|
|
|
18
18
|
export declare function _getAuthSessionDefaultTransformFunction(response: HttpResponse, _: DvelopContext): AuthSession;
|
|
19
19
|
/**
|
|
20
20
|
* Factory for the {@link getAuthSession}-function. See internals for more information. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
21
|
-
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding
|
|
21
|
+
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding transformFunction has to be supplied.
|
|
22
22
|
* @internal
|
|
23
23
|
* @category Authentication
|
|
24
24
|
*/
|
|
@@ -52,7 +52,7 @@ function _getAuthSessionDefaultTransformFunction(response, _) {
|
|
|
52
52
|
exports._getAuthSessionDefaultTransformFunction = _getAuthSessionDefaultTransformFunction;
|
|
53
53
|
/**
|
|
54
54
|
* Factory for the {@link getAuthSession}-function. See internals for more information. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
55
|
-
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding
|
|
55
|
+
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding transformFunction has to be supplied.
|
|
56
56
|
* @internal
|
|
57
57
|
* @category Authentication
|
|
58
58
|
*/
|
package/lib/authentication/get-impersonated-auth-session-id/get-impersonated-auth-session-id.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export interface GetImpersonatedAuthSessionIdParams {
|
|
|
15
15
|
export declare function _getImpersonatedAuthSessionIdDefaultTransformFunction(response: HttpResponse, _: DvelopContext, __: GetImpersonatedAuthSessionIdParams): string;
|
|
16
16
|
/**
|
|
17
17
|
* Factory for the {@link getImpersonatedAuthSessionId}}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
18
|
-
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding
|
|
18
|
+
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding transformFunction has to be supplied.
|
|
19
19
|
* @internal
|
|
20
20
|
* @category Authentication
|
|
21
21
|
*/
|
package/lib/authentication/get-impersonated-auth-session-id/get-impersonated-auth-session-id.js
CHANGED
|
@@ -49,7 +49,7 @@ function _getImpersonatedAuthSessionIdDefaultTransformFunction(response, _, __)
|
|
|
49
49
|
exports._getImpersonatedAuthSessionIdDefaultTransformFunction = _getImpersonatedAuthSessionIdDefaultTransformFunction;
|
|
50
50
|
/**
|
|
51
51
|
* Factory for the {@link getImpersonatedAuthSessionId}}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
52
|
-
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding
|
|
52
|
+
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding transformFunction has to be supplied.
|
|
53
53
|
* @internal
|
|
54
54
|
* @category Authentication
|
|
55
55
|
*/
|
|
@@ -12,7 +12,7 @@ export interface RequestAppSessionParams {
|
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* Factory for the {@link requestAppSession}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
15
|
-
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding
|
|
15
|
+
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding transformFunction has to be supplied.
|
|
16
16
|
* @category Authentication
|
|
17
17
|
*/
|
|
18
18
|
export declare function _requestAppSessionFactory<T>(httpRequestFunction: (context: DvelopContext, config: HttpConfig) => Promise<HttpResponse>, transformFunction: (response: HttpResponse, context: DvelopContext, params: RequestAppSessionParams) => T): (context: DvelopContext, params: RequestAppSessionParams) => Promise<T>;
|
|
@@ -40,7 +40,7 @@ exports.requestAppSession = exports._requestAppSessionFactory = void 0;
|
|
|
40
40
|
var http_1 = require("../../utils/http");
|
|
41
41
|
/**
|
|
42
42
|
* Factory for the {@link requestAppSession}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
43
|
-
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding
|
|
43
|
+
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding transformFunction has to be supplied.
|
|
44
44
|
* @category Authentication
|
|
45
45
|
*/
|
|
46
46
|
function _requestAppSessionFactory(httpRequestFunction, transformFunction) {
|
|
@@ -39,7 +39,7 @@ export interface DvelopUser {
|
|
|
39
39
|
export declare function _validateAuthSessionIdDefaultTransformFunction(response: HttpResponse, _: DvelopContext): DvelopUser;
|
|
40
40
|
/**
|
|
41
41
|
* Factory for the {@link validateAuthSessionId}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
42
|
-
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding
|
|
42
|
+
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding transformFunction has to be supplied.
|
|
43
43
|
* @category Authentication
|
|
44
44
|
*/
|
|
45
45
|
export declare function _validateAuthSessionIdFactory<T>(httpRequestFunction: (context: DvelopContext, config: HttpConfig) => Promise<HttpResponse>, transformFunction: (response: HttpResponse, context: DvelopContext) => T): (context: DvelopContext) => Promise<T>;
|
|
@@ -49,7 +49,7 @@ function _validateAuthSessionIdDefaultTransformFunction(response, _) {
|
|
|
49
49
|
exports._validateAuthSessionIdDefaultTransformFunction = _validateAuthSessionIdDefaultTransformFunction;
|
|
50
50
|
/**
|
|
51
51
|
* Factory for the {@link validateAuthSessionId}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
|
|
52
|
-
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding
|
|
52
|
+
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding transformFunction has to be supplied.
|
|
53
53
|
* @category Authentication
|
|
54
54
|
*/
|
|
55
55
|
function _validateAuthSessionIdFactory(httpRequestFunction, transformFunction) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvelop-sdk/identityprovider",
|
|
3
3
|
"description": "This package contains functionality for the Identityprovider-App in the d.velop cloud.",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.4",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"license": "license-checker --production --onlyAllow Apache-2.0;MIT;ISC;BSD-2-Clause;BSD-3-Clause"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@dvelop-sdk/core": "^2.1.
|
|
26
|
+
"@dvelop-sdk/core": "^2.1.3"
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|