@microsoft/msgraph-sdk-identity 1.0.0-preview.20 → 1.0.0-preview.22
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/identity/authenticationEventListeners/count/index.d.ts +41 -0
- package/identity/authenticationEventListeners/count/index.d.ts.map +1 -0
- package/identity/authenticationEventListeners/count/index.js +36 -0
- package/identity/authenticationEventListeners/index.d.ts +99 -0
- package/identity/authenticationEventListeners/index.d.ts.map +1 -0
- package/identity/authenticationEventListeners/index.js +72 -0
- package/identity/authenticationEventListeners/item/index.d.ts +72 -0
- package/identity/authenticationEventListeners/item/index.d.ts.map +1 -0
- package/identity/authenticationEventListeners/item/index.js +58 -0
- package/identity/b2xUserFlows/item/apiConnectorConfiguration/index.d.ts +4 -3
- package/identity/b2xUserFlows/item/apiConnectorConfiguration/index.d.ts.map +1 -1
- package/identity/b2xUserFlows/item/languages/item/defaultPages/item/value/index.d.ts +19 -16
- package/identity/b2xUserFlows/item/languages/item/defaultPages/item/value/index.d.ts.map +1 -1
- package/identity/b2xUserFlows/item/languages/item/defaultPages/item/value/index.js +9 -8
- package/identity/b2xUserFlows/item/languages/item/overridesPages/index.d.ts +3 -4
- package/identity/b2xUserFlows/item/languages/item/overridesPages/index.d.ts.map +1 -1
- package/identity/b2xUserFlows/item/languages/item/overridesPages/item/value/index.d.ts +19 -17
- package/identity/b2xUserFlows/item/languages/item/overridesPages/item/value/index.d.ts.map +1 -1
- package/identity/b2xUserFlows/item/languages/item/overridesPages/item/value/index.js +9 -8
- package/identity/b2xUserFlows/item/userAttributeAssignments/getOrder/index.d.ts +3 -2
- package/identity/b2xUserFlows/item/userAttributeAssignments/getOrder/index.d.ts.map +1 -1
- package/identity/conditionalAccess/authenticationStrength/policies/item/usage/index.d.ts +3 -2
- package/identity/conditionalAccess/authenticationStrength/policies/item/usage/index.d.ts.map +1 -1
- package/identity/customAuthenticationExtensions/count/index.d.ts +41 -0
- package/identity/customAuthenticationExtensions/count/index.d.ts.map +1 -0
- package/identity/customAuthenticationExtensions/count/index.js +36 -0
- package/identity/customAuthenticationExtensions/index.d.ts +104 -0
- package/identity/customAuthenticationExtensions/index.d.ts.map +1 -0
- package/identity/customAuthenticationExtensions/index.js +78 -0
- package/identity/customAuthenticationExtensions/item/index.d.ts +81 -0
- package/identity/customAuthenticationExtensions/item/index.d.ts.map +1 -0
- package/identity/customAuthenticationExtensions/item/index.js +68 -0
- package/identity/customAuthenticationExtensions/item/validateAuthenticationConfiguration/index.d.ts +30 -0
- package/identity/customAuthenticationExtensions/item/validateAuthenticationConfiguration/index.d.ts.map +1 -0
- package/identity/customAuthenticationExtensions/item/validateAuthenticationConfiguration/index.js +30 -0
- package/identity/customAuthenticationExtensions/validateAuthenticationConfiguration/index.d.ts +65 -0
- package/identity/customAuthenticationExtensions/validateAuthenticationConfiguration/index.d.ts.map +1 -0
- package/identity/customAuthenticationExtensions/validateAuthenticationConfiguration/index.js +64 -0
- package/identity/identityProviders/availableProviderTypes/index.d.ts +4 -3
- package/identity/identityProviders/availableProviderTypes/index.d.ts.map +1 -1
- package/identity/index.d.ts +10 -0
- package/identity/index.d.ts.map +1 -1
- package/identity/index.js +12 -0
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
2
|
+
/**
|
|
3
|
+
* Provides operations to count the resources in the collection.
|
|
4
|
+
*/
|
|
5
|
+
export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* Get the number of the resource
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @returns {Promise<number>}
|
|
10
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
+
*/
|
|
12
|
+
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
13
|
+
/**
|
|
14
|
+
* Get the number of the resource
|
|
15
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
|
+
* @returns {RequestInformation}
|
|
17
|
+
*/
|
|
18
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Get the number of the resource
|
|
22
|
+
*/
|
|
23
|
+
export interface CountRequestBuilderGetQueryParameters {
|
|
24
|
+
/**
|
|
25
|
+
* Filter items by property values
|
|
26
|
+
*/
|
|
27
|
+
filter?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Search items by search phrases
|
|
30
|
+
*/
|
|
31
|
+
search?: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Uri template for the request builder.
|
|
35
|
+
*/
|
|
36
|
+
export declare const CountRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners/$count{?%24filter,%24search}";
|
|
37
|
+
/**
|
|
38
|
+
* Metadata for all the requests in the request builder.
|
|
39
|
+
*/
|
|
40
|
+
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
41
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,kFAAkF,CAAC;AAQ9H;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
|
+
/**
|
|
10
|
+
* Uri template for the request builder.
|
|
11
|
+
*/
|
|
12
|
+
exports.CountRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners/$count{?%24filter,%24search}";
|
|
13
|
+
/**
|
|
14
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
15
|
+
*/
|
|
16
|
+
const CountRequestBuilderGetQueryParametersMapper = {
|
|
17
|
+
"filter": "%24filter",
|
|
18
|
+
"search": "%24search",
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Metadata for all the requests in the request builder.
|
|
22
|
+
*/
|
|
23
|
+
exports.CountRequestBuilderRequestsMetadata = {
|
|
24
|
+
get: {
|
|
25
|
+
uriTemplate: exports.CountRequestBuilderUriTemplate,
|
|
26
|
+
responseBodyContentType: "text/plain;q=0.9",
|
|
27
|
+
errorMappings: {
|
|
28
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
29
|
+
},
|
|
30
|
+
adapterMethodName: "sendPrimitive",
|
|
31
|
+
responseBodyFactory: "number",
|
|
32
|
+
queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
/* tslint:enable */
|
|
36
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { type AuthenticationEventListener, type AuthenticationEventListenerCollectionResponse } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type CountRequestBuilder } from './count/';
|
|
3
|
+
import { type AuthenticationEventListenerItemRequestBuilder } from './item/';
|
|
4
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
5
|
+
/**
|
|
6
|
+
* Provides operations to manage the authenticationEventListeners property of the microsoft.graph.identityContainer entity.
|
|
7
|
+
*/
|
|
8
|
+
export interface AuthenticationEventListenersRequestBuilder extends BaseRequestBuilder<AuthenticationEventListenersRequestBuilder> {
|
|
9
|
+
/**
|
|
10
|
+
* Provides operations to count the resources in the collection.
|
|
11
|
+
*/
|
|
12
|
+
get count(): CountRequestBuilder;
|
|
13
|
+
/**
|
|
14
|
+
* Provides operations to manage the authenticationEventListeners property of the microsoft.graph.identityContainer entity.
|
|
15
|
+
* @param authenticationEventListenerId The unique identifier of authenticationEventListener
|
|
16
|
+
* @returns {AuthenticationEventListenerItemRequestBuilder}
|
|
17
|
+
*/
|
|
18
|
+
byAuthenticationEventListenerId(authenticationEventListenerId: string): AuthenticationEventListenerItemRequestBuilder;
|
|
19
|
+
/**
|
|
20
|
+
* Get a list of the authenticationEventListener objects and their properties. The following derived types are supported:
|
|
21
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
+
* @returns {Promise<AuthenticationEventListenerCollectionResponse>}
|
|
23
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/identitycontainer-list-authenticationeventlisteners?view=graph-rest-1.0|Find more info here}
|
|
25
|
+
*/
|
|
26
|
+
get(requestConfiguration?: RequestConfiguration<AuthenticationEventListenersRequestBuilderGetQueryParameters> | undefined): Promise<AuthenticationEventListenerCollectionResponse | undefined>;
|
|
27
|
+
/**
|
|
28
|
+
* Create a new authenticationEventListener object. You can create one of the following subtypes that are derived from authenticationEventListener.
|
|
29
|
+
* @param body The request body
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {Promise<AuthenticationEventListener>}
|
|
32
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/identitycontainer-post-authenticationeventlisteners?view=graph-rest-1.0|Find more info here}
|
|
34
|
+
*/
|
|
35
|
+
post(body: AuthenticationEventListener, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AuthenticationEventListener | undefined>;
|
|
36
|
+
/**
|
|
37
|
+
* Get a list of the authenticationEventListener objects and their properties. The following derived types are supported:
|
|
38
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
|
+
* @returns {RequestInformation}
|
|
40
|
+
*/
|
|
41
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AuthenticationEventListenersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
|
+
/**
|
|
43
|
+
* Create a new authenticationEventListener object. You can create one of the following subtypes that are derived from authenticationEventListener.
|
|
44
|
+
* @param body The request body
|
|
45
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
|
+
* @returns {RequestInformation}
|
|
47
|
+
*/
|
|
48
|
+
toPostRequestInformation(body: AuthenticationEventListener, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Get a list of the authenticationEventListener objects and their properties. The following derived types are supported:
|
|
52
|
+
*/
|
|
53
|
+
export interface AuthenticationEventListenersRequestBuilderGetQueryParameters {
|
|
54
|
+
/**
|
|
55
|
+
* Include count of items
|
|
56
|
+
*/
|
|
57
|
+
count?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Expand related entities
|
|
60
|
+
*/
|
|
61
|
+
expand?: string[];
|
|
62
|
+
/**
|
|
63
|
+
* Filter items by property values
|
|
64
|
+
*/
|
|
65
|
+
filter?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Order items by property values
|
|
68
|
+
*/
|
|
69
|
+
orderby?: string[];
|
|
70
|
+
/**
|
|
71
|
+
* Search items by search phrases
|
|
72
|
+
*/
|
|
73
|
+
search?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Select properties to be returned
|
|
76
|
+
*/
|
|
77
|
+
select?: string[];
|
|
78
|
+
/**
|
|
79
|
+
* Skip the first n items
|
|
80
|
+
*/
|
|
81
|
+
skip?: number;
|
|
82
|
+
/**
|
|
83
|
+
* Show only the first n items
|
|
84
|
+
*/
|
|
85
|
+
top?: number;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Uri template for the request builder.
|
|
89
|
+
*/
|
|
90
|
+
export declare const AuthenticationEventListenersRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
91
|
+
/**
|
|
92
|
+
* Metadata for all the navigation properties in the request builder.
|
|
93
|
+
*/
|
|
94
|
+
export declare const AuthenticationEventListenersRequestBuilderNavigationMetadata: Record<Exclude<keyof AuthenticationEventListenersRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
95
|
+
/**
|
|
96
|
+
* Metadata for all the requests in the request builder.
|
|
97
|
+
*/
|
|
98
|
+
export declare const AuthenticationEventListenersRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
99
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4K,KAAK,2BAA2B,EAAE,KAAK,6CAA6C,EAAE,MAAM,gCAAgC,CAAC;AAIhT,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAiE,KAAK,6CAA6C,EAAE,MAAM,SAAS,CAAC;AAE5I,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,0CAA2C,SAAQ,kBAAkB,CAAC,0CAA0C,CAAC;IAC9H;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,+BAA+B,CAAC,6BAA6B,EAAE,MAAM,GAAI,6CAA6C,CAAC;IACxH;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4DAA4D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6CAA6C,GAAG,SAAS,CAAC,CAAC;IACjM;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IAC7J;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4DAA4D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACrK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,MAAM,WAAW,4DAA4D;IACzE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,qDAAqD,kIAAkI,CAAC;AAcrM;;GAEG;AACH,eAAO,MAAM,4DAA4D,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,0CAA0C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQlM,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,0DAA0D,EAAE,gBAuBxE,CAAC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AuthenticationEventListenersRequestBuilderRequestsMetadata = exports.AuthenticationEventListenersRequestBuilderNavigationMetadata = exports.AuthenticationEventListenersRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
9
|
+
// @ts-ignore
|
|
10
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
11
|
+
// @ts-ignore
|
|
12
|
+
const count_1 = require("./count/");
|
|
13
|
+
// @ts-ignore
|
|
14
|
+
const item_1 = require("./item/");
|
|
15
|
+
/**
|
|
16
|
+
* Uri template for the request builder.
|
|
17
|
+
*/
|
|
18
|
+
exports.AuthenticationEventListenersRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
19
|
+
/**
|
|
20
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
21
|
+
*/
|
|
22
|
+
const AuthenticationEventListenersRequestBuilderGetQueryParametersMapper = {
|
|
23
|
+
"count": "%24count",
|
|
24
|
+
"expand": "%24expand",
|
|
25
|
+
"filter": "%24filter",
|
|
26
|
+
"orderby": "%24orderby",
|
|
27
|
+
"search": "%24search",
|
|
28
|
+
"select": "%24select",
|
|
29
|
+
"skip": "%24skip",
|
|
30
|
+
"top": "%24top",
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Metadata for all the navigation properties in the request builder.
|
|
34
|
+
*/
|
|
35
|
+
exports.AuthenticationEventListenersRequestBuilderNavigationMetadata = {
|
|
36
|
+
byAuthenticationEventListenerId: {
|
|
37
|
+
requestsMetadata: item_1.AuthenticationEventListenerItemRequestBuilderRequestsMetadata,
|
|
38
|
+
pathParametersMappings: ["authenticationEventListener%2Did"],
|
|
39
|
+
},
|
|
40
|
+
count: {
|
|
41
|
+
requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Metadata for all the requests in the request builder.
|
|
46
|
+
*/
|
|
47
|
+
exports.AuthenticationEventListenersRequestBuilderRequestsMetadata = {
|
|
48
|
+
get: {
|
|
49
|
+
uriTemplate: exports.AuthenticationEventListenersRequestBuilderUriTemplate,
|
|
50
|
+
responseBodyContentType: "application/json",
|
|
51
|
+
errorMappings: {
|
|
52
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
53
|
+
},
|
|
54
|
+
adapterMethodName: "send",
|
|
55
|
+
responseBodyFactory: models_1.createAuthenticationEventListenerCollectionResponseFromDiscriminatorValue,
|
|
56
|
+
queryParametersMapper: AuthenticationEventListenersRequestBuilderGetQueryParametersMapper,
|
|
57
|
+
},
|
|
58
|
+
post: {
|
|
59
|
+
uriTemplate: exports.AuthenticationEventListenersRequestBuilderUriTemplate,
|
|
60
|
+
responseBodyContentType: "application/json",
|
|
61
|
+
errorMappings: {
|
|
62
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
63
|
+
},
|
|
64
|
+
adapterMethodName: "send",
|
|
65
|
+
responseBodyFactory: models_1.createAuthenticationEventListenerFromDiscriminatorValue,
|
|
66
|
+
requestBodyContentType: "application/json",
|
|
67
|
+
requestBodySerializer: models_1.serializeAuthenticationEventListener,
|
|
68
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
69
|
+
},
|
|
70
|
+
};
|
|
71
|
+
/* tslint:enable */
|
|
72
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { type AuthenticationEventListener } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Provides operations to manage the authenticationEventListeners property of the microsoft.graph.identityContainer entity.
|
|
5
|
+
*/
|
|
6
|
+
export interface AuthenticationEventListenerItemRequestBuilder extends BaseRequestBuilder<AuthenticationEventListenerItemRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Delete an authenticationEventListener object.
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
+
* @see {@link https://learn.microsoft.com/graph/api/authenticationeventlistener-delete?view=graph-rest-1.0|Find more info here}
|
|
12
|
+
*/
|
|
13
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
14
|
+
/**
|
|
15
|
+
* Read the properties and relationships of an authenticationEventListener object. The @odata.type property in the response object indicates the type of the authenticationEventListener object.
|
|
16
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
|
+
* @returns {Promise<AuthenticationEventListener>}
|
|
18
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
19
|
+
* @see {@link https://learn.microsoft.com/graph/api/authenticationeventlistener-get?view=graph-rest-1.0|Find more info here}
|
|
20
|
+
*/
|
|
21
|
+
get(requestConfiguration?: RequestConfiguration<AuthenticationEventListenerItemRequestBuilderGetQueryParameters> | undefined): Promise<AuthenticationEventListener | undefined>;
|
|
22
|
+
/**
|
|
23
|
+
* Update the properties of an authenticationEventListener object. You must specify the @odata.type property and the value of the authenticationEventListener object type to update.
|
|
24
|
+
* @param body The request body
|
|
25
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
|
+
* @returns {Promise<AuthenticationEventListener>}
|
|
27
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
|
+
* @see {@link https://learn.microsoft.com/graph/api/authenticationeventlistener-update?view=graph-rest-1.0|Find more info here}
|
|
29
|
+
*/
|
|
30
|
+
patch(body: AuthenticationEventListener, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AuthenticationEventListener | undefined>;
|
|
31
|
+
/**
|
|
32
|
+
* Delete an authenticationEventListener object.
|
|
33
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
34
|
+
* @returns {RequestInformation}
|
|
35
|
+
*/
|
|
36
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
37
|
+
/**
|
|
38
|
+
* Read the properties and relationships of an authenticationEventListener object. The @odata.type property in the response object indicates the type of the authenticationEventListener object.
|
|
39
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
40
|
+
* @returns {RequestInformation}
|
|
41
|
+
*/
|
|
42
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AuthenticationEventListenerItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
43
|
+
/**
|
|
44
|
+
* Update the properties of an authenticationEventListener object. You must specify the @odata.type property and the value of the authenticationEventListener object type to update.
|
|
45
|
+
* @param body The request body
|
|
46
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
47
|
+
* @returns {RequestInformation}
|
|
48
|
+
*/
|
|
49
|
+
toPatchRequestInformation(body: AuthenticationEventListener, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Read the properties and relationships of an authenticationEventListener object. The @odata.type property in the response object indicates the type of the authenticationEventListener object.
|
|
53
|
+
*/
|
|
54
|
+
export interface AuthenticationEventListenerItemRequestBuilderGetQueryParameters {
|
|
55
|
+
/**
|
|
56
|
+
* Expand related entities
|
|
57
|
+
*/
|
|
58
|
+
expand?: string[];
|
|
59
|
+
/**
|
|
60
|
+
* Select properties to be returned
|
|
61
|
+
*/
|
|
62
|
+
select?: string[];
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Uri template for the request builder.
|
|
66
|
+
*/
|
|
67
|
+
export declare const AuthenticationEventListenerItemRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners/{authenticationEventListener%2Did}{?%24expand,%24select}";
|
|
68
|
+
/**
|
|
69
|
+
* Metadata for all the requests in the request builder.
|
|
70
|
+
*/
|
|
71
|
+
export declare const AuthenticationEventListenerItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
72
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiG,KAAK,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAIjL,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,6CAA8C,SAAQ,kBAAkB,CAAC,6CAA6C,CAAC;IACpI;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+DAA+D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IAClL;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IAC9J;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+DAA+D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACvJ;AACD;;GAEG;AACH,MAAM,WAAW,+DAA+D;IAC5E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,wDAAwD,8GAA8G,CAAC;AAQpL;;GAEG;AACH,eAAO,MAAM,6DAA6D,EAAE,gBA+B3E,CAAC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AuthenticationEventListenerItemRequestBuilderRequestsMetadata = exports.AuthenticationEventListenerItemRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
9
|
+
// @ts-ignore
|
|
10
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
11
|
+
/**
|
|
12
|
+
* Uri template for the request builder.
|
|
13
|
+
*/
|
|
14
|
+
exports.AuthenticationEventListenerItemRequestBuilderUriTemplate = "{+baseurl}/identity/authenticationEventListeners/{authenticationEventListener%2Did}{?%24expand,%24select}";
|
|
15
|
+
/**
|
|
16
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
17
|
+
*/
|
|
18
|
+
const AuthenticationEventListenerItemRequestBuilderGetQueryParametersMapper = {
|
|
19
|
+
"expand": "%24expand",
|
|
20
|
+
"select": "%24select",
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Metadata for all the requests in the request builder.
|
|
24
|
+
*/
|
|
25
|
+
exports.AuthenticationEventListenerItemRequestBuilderRequestsMetadata = {
|
|
26
|
+
delete: {
|
|
27
|
+
uriTemplate: exports.AuthenticationEventListenerItemRequestBuilderUriTemplate,
|
|
28
|
+
responseBodyContentType: "application/json",
|
|
29
|
+
errorMappings: {
|
|
30
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
31
|
+
},
|
|
32
|
+
adapterMethodName: "sendNoResponseContent",
|
|
33
|
+
},
|
|
34
|
+
get: {
|
|
35
|
+
uriTemplate: exports.AuthenticationEventListenerItemRequestBuilderUriTemplate,
|
|
36
|
+
responseBodyContentType: "application/json",
|
|
37
|
+
errorMappings: {
|
|
38
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
39
|
+
},
|
|
40
|
+
adapterMethodName: "send",
|
|
41
|
+
responseBodyFactory: models_1.createAuthenticationEventListenerFromDiscriminatorValue,
|
|
42
|
+
queryParametersMapper: AuthenticationEventListenerItemRequestBuilderGetQueryParametersMapper,
|
|
43
|
+
},
|
|
44
|
+
patch: {
|
|
45
|
+
uriTemplate: exports.AuthenticationEventListenerItemRequestBuilderUriTemplate,
|
|
46
|
+
responseBodyContentType: "application/json",
|
|
47
|
+
errorMappings: {
|
|
48
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
49
|
+
},
|
|
50
|
+
adapterMethodName: "send",
|
|
51
|
+
responseBodyFactory: models_1.createAuthenticationEventListenerFromDiscriminatorValue,
|
|
52
|
+
requestBodyContentType: "application/json",
|
|
53
|
+
requestBodySerializer: models_1.serializeAuthenticationEventListener,
|
|
54
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
/* tslint:enable */
|
|
58
|
+
/* eslint-enable */
|
|
@@ -15,21 +15,22 @@ export interface ApiConnectorConfigurationRequestBuilder extends BaseRequestBuil
|
|
|
15
15
|
*/
|
|
16
16
|
get postFederationSignup(): PostFederationSignupRequestBuilder;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Get the apiConnectorConfiguration property in a b2xIdentityUserFlow to detail the API connectors enabled for the user flow.
|
|
19
19
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
20
20
|
* @returns {Promise<UserFlowApiConnectorConfiguration>}
|
|
21
21
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
22
|
+
* @see {@link https://learn.microsoft.com/graph/api/b2xidentityuserflow-get-apiconnectorconfiguration?view=graph-rest-1.0|Find more info here}
|
|
22
23
|
*/
|
|
23
24
|
get(requestConfiguration?: RequestConfiguration<ApiConnectorConfigurationRequestBuilderGetQueryParameters> | undefined): Promise<UserFlowApiConnectorConfiguration | undefined>;
|
|
24
25
|
/**
|
|
25
|
-
*
|
|
26
|
+
* Get the apiConnectorConfiguration property in a b2xIdentityUserFlow to detail the API connectors enabled for the user flow.
|
|
26
27
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
28
|
* @returns {RequestInformation}
|
|
28
29
|
*/
|
|
29
30
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ApiConnectorConfigurationRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
30
31
|
}
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
+
* Get the apiConnectorConfiguration property in a b2xIdentityUserFlow to detail the API connectors enabled for the user flow.
|
|
33
34
|
*/
|
|
34
35
|
export interface ApiConnectorConfigurationRequestBuilderGetQueryParameters {
|
|
35
36
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAkH,KAAK,qCAAqC,EAAE,MAAM,4BAA4B,CAAC;AAExM,OAAO,EAA4G,KAAK,kCAAkC,EAAE,MAAM,yBAAyB,CAAC;AAE5L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,uBAAuB,IAAI,qCAAqC,CAAC;IACrE;;OAEG;IACH,IAAI,oBAAoB,IAAI,kCAAkC,CAAC;IAC/D
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAkH,KAAK,qCAAqC,EAAE,MAAM,4BAA4B,CAAC;AAExM,OAAO,EAA4G,KAAK,kCAAkC,EAAE,MAAM,yBAAyB,CAAC;AAE5L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,uBAAuB,IAAI,qCAAqC,CAAC;IACrE;;OAEG;IACH,IAAI,oBAAoB,IAAI,kCAAkC,CAAC;IAC/D;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAClL;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrK;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,gHAAgH,CAAC;AAQhL;;GAEG;AACH,eAAO,MAAM,yDAAyD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uCAAuC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAS5L,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBAWrE,CAAC"}
|
|
@@ -4,14 +4,20 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
4
4
|
*/
|
|
5
5
|
export interface ContentRequestBuilder extends BaseRequestBuilder<ContentRequestBuilder> {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* The unique identifier for an entity. Read-only.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
12
|
+
/**
|
|
13
|
+
* The unique identifier for an entity. Read-only.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
17
|
*/
|
|
12
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
18
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
13
19
|
/**
|
|
14
|
-
*
|
|
20
|
+
* The unique identifier for an entity. Read-only.
|
|
15
21
|
* @param body Binary request body
|
|
16
22
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
23
|
* @returns {Promise<ArrayBuffer>}
|
|
@@ -19,32 +25,29 @@ export interface ContentRequestBuilder extends BaseRequestBuilder<ContentRequest
|
|
|
19
25
|
*/
|
|
20
26
|
put(body: ArrayBuffer | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
21
27
|
/**
|
|
22
|
-
*
|
|
28
|
+
* The unique identifier for an entity. Read-only.
|
|
23
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
30
|
* @returns {RequestInformation}
|
|
25
31
|
*/
|
|
26
|
-
|
|
32
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
27
33
|
/**
|
|
28
|
-
*
|
|
29
|
-
* @param body Binary request body
|
|
34
|
+
* The unique identifier for an entity. Read-only.
|
|
30
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
36
|
* @returns {RequestInformation}
|
|
32
37
|
*/
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Get media content for the navigation property defaultPages from identity
|
|
37
|
-
*/
|
|
38
|
-
export interface ContentRequestBuilderGetQueryParameters {
|
|
38
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* The unique identifier for an entity. Read-only.
|
|
41
|
+
* @param body Binary request body
|
|
42
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
43
|
+
* @returns {RequestInformation}
|
|
41
44
|
*/
|
|
42
|
-
|
|
45
|
+
toPutRequestInformation(body: ArrayBuffer | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
43
46
|
}
|
|
44
47
|
/**
|
|
45
48
|
* Uri template for the request builder.
|
|
46
49
|
*/
|
|
47
|
-
export declare const ContentRequestBuilderUriTemplate = "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages/{userFlowLanguageConfiguration%2Did}/defaultPages/{userFlowLanguagePage%2Did}/$value
|
|
50
|
+
export declare const ContentRequestBuilderUriTemplate = "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages/{userFlowLanguageConfiguration%2Did}/defaultPages/{userFlowLanguagePage%2Did}/$value";
|
|
48
51
|
/**
|
|
49
52
|
* Metadata for all the requests in the request builder.
|
|
50
53
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;OAMG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACxI;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;OAKG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,+JAA+J,CAAC;AAC7M;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA6BnD,CAAC"}
|
|
@@ -9,17 +9,19 @@ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
|
9
9
|
/**
|
|
10
10
|
* Uri template for the request builder.
|
|
11
11
|
*/
|
|
12
|
-
exports.ContentRequestBuilderUriTemplate = "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages/{userFlowLanguageConfiguration%2Did}/defaultPages/{userFlowLanguagePage%2Did}/$value
|
|
13
|
-
/**
|
|
14
|
-
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
15
|
-
*/
|
|
16
|
-
const ContentRequestBuilderGetQueryParametersMapper = {
|
|
17
|
-
"format": "%24format",
|
|
18
|
-
};
|
|
12
|
+
exports.ContentRequestBuilderUriTemplate = "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages/{userFlowLanguageConfiguration%2Did}/defaultPages/{userFlowLanguagePage%2Did}/$value";
|
|
19
13
|
/**
|
|
20
14
|
* Metadata for all the requests in the request builder.
|
|
21
15
|
*/
|
|
22
16
|
exports.ContentRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.ContentRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
23
25
|
get: {
|
|
24
26
|
uriTemplate: exports.ContentRequestBuilderUriTemplate,
|
|
25
27
|
responseBodyContentType: "application/octet-stream, application/json",
|
|
@@ -28,7 +30,6 @@ exports.ContentRequestBuilderRequestsMetadata = {
|
|
|
28
30
|
},
|
|
29
31
|
adapterMethodName: "sendPrimitive",
|
|
30
32
|
responseBodyFactory: "ArrayBuffer",
|
|
31
|
-
queryParametersMapper: ContentRequestBuilderGetQueryParametersMapper,
|
|
32
33
|
},
|
|
33
34
|
put: {
|
|
34
35
|
uriTemplate: exports.ContentRequestBuilderUriTemplate,
|
|
@@ -17,11 +17,10 @@ export interface OverridesPagesRequestBuilder extends BaseRequestBuilder<Overrid
|
|
|
17
17
|
*/
|
|
18
18
|
byUserFlowLanguagePageId(userFlowLanguagePageId: string): UserFlowLanguagePageItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<UserFlowLanguagePageCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-overridespages?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<OverridesPagesRequestBuilderGetQueryParameters> | undefined): Promise<UserFlowLanguagePageCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
@@ -33,7 +32,7 @@ export interface OverridesPagesRequestBuilder extends BaseRequestBuilder<Overrid
|
|
|
33
32
|
*/
|
|
34
33
|
post(body: UserFlowLanguagePage, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserFlowLanguagePage | undefined>;
|
|
35
34
|
/**
|
|
36
|
-
*
|
|
35
|
+
* Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).
|
|
37
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
37
|
* @returns {RequestInformation}
|
|
39
38
|
*/
|
|
@@ -47,7 +46,7 @@ export interface OverridesPagesRequestBuilder extends BaseRequestBuilder<Overrid
|
|
|
47
46
|
toPostRequestInformation(body: UserFlowLanguagePage, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
50
|
-
*
|
|
49
|
+
* Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).
|
|
51
50
|
*/
|
|
52
51
|
export interface OverridesPagesRequestBuilderGetQueryParameters {
|
|
53
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAI7Q,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,sCAAsC,EAAoH,MAAM,SAAS,CAAC;AAExL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,4BAA6B,SAAQ,kBAAkB,CAAC,4BAA4B,CAAC;IAClG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wBAAwB,CAAC,sBAAsB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IACnG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAI7Q,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,sCAAsC,EAAoH,MAAM,SAAS,CAAC;AAExL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,4BAA6B,SAAQ,kBAAkB,CAAC,4BAA4B,CAAC;IAClG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wBAAwB,CAAC,sBAAsB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IACnG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8CAA8C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAC/I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8CAA8C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACvJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/I;AACD;;GAEG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,uCAAuC,2MAA2M,CAAC;AAchQ;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,4BAA4B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAStK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,4CAA4C,EAAE,gBAuB1D,CAAC"}
|