@microsoft/msgraph-sdk-oauth2permissiongrants 1.0.0-preview.10
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/LICENSE +21 -0
- package/README.md +11 -0
- package/index.d.ts +11 -0
- package/index.d.ts.map +1 -0
- package/index.js +20 -0
- package/oauth2PermissionGrants/count/index.d.ts +40 -0
- package/oauth2PermissionGrants/count/index.d.ts.map +1 -0
- package/oauth2PermissionGrants/count/index.js +35 -0
- package/oauth2PermissionGrants/delta/index.d.ts +83 -0
- package/oauth2PermissionGrants/delta/index.d.ts.map +1 -0
- package/oauth2PermissionGrants/delta/index.js +67 -0
- package/oauth2PermissionGrants/index.d.ts +102 -0
- package/oauth2PermissionGrants/index.d.ts.map +1 -0
- package/oauth2PermissionGrants/index.js +75 -0
- package/oauth2PermissionGrants/item/index.d.ts +69 -0
- package/oauth2PermissionGrants/item/index.d.ts.map +1 -0
- package/oauth2PermissionGrants/item/index.js +56 -0
- package/oauth2PermissionGrantsServiceClient.d.ts +25 -0
- package/oauth2PermissionGrantsServiceClient.d.ts.map +1 -0
- package/oauth2PermissionGrantsServiceClient.js +49 -0
- package/package.json +48 -0
- package/tsconfig.json +15 -0
- package/tsconfig.tsbuildinfo +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Microsoft Graph
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
package/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Oauth2PermissionGrantsRequestBuilder } from "./oauth2PermissionGrants";
|
|
2
|
+
declare module "@microsoft/msgraph-sdk" {
|
|
3
|
+
interface GraphServiceClient {
|
|
4
|
+
/**
|
|
5
|
+
* Provides operations to manage the oauth2PermissionGrants singleton.
|
|
6
|
+
*/
|
|
7
|
+
get oauth2PermissionGrants(): Oauth2PermissionGrantsRequestBuilder;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export * from "./oauth2PermissionGrantsServiceClient";
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,0BAA0B,CAAC;AAGrF,OAAO,QAAQ,wBAAwB,CAAC;IACtC,UAAU,kBAAkB;QAC1B;;WAEG;QACH,IAAI,sBAAsB,IAAI,oCAAoC,CAAC;KACpE;CACF;AAED,cAAc,uCAAuC,CAAC"}
|
package/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
const msgraph_sdk_1 = require("@microsoft/msgraph-sdk");
|
|
18
|
+
const oauth2PermissionGrantsServiceClient_1 = require("./oauth2PermissionGrantsServiceClient");
|
|
19
|
+
(0, msgraph_sdk_1.extendGraphServiceClient)(oauth2PermissionGrantsServiceClient_1.Oauth2PermissionGrantsServiceClientNavigationMetadata);
|
|
20
|
+
__exportStar(require("./oauth2PermissionGrantsServiceClient"), exports);
|
|
@@ -0,0 +1,40 @@
|
|
|
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 a Promise of Integer
|
|
10
|
+
*/
|
|
11
|
+
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
12
|
+
/**
|
|
13
|
+
* Get the number of the resource
|
|
14
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
+
* @returns a RequestInformation
|
|
16
|
+
*/
|
|
17
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Get the number of the resource
|
|
21
|
+
*/
|
|
22
|
+
export interface CountRequestBuilderGetQueryParameters {
|
|
23
|
+
/**
|
|
24
|
+
* Filter items by property values
|
|
25
|
+
*/
|
|
26
|
+
filter?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Search items by search phrases
|
|
29
|
+
*/
|
|
30
|
+
search?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Metadata for all the requests in the request builder.
|
|
34
|
+
*/
|
|
35
|
+
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
36
|
+
/**
|
|
37
|
+
* Uri template for the request builder.
|
|
38
|
+
*/
|
|
39
|
+
export declare const CountRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/$count{?%24search,%24filter}";
|
|
40
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,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;;;;OAIG;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;AAQD;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,8BAA8B,mEAAmE,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CountRequestBuilderUriTemplate = exports.CountRequestBuilderRequestsMetadata = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
8
|
+
/**
|
|
9
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
10
|
+
*/
|
|
11
|
+
const CountRequestBuilderGetQueryParametersMapper = {
|
|
12
|
+
"filter": "%24filter",
|
|
13
|
+
"search": "%24search",
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Metadata for all the requests in the request builder.
|
|
17
|
+
*/
|
|
18
|
+
exports.CountRequestBuilderRequestsMetadata = {
|
|
19
|
+
get: {
|
|
20
|
+
responseBodyContentType: "text/plain;q=0.9",
|
|
21
|
+
errorMappings: {
|
|
22
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
23
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
24
|
+
},
|
|
25
|
+
adapterMethodName: "sendPrimitiveAsync",
|
|
26
|
+
responseBodyFactory: "number",
|
|
27
|
+
queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Uri template for the request builder.
|
|
32
|
+
*/
|
|
33
|
+
exports.CountRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/$count{?%24search,%24filter}";
|
|
34
|
+
/* tslint:enable */
|
|
35
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { type BaseDeltaFunctionResponse, type OAuth2PermissionGrant } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
5
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
6
|
+
* @returns a deltaGetResponse
|
|
7
|
+
*/
|
|
8
|
+
export declare function createDeltaGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoDeltaGetResponse;
|
|
9
|
+
export interface DeltaGetResponse extends BaseDeltaFunctionResponse, Parsable {
|
|
10
|
+
/**
|
|
11
|
+
* The value property
|
|
12
|
+
*/
|
|
13
|
+
value?: OAuth2PermissionGrant[];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Provides operations to call the delta method.
|
|
17
|
+
*/
|
|
18
|
+
export interface DeltaRequestBuilder extends BaseRequestBuilder<DeltaRequestBuilder> {
|
|
19
|
+
/**
|
|
20
|
+
* Invoke function delta
|
|
21
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
+
* @returns a Promise of DeltaGetResponse
|
|
23
|
+
*/
|
|
24
|
+
get(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined): Promise<DeltaGetResponse | undefined>;
|
|
25
|
+
/**
|
|
26
|
+
* Invoke function delta
|
|
27
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
28
|
+
* @returns a RequestInformation
|
|
29
|
+
*/
|
|
30
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Invoke function delta
|
|
34
|
+
*/
|
|
35
|
+
export interface DeltaRequestBuilderGetQueryParameters {
|
|
36
|
+
/**
|
|
37
|
+
* Include count of items
|
|
38
|
+
*/
|
|
39
|
+
count?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Filter items by property values
|
|
42
|
+
*/
|
|
43
|
+
filter?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Order items by property values
|
|
46
|
+
*/
|
|
47
|
+
orderby?: string[];
|
|
48
|
+
/**
|
|
49
|
+
* Search items by search phrases
|
|
50
|
+
*/
|
|
51
|
+
search?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Select properties to be returned
|
|
54
|
+
*/
|
|
55
|
+
select?: string[];
|
|
56
|
+
/**
|
|
57
|
+
* Skip the first n items
|
|
58
|
+
*/
|
|
59
|
+
skip?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Show only the first n items
|
|
62
|
+
*/
|
|
63
|
+
top?: number;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* The deserialization information for the current model
|
|
67
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
68
|
+
*/
|
|
69
|
+
export declare function deserializeIntoDeltaGetResponse(deltaGetResponse?: DeltaGetResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
70
|
+
/**
|
|
71
|
+
* Serializes information the current object
|
|
72
|
+
* @param writer Serialization writer to use to serialize this model
|
|
73
|
+
*/
|
|
74
|
+
export declare function serializeDeltaGetResponse(writer: SerializationWriter, deltaGetResponse?: DeltaGetResponse | undefined): void;
|
|
75
|
+
/**
|
|
76
|
+
* Metadata for all the requests in the request builder.
|
|
77
|
+
*/
|
|
78
|
+
export declare const DeltaRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
79
|
+
/**
|
|
80
|
+
* Uri template for the request builder.
|
|
81
|
+
*/
|
|
82
|
+
export declare const DeltaRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/delta(){?%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}";
|
|
83
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmK,KAAK,yBAAyB,EAAE,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAE7Q,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElO;;;;GAIG;AACH,wBAAgB,4CAA4C,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,0CAE5F;AACD,MAAM,WAAW,gBAAiB,SAAQ,yBAAyB,EAAE,QAAQ;IACzE;;OAEG;IACH,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC;CACnC;AACD;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;OAIG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CAAC;IAC7I;;;;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,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;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;;;GAGG;AACH,wBAAgB,+BAA+B,CAAC,gBAAgB,GAAE,gBAAgB,GAAG,SAAkC,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAKnK;AACD;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,mBAAmB,EAAE,gBAAgB,GAAE,gBAAgB,GAAG,SAAkC,GAAI,IAAI,CAGrJ;AAaD;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,8BAA8B,iHAAiH,CAAC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeltaRequestBuilderUriTemplate = exports.DeltaRequestBuilderRequestsMetadata = exports.serializeDeltaGetResponse = exports.deserializeIntoDeltaGetResponse = exports.createDeltaGetResponseFromDiscriminatorValue = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
8
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
|
+
/**
|
|
10
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
11
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12
|
+
* @returns a deltaGetResponse
|
|
13
|
+
*/
|
|
14
|
+
function createDeltaGetResponseFromDiscriminatorValue(parseNode) {
|
|
15
|
+
return deserializeIntoDeltaGetResponse;
|
|
16
|
+
}
|
|
17
|
+
exports.createDeltaGetResponseFromDiscriminatorValue = createDeltaGetResponseFromDiscriminatorValue;
|
|
18
|
+
/**
|
|
19
|
+
* The deserialization information for the current model
|
|
20
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
21
|
+
*/
|
|
22
|
+
function deserializeIntoDeltaGetResponse(deltaGetResponse = {}) {
|
|
23
|
+
return Object.assign(Object.assign({}, (0, models_1.deserializeIntoBaseDeltaFunctionResponse)(deltaGetResponse)), { "value": n => { deltaGetResponse.value = n.getCollectionOfObjectValues(models_1.createOAuth2PermissionGrantFromDiscriminatorValue); } });
|
|
24
|
+
}
|
|
25
|
+
exports.deserializeIntoDeltaGetResponse = deserializeIntoDeltaGetResponse;
|
|
26
|
+
/**
|
|
27
|
+
* Serializes information the current object
|
|
28
|
+
* @param writer Serialization writer to use to serialize this model
|
|
29
|
+
*/
|
|
30
|
+
function serializeDeltaGetResponse(writer, deltaGetResponse = {}) {
|
|
31
|
+
(0, models_1.serializeBaseDeltaFunctionResponse)(writer, deltaGetResponse);
|
|
32
|
+
writer.writeCollectionOfObjectValues("value", deltaGetResponse.value, models_1.serializeOAuth2PermissionGrant);
|
|
33
|
+
}
|
|
34
|
+
exports.serializeDeltaGetResponse = serializeDeltaGetResponse;
|
|
35
|
+
/**
|
|
36
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
37
|
+
*/
|
|
38
|
+
const DeltaRequestBuilderGetQueryParametersMapper = {
|
|
39
|
+
"count": "%24count",
|
|
40
|
+
"filter": "%24filter",
|
|
41
|
+
"orderby": "%24orderby",
|
|
42
|
+
"search": "%24search",
|
|
43
|
+
"select": "%24select",
|
|
44
|
+
"skip": "%24skip",
|
|
45
|
+
"top": "%24top",
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Metadata for all the requests in the request builder.
|
|
49
|
+
*/
|
|
50
|
+
exports.DeltaRequestBuilderRequestsMetadata = {
|
|
51
|
+
get: {
|
|
52
|
+
responseBodyContentType: "application/json",
|
|
53
|
+
errorMappings: {
|
|
54
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
55
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
56
|
+
},
|
|
57
|
+
adapterMethodName: "sendAsync",
|
|
58
|
+
responseBodyFactory: createDeltaGetResponseFromDiscriminatorValue,
|
|
59
|
+
queryParametersMapper: DeltaRequestBuilderGetQueryParametersMapper,
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Uri template for the request builder.
|
|
64
|
+
*/
|
|
65
|
+
exports.DeltaRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/delta(){?%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}";
|
|
66
|
+
/* tslint:enable */
|
|
67
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { type OAuth2PermissionGrant, type OAuth2PermissionGrantCollectionResponse } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type CountRequestBuilder } from './count/';
|
|
3
|
+
import { type DeltaRequestBuilder } from './delta/';
|
|
4
|
+
import { type OAuth2PermissionGrantItemRequestBuilder } from './item/';
|
|
5
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
6
|
+
/**
|
|
7
|
+
* Provides operations to manage the collection of oAuth2PermissionGrant entities.
|
|
8
|
+
*/
|
|
9
|
+
export interface Oauth2PermissionGrantsRequestBuilder extends BaseRequestBuilder<Oauth2PermissionGrantsRequestBuilder> {
|
|
10
|
+
/**
|
|
11
|
+
* Provides operations to count the resources in the collection.
|
|
12
|
+
*/
|
|
13
|
+
get count(): CountRequestBuilder;
|
|
14
|
+
/**
|
|
15
|
+
* Provides operations to call the delta method.
|
|
16
|
+
*/
|
|
17
|
+
get delta(): DeltaRequestBuilder;
|
|
18
|
+
/**
|
|
19
|
+
* Provides operations to manage the collection of oAuth2PermissionGrant entities.
|
|
20
|
+
* @param oAuth2PermissionGrantId The unique identifier of oAuth2PermissionGrant
|
|
21
|
+
* @returns a OAuth2PermissionGrantItemRequestBuilder
|
|
22
|
+
*/
|
|
23
|
+
byOAuth2PermissionGrantId(oAuth2PermissionGrantId: string): OAuth2PermissionGrantItemRequestBuilder;
|
|
24
|
+
/**
|
|
25
|
+
* Retrieve a list of oAuth2PermissionGrant objects, representing delegated permissions which have been granted for client applications to access APIs on behalf of signed-in users.
|
|
26
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
|
+
* @returns a Promise of OAuth2PermissionGrantCollectionResponse
|
|
28
|
+
* @see {@link https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-1.0|Find more info here}
|
|
29
|
+
*/
|
|
30
|
+
get(requestConfiguration?: RequestConfiguration<Oauth2PermissionGrantsRequestBuilderGetQueryParameters> | undefined): Promise<OAuth2PermissionGrantCollectionResponse | undefined>;
|
|
31
|
+
/**
|
|
32
|
+
* Create a delegated permission grant represented by an oAuth2PermissionGrant object. A delegated permission grant authorizes a client service principal (representing a client application) to access a resource service principal (representing an API), on behalf of a signed-in user, for the level of access limited by the delegated permissions which were granted.
|
|
33
|
+
* @param body The request body
|
|
34
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
|
+
* @returns a Promise of OAuth2PermissionGrant
|
|
36
|
+
* @see {@link https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-1.0|Find more info here}
|
|
37
|
+
*/
|
|
38
|
+
post(body: OAuth2PermissionGrant, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OAuth2PermissionGrant | undefined>;
|
|
39
|
+
/**
|
|
40
|
+
* Retrieve a list of oAuth2PermissionGrant objects, representing delegated permissions which have been granted for client applications to access APIs on behalf of signed-in users.
|
|
41
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
|
+
* @returns a RequestInformation
|
|
43
|
+
*/
|
|
44
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<Oauth2PermissionGrantsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
45
|
+
/**
|
|
46
|
+
* Create a delegated permission grant represented by an oAuth2PermissionGrant object. A delegated permission grant authorizes a client service principal (representing a client application) to access a resource service principal (representing an API), on behalf of a signed-in user, for the level of access limited by the delegated permissions which were granted.
|
|
47
|
+
* @param body The request body
|
|
48
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
|
+
* @returns a RequestInformation
|
|
50
|
+
*/
|
|
51
|
+
toPostRequestInformation(body: OAuth2PermissionGrant, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Retrieve a list of oAuth2PermissionGrant objects, representing delegated permissions which have been granted for client applications to access APIs on behalf of signed-in users.
|
|
55
|
+
*/
|
|
56
|
+
export interface Oauth2PermissionGrantsRequestBuilderGetQueryParameters {
|
|
57
|
+
/**
|
|
58
|
+
* Include count of items
|
|
59
|
+
*/
|
|
60
|
+
count?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Expand related entities
|
|
63
|
+
*/
|
|
64
|
+
expand?: string[];
|
|
65
|
+
/**
|
|
66
|
+
* Filter items by property values
|
|
67
|
+
*/
|
|
68
|
+
filter?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Order items by property values
|
|
71
|
+
*/
|
|
72
|
+
orderby?: string[];
|
|
73
|
+
/**
|
|
74
|
+
* Search items by search phrases
|
|
75
|
+
*/
|
|
76
|
+
search?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Select properties to be returned
|
|
79
|
+
*/
|
|
80
|
+
select?: string[];
|
|
81
|
+
/**
|
|
82
|
+
* Skip the first n items
|
|
83
|
+
*/
|
|
84
|
+
skip?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Show only the first n items
|
|
87
|
+
*/
|
|
88
|
+
top?: number;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Metadata for all the navigation properties in the request builder.
|
|
92
|
+
*/
|
|
93
|
+
export declare const Oauth2PermissionGrantsRequestBuilderNavigationMetadata: Record<Exclude<keyof Oauth2PermissionGrantsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
94
|
+
/**
|
|
95
|
+
* Metadata for all the requests in the request builder.
|
|
96
|
+
*/
|
|
97
|
+
export declare const Oauth2PermissionGrantsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
98
|
+
/**
|
|
99
|
+
* Uri template for the request builder.
|
|
100
|
+
*/
|
|
101
|
+
export declare const Oauth2PermissionGrantsRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
|
|
102
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAElR,OAAO,EAAuE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzH,OAAO,EAAuE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzH,OAAO,EAA+G,KAAK,uCAAuC,EAAE,MAAM,SAAS,CAAC;AACpL,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,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IACrL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;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,sDAAsD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CActL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAuBlE,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,+CAA+C,mHAAmH,CAAC"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Oauth2PermissionGrantsRequestBuilderUriTemplate = exports.Oauth2PermissionGrantsRequestBuilderRequestsMetadata = exports.Oauth2PermissionGrantsRequestBuilderNavigationMetadata = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
8
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
|
+
const count_1 = require("./count/");
|
|
10
|
+
const delta_1 = require("./delta/");
|
|
11
|
+
const item_1 = require("./item/");
|
|
12
|
+
/**
|
|
13
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
14
|
+
*/
|
|
15
|
+
const Oauth2PermissionGrantsRequestBuilderGetQueryParametersMapper = {
|
|
16
|
+
"count": "%24count",
|
|
17
|
+
"expand": "%24expand",
|
|
18
|
+
"filter": "%24filter",
|
|
19
|
+
"orderby": "%24orderby",
|
|
20
|
+
"search": "%24search",
|
|
21
|
+
"select": "%24select",
|
|
22
|
+
"skip": "%24skip",
|
|
23
|
+
"top": "%24top",
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Metadata for all the navigation properties in the request builder.
|
|
27
|
+
*/
|
|
28
|
+
exports.Oauth2PermissionGrantsRequestBuilderNavigationMetadata = {
|
|
29
|
+
byOAuth2PermissionGrantId: {
|
|
30
|
+
uriTemplate: item_1.OAuth2PermissionGrantItemRequestBuilderUriTemplate,
|
|
31
|
+
requestsMetadata: item_1.OAuth2PermissionGrantItemRequestBuilderRequestsMetadata,
|
|
32
|
+
pathParametersMappings: ["oAuth2PermissionGrant%2Did"],
|
|
33
|
+
},
|
|
34
|
+
count: {
|
|
35
|
+
uriTemplate: count_1.CountRequestBuilderUriTemplate,
|
|
36
|
+
requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
|
|
37
|
+
},
|
|
38
|
+
delta: {
|
|
39
|
+
uriTemplate: delta_1.DeltaRequestBuilderUriTemplate,
|
|
40
|
+
requestsMetadata: delta_1.DeltaRequestBuilderRequestsMetadata,
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Metadata for all the requests in the request builder.
|
|
45
|
+
*/
|
|
46
|
+
exports.Oauth2PermissionGrantsRequestBuilderRequestsMetadata = {
|
|
47
|
+
get: {
|
|
48
|
+
responseBodyContentType: "application/json",
|
|
49
|
+
errorMappings: {
|
|
50
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
51
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
52
|
+
},
|
|
53
|
+
adapterMethodName: "sendAsync",
|
|
54
|
+
responseBodyFactory: models_1.createOAuth2PermissionGrantCollectionResponseFromDiscriminatorValue,
|
|
55
|
+
queryParametersMapper: Oauth2PermissionGrantsRequestBuilderGetQueryParametersMapper,
|
|
56
|
+
},
|
|
57
|
+
post: {
|
|
58
|
+
responseBodyContentType: "application/json",
|
|
59
|
+
errorMappings: {
|
|
60
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
61
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
62
|
+
},
|
|
63
|
+
adapterMethodName: "sendAsync",
|
|
64
|
+
responseBodyFactory: models_1.createOAuth2PermissionGrantFromDiscriminatorValue,
|
|
65
|
+
requestBodyContentType: "application/json",
|
|
66
|
+
requestBodySerializer: models_1.serializeOAuth2PermissionGrant,
|
|
67
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Uri template for the request builder.
|
|
72
|
+
*/
|
|
73
|
+
exports.Oauth2PermissionGrantsRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
|
|
74
|
+
/* tslint:enable */
|
|
75
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { type OAuth2PermissionGrant } 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 collection of oAuth2PermissionGrant entities.
|
|
5
|
+
*/
|
|
6
|
+
export interface OAuth2PermissionGrantItemRequestBuilder extends BaseRequestBuilder<OAuth2PermissionGrantItemRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Delete a delegated permission grant, represented by an oAuth2PermissionGrant object. When a delegated permission grant is deleted, the access it granted is revoked. Existing access tokens will continue to be valid for their lifetime, but new access tokens will not be granted for the delegated permissions identified in the deleted oAuth2PermissionGrant.
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @see {@link https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-1.0|Find more info here}
|
|
11
|
+
*/
|
|
12
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Retrieve the properties of a single delegated permission grant represented by an oAuth2PermissionGrant object. An oAuth2PermissionGrant represents delegated permissions which have been granted for a client application to access an API on behalf of a signed-in user.
|
|
15
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
|
+
* @returns a Promise of OAuth2PermissionGrant
|
|
17
|
+
* @see {@link https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-1.0|Find more info here}
|
|
18
|
+
*/
|
|
19
|
+
get(requestConfiguration?: RequestConfiguration<OAuth2PermissionGrantItemRequestBuilderGetQueryParameters> | undefined): Promise<OAuth2PermissionGrant | undefined>;
|
|
20
|
+
/**
|
|
21
|
+
* Update the properties of oAuth2PermissionGrant object, representing a delegated permission grant. An oAuth2PermissionGrant can be updated to change which delegated permissions are granted, by adding or removing items from the list in scopes.
|
|
22
|
+
* @param body The request body
|
|
23
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
|
+
* @returns a Promise of OAuth2PermissionGrant
|
|
25
|
+
* @see {@link https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-1.0|Find more info here}
|
|
26
|
+
*/
|
|
27
|
+
patch(body: OAuth2PermissionGrant, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OAuth2PermissionGrant | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Delete a delegated permission grant, represented by an oAuth2PermissionGrant object. When a delegated permission grant is deleted, the access it granted is revoked. Existing access tokens will continue to be valid for their lifetime, but new access tokens will not be granted for the delegated permissions identified in the deleted oAuth2PermissionGrant.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns a RequestInformation
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
34
|
+
/**
|
|
35
|
+
* Retrieve the properties of a single delegated permission grant represented by an oAuth2PermissionGrant object. An oAuth2PermissionGrant represents delegated permissions which have been granted for a client application to access an API on behalf of a signed-in user.
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns a RequestInformation
|
|
38
|
+
*/
|
|
39
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<OAuth2PermissionGrantItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
|
+
/**
|
|
41
|
+
* Update the properties of oAuth2PermissionGrant object, representing a delegated permission grant. An oAuth2PermissionGrant can be updated to change which delegated permissions are granted, by adding or removing items from the list in scopes.
|
|
42
|
+
* @param body The request body
|
|
43
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
|
+
* @returns a RequestInformation
|
|
45
|
+
*/
|
|
46
|
+
toPatchRequestInformation(body: OAuth2PermissionGrant, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Retrieve the properties of a single delegated permission grant represented by an oAuth2PermissionGrant object. An oAuth2PermissionGrant represents delegated permissions which have been granted for a client application to access an API on behalf of a signed-in user.
|
|
50
|
+
*/
|
|
51
|
+
export interface OAuth2PermissionGrantItemRequestBuilderGetQueryParameters {
|
|
52
|
+
/**
|
|
53
|
+
* Expand related entities
|
|
54
|
+
*/
|
|
55
|
+
expand?: string[];
|
|
56
|
+
/**
|
|
57
|
+
* Select properties to be returned
|
|
58
|
+
*/
|
|
59
|
+
select?: string[];
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Metadata for all the requests in the request builder.
|
|
63
|
+
*/
|
|
64
|
+
export declare const OAuth2PermissionGrantItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
65
|
+
/**
|
|
66
|
+
* Uri template for the request builder.
|
|
67
|
+
*/
|
|
68
|
+
export declare const OAuth2PermissionGrantItemRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/{oAuth2PermissionGrant%2Did}{?%24select,%24expand}";
|
|
69
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAE/J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;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;AAQD;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kDAAkD,yFAAyF,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OAuth2PermissionGrantItemRequestBuilderUriTemplate = exports.OAuth2PermissionGrantItemRequestBuilderRequestsMetadata = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
8
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
|
+
/**
|
|
10
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
11
|
+
*/
|
|
12
|
+
const OAuth2PermissionGrantItemRequestBuilderGetQueryParametersMapper = {
|
|
13
|
+
"expand": "%24expand",
|
|
14
|
+
"select": "%24select",
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Metadata for all the requests in the request builder.
|
|
18
|
+
*/
|
|
19
|
+
exports.OAuth2PermissionGrantItemRequestBuilderRequestsMetadata = {
|
|
20
|
+
delete: {
|
|
21
|
+
responseBodyContentType: "application/json",
|
|
22
|
+
errorMappings: {
|
|
23
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
24
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
25
|
+
},
|
|
26
|
+
adapterMethodName: "sendNoResponseContentAsync",
|
|
27
|
+
},
|
|
28
|
+
get: {
|
|
29
|
+
responseBodyContentType: "application/json",
|
|
30
|
+
errorMappings: {
|
|
31
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
32
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
33
|
+
},
|
|
34
|
+
adapterMethodName: "sendAsync",
|
|
35
|
+
responseBodyFactory: models_1.createOAuth2PermissionGrantFromDiscriminatorValue,
|
|
36
|
+
queryParametersMapper: OAuth2PermissionGrantItemRequestBuilderGetQueryParametersMapper,
|
|
37
|
+
},
|
|
38
|
+
patch: {
|
|
39
|
+
responseBodyContentType: "application/json",
|
|
40
|
+
errorMappings: {
|
|
41
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
42
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
43
|
+
},
|
|
44
|
+
adapterMethodName: "sendAsync",
|
|
45
|
+
responseBodyFactory: models_1.createOAuth2PermissionGrantFromDiscriminatorValue,
|
|
46
|
+
requestBodyContentType: "application/json",
|
|
47
|
+
requestBodySerializer: models_1.serializeOAuth2PermissionGrant,
|
|
48
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Uri template for the request builder.
|
|
53
|
+
*/
|
|
54
|
+
exports.OAuth2PermissionGrantItemRequestBuilderUriTemplate = "{+baseurl}/oauth2PermissionGrants/{oAuth2PermissionGrant%2Did}{?%24select,%24expand}";
|
|
55
|
+
/* tslint:enable */
|
|
56
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type Oauth2PermissionGrantsRequestBuilder } from './oauth2PermissionGrants/';
|
|
2
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Instantiates a new Oauth2PermissionGrantsServiceClient and sets the default values.
|
|
5
|
+
* @param requestAdapter The request adapter to use to execute the requests.
|
|
6
|
+
*/
|
|
7
|
+
export declare function createOauth2PermissionGrantsServiceClient(requestAdapter: RequestAdapter): Oauth2PermissionGrantsServiceClient;
|
|
8
|
+
/**
|
|
9
|
+
* The main entry point of the SDK, exposes the configuration and the fluent API.
|
|
10
|
+
*/
|
|
11
|
+
export interface Oauth2PermissionGrantsServiceClient extends BaseRequestBuilder<Oauth2PermissionGrantsServiceClient> {
|
|
12
|
+
/**
|
|
13
|
+
* Provides operations to manage the collection of oAuth2PermissionGrant entities.
|
|
14
|
+
*/
|
|
15
|
+
get oauth2PermissionGrants(): Oauth2PermissionGrantsRequestBuilder;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Metadata for all the navigation properties in the request builder.
|
|
19
|
+
*/
|
|
20
|
+
export declare const Oauth2PermissionGrantsServiceClientNavigationMetadata: Record<Exclude<keyof Oauth2PermissionGrantsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
21
|
+
/**
|
|
22
|
+
* Uri template for the request builder.
|
|
23
|
+
*/
|
|
24
|
+
export declare const Oauth2PermissionGrantsServiceClientUriTemplate = "{+baseurl}";
|
|
25
|
+
//# sourceMappingURL=oauth2PermissionGrantsServiceClient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oauth2PermissionGrantsServiceClient.d.ts","sourceRoot":"","sources":["oauth2PermissionGrantsServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,EAAiK,KAAK,oCAAoC,EAAE,MAAM,2BAA2B,CAAC;AACrP,OAAO,EAA8E,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAM3O;;;GAGG;AACH,wBAAgB,yCAAyC,CAAC,cAAc,EAAE,cAAc,uCAevF;AACD;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,kBAAkB,CAAC,mCAAmC,CAAC;IAChH;;OAEG;IACH,IAAI,sBAAsB,IAAI,oCAAoC,CAAC;CACtE;AACD;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mCAAmC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAMpL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,8CAA8C,eAAe,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Oauth2PermissionGrantsServiceClientUriTemplate = exports.Oauth2PermissionGrantsServiceClientNavigationMetadata = exports.createOauth2PermissionGrantsServiceClient = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const oauth2PermissionGrants_1 = require("./oauth2PermissionGrants/");
|
|
8
|
+
const kiota_abstractions_1 = require("@microsoft/kiota-abstractions");
|
|
9
|
+
const kiota_serialization_form_1 = require("@microsoft/kiota-serialization-form");
|
|
10
|
+
const kiota_serialization_json_1 = require("@microsoft/kiota-serialization-json");
|
|
11
|
+
const kiota_serialization_multipart_1 = require("@microsoft/kiota-serialization-multipart");
|
|
12
|
+
const kiota_serialization_text_1 = require("@microsoft/kiota-serialization-text");
|
|
13
|
+
/**
|
|
14
|
+
* Instantiates a new Oauth2PermissionGrantsServiceClient and sets the default values.
|
|
15
|
+
* @param requestAdapter The request adapter to use to execute the requests.
|
|
16
|
+
*/
|
|
17
|
+
function createOauth2PermissionGrantsServiceClient(requestAdapter) {
|
|
18
|
+
(0, kiota_abstractions_1.registerDefaultSerializer)(kiota_serialization_json_1.JsonSerializationWriterFactory);
|
|
19
|
+
(0, kiota_abstractions_1.registerDefaultSerializer)(kiota_serialization_text_1.TextSerializationWriterFactory);
|
|
20
|
+
(0, kiota_abstractions_1.registerDefaultSerializer)(kiota_serialization_form_1.FormSerializationWriterFactory);
|
|
21
|
+
(0, kiota_abstractions_1.registerDefaultSerializer)(kiota_serialization_multipart_1.MultipartSerializationWriterFactory);
|
|
22
|
+
(0, kiota_abstractions_1.registerDefaultDeserializer)(kiota_serialization_json_1.JsonParseNodeFactory);
|
|
23
|
+
(0, kiota_abstractions_1.registerDefaultDeserializer)(kiota_serialization_text_1.TextParseNodeFactory);
|
|
24
|
+
(0, kiota_abstractions_1.registerDefaultDeserializer)(kiota_serialization_form_1.FormParseNodeFactory);
|
|
25
|
+
if (requestAdapter.baseUrl === undefined || requestAdapter.baseUrl === "") {
|
|
26
|
+
requestAdapter.baseUrl = "https://graph.microsoft.com/v1.0";
|
|
27
|
+
}
|
|
28
|
+
const pathParameters = {
|
|
29
|
+
"baseurl": requestAdapter.baseUrl,
|
|
30
|
+
};
|
|
31
|
+
return (0, kiota_abstractions_1.apiClientProxifier)(requestAdapter, pathParameters, exports.Oauth2PermissionGrantsServiceClientUriTemplate, exports.Oauth2PermissionGrantsServiceClientNavigationMetadata, undefined);
|
|
32
|
+
}
|
|
33
|
+
exports.createOauth2PermissionGrantsServiceClient = createOauth2PermissionGrantsServiceClient;
|
|
34
|
+
/**
|
|
35
|
+
* Metadata for all the navigation properties in the request builder.
|
|
36
|
+
*/
|
|
37
|
+
exports.Oauth2PermissionGrantsServiceClientNavigationMetadata = {
|
|
38
|
+
oauth2PermissionGrants: {
|
|
39
|
+
uriTemplate: oauth2PermissionGrants_1.Oauth2PermissionGrantsRequestBuilderUriTemplate,
|
|
40
|
+
requestsMetadata: oauth2PermissionGrants_1.Oauth2PermissionGrantsRequestBuilderRequestsMetadata,
|
|
41
|
+
navigationMetadata: oauth2PermissionGrants_1.Oauth2PermissionGrantsRequestBuilderNavigationMetadata,
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Uri template for the request builder.
|
|
46
|
+
*/
|
|
47
|
+
exports.Oauth2PermissionGrantsServiceClientUriTemplate = "{+baseurl}";
|
|
48
|
+
/* tslint:enable */
|
|
49
|
+
/* eslint-enable */
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/msgraph-sdk-oauth2permissiongrants",
|
|
3
|
+
"version": "1.0.0-preview.10",
|
|
4
|
+
"description": "Oauth2PermissionGrants fluent API for Microsoft Graph",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Microsoft",
|
|
7
|
+
"Graph",
|
|
8
|
+
"msgraph",
|
|
9
|
+
"API",
|
|
10
|
+
"SDK",
|
|
11
|
+
"oauth2PermissionGrants"
|
|
12
|
+
],
|
|
13
|
+
"author": "Microsoft <graphsdkpub+javascript@microsoft.com>",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"main": "index.js",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/microsoftgraph/msgraph-sdk-typescript.git"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsc -p tsconfig.json",
|
|
25
|
+
"lint": "eslint . --ext .ts",
|
|
26
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
27
|
+
"clean": "rimraf -g **/*.d.ts && rimraf -g **/*.d.ts.map && rimraf -g **/*.js.map && rimraf -g **/*.js && rimraf tsconfig.tsbuildinfo"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/microsoftgraph/msgraph-sdk-typescript/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/microsoftgraph/msgraph-sdk-typescript#readme",
|
|
33
|
+
"types": "index.d.ts",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@microsoft/kiota-abstractions": "^1.0.0-preview.38",
|
|
36
|
+
"@microsoft/kiota-serialization-form": "^1.0.0-preview.27",
|
|
37
|
+
"@microsoft/kiota-serialization-json": "^1.0.0-preview.38",
|
|
38
|
+
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.17",
|
|
39
|
+
"@microsoft/kiota-serialization-text": "^1.0.0-preview.35",
|
|
40
|
+
"@microsoft/msgraph-sdk": "^1.0.0-preview.10",
|
|
41
|
+
"guid-typescript": "^1.0.9",
|
|
42
|
+
"tslib": "^2.6.2"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"typescript": "^5.3.3"
|
|
46
|
+
},
|
|
47
|
+
"gitHead": "15d9675ebafd32092472a638aa8d5d9276e283b1"
|
|
48
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"extends": "../tsconfig.base.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"resolveJsonModule": true,
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"baseUrl": "./",
|
|
8
|
+
"paths": {
|
|
9
|
+
"@microsoft/msgraph-sdk": ["../msgraph-sdk"]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"include": ["**/*.ts"],
|
|
13
|
+
"exclude": ["node_modules", "**/__tests__/*", "**/__e2e__/*"],
|
|
14
|
+
"references": [{ "path": "../msgraph-sdk" }]
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/additionalDataHolder.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parsable.d.ts","../../node_modules/guid-typescript/dist/guid.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/dateOnly.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/duration.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/timeOnly.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parseNode.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/serializationWriter.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/serializationFunctionTypes.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parsableFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/kiotaJsonSerializer.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/kiotaSerializer.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parseNodeFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parseNodeFactoryRegistry.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/parseNodeProxyFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/serializationWriterFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/serializationWriterFactoryRegistry.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/serializationWriterProxyFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/serialization/index.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/apiClientBuilder.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/headers.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/httpMethod.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/requestOption.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/requestConfiguration.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/requestInformation.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStore.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backedModel.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStoreFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStoreFactorySingleton.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStoreParseNodeFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStoreSerializationWriterProxyFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/inMemoryBackingStore.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/inMemoryBackingStoreFactory.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backedModelProxy.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/backingStoreUtils.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/store/index.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/requestAdapter.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/apiClientProxifier.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/apiError.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/allowedHostsValidator.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/accessTokenProvider.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/authenticationProvider.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/apiKeyAuthenticationProvider.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/anonymousAuthenticationProvider.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/baseBearerTokenAuthenticationProvider.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/validateProtocol.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/authentication/index.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/baseRequestBuilder.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/getPathParameters.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/multipartBody.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/responseHandler.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/nativeResponseHandler.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/nativeResponseWrapper.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/recordWithCaseInsensitiveKeys.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/responseHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/utils/stringUtils.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/utils/guidUtils.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/utils/index.d.ts","../../node_modules/@microsoft/kiota-abstractions/dist/cjs/src/index.d.ts","../msgraph-sdk/graphServiceClient.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dom.shim.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/middleware.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/httpClient.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/observabilityOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/fetchRequestAdapter.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/utils/fetchDefinitions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/chaosStrategy.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/chaosHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/chaosHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/customFetchHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/headersInspectionOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/headersInspectionHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/parametersNameDecodingOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/parametersNameDecodingHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/redirectHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/redirectHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/retryHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/retryHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/userAgentHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/userAgentHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/options/telemetryHandlerOptions.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/telemetryHandler.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/middlewares/middlewareFactory.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/utils/headersUtil.d.ts","../../node_modules/@microsoft/kiota-http-fetchlibrary/dist/cjs/src/index.d.ts","../../node_modules/@microsoft/msgraph-sdk-core/middleware/graphTelemetryOption.ts","../../node_modules/@microsoft/msgraph-sdk-core/version.ts","../../node_modules/@microsoft/msgraph-sdk-core/middleware/graphTelemetryHandler.ts","../../node_modules/@microsoft/msgraph-sdk-core/middleware/middlewareFactory.ts","../../node_modules/@microsoft/msgraph-sdk-core/middleware/index.ts","../../node_modules/@microsoft/msgraph-sdk-core/graphHttpClient.ts","../../node_modules/@microsoft/msgraph-sdk-core/baseGraphRequestAdapter.ts","../../node_modules/@microsoft/msgraph-sdk-core/index.ts","../msgraph-sdk/graphRequestAdapter.d.ts","../msgraph-sdk/index.d.ts","../msgraph-sdk/models/externalConnectors/index.d.ts","../msgraph-sdk/models/identityGovernance/index.d.ts","../msgraph-sdk/models/security/index.d.ts","../msgraph-sdk/models/termStore/index.d.ts","../msgraph-sdk/models/index.d.ts","../msgraph-sdk/models/callRecords/index.d.ts","../msgraph-sdk/models/oDataErrors/index.d.ts","./oauth2PermissionGrants/count/index.ts","./oauth2PermissionGrants/delta/index.ts","./oauth2PermissionGrants/item/index.ts","./oauth2PermissionGrants/index.ts","../../node_modules/@microsoft/kiota-serialization-form/dist/cjs/src/formParseNode.d.ts","../../node_modules/@microsoft/kiota-serialization-form/dist/cjs/src/formSerializationWriter.d.ts","../../node_modules/@microsoft/kiota-serialization-form/dist/cjs/src/formParseNodeFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-form/dist/cjs/src/formSerializationWriterFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-form/dist/cjs/src/index.d.ts","../../node_modules/@microsoft/kiota-serialization-json/dist/cjs/src/jsonParseNode.d.ts","../../node_modules/@microsoft/kiota-serialization-json/dist/cjs/src/jsonSerializationWriter.d.ts","../../node_modules/@microsoft/kiota-serialization-json/dist/cjs/src/jsonParseNodeFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-json/dist/cjs/src/jsonSerializationWriterFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-json/dist/cjs/src/index.d.ts","../../node_modules/@microsoft/kiota-serialization-multipart/dist/cjs/src/multipartSerializationWriter.d.ts","../../node_modules/@microsoft/kiota-serialization-multipart/dist/cjs/src/multipartSerializationWriterFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-multipart/dist/cjs/src/index.d.ts","../../node_modules/@microsoft/kiota-serialization-text/dist/cjs/src/textParseNode.d.ts","../../node_modules/@microsoft/kiota-serialization-text/dist/cjs/src/textSerializationWriter.d.ts","../../node_modules/@microsoft/kiota-serialization-text/dist/cjs/src/textParseNodeFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-text/dist/cjs/src/textSerializationWriterFactory.d.ts","../../node_modules/@microsoft/kiota-serialization-text/dist/cjs/src/index.d.ts","./oauth2PermissionGrantsServiceClient.ts","./index.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true,"impliedFormat":1},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","impliedFormat":1},{"version":"5f16b27fa3bd9891cd7e220ec6b6eee1516fd9f5872809ff9272fb6e536e8b55","impliedFormat":1},{"version":"63285224fc78b8c2448a97d0147d75b95728b10aef463b3c877ee85f361f59be","impliedFormat":1},{"version":"9d917d09f6833256213a430fd0e4a0278e4116101616d3b6a1e83abadf3fb2e3","impliedFormat":1},{"version":"062a48e978f5ec3c9784d5e251bfb8f55c509b26f2ec850ac2b2ed1a1001367a","impliedFormat":1},{"version":"7a4f184aa85437072c4549437c2e0fd42a1aae1fe19d63aa9b6cd043b04284f3","impliedFormat":1},{"version":"75db9400a76866fcaf5cd77da4385fcb58be05585a26b7f63eff58dbdccf1e7f","impliedFormat":1},{"version":"2203517454294c71e9eb9b811efc90e487b3fad82a09f7a44b143919e232a14a","impliedFormat":1},{"version":"8fe7195769d1036c1abfb1e9c75a425b72e16a41c2b03acb488f81fe86c153e5","impliedFormat":1},{"version":"d670a9162110b362a08a3891877a7c2deef18f470c2bd73bbb89ff0a95614e41","impliedFormat":1},{"version":"0bf37631b27762b0ed6bca23a380b5642bf6b3304938a2579cfbea5e628276a2","impliedFormat":1},{"version":"5a8b3e4bf9aeb5471e94df7d556a8b5d1cc296564544e9e0961f41b604f2f7cd","impliedFormat":1},{"version":"e2e9320a9952cbd74b9752305da970bcde1b296835612f5bf26316374792a8cd","impliedFormat":1},{"version":"5c2536ffc677ab66ca597b27a6d8eb47312887409066d89c2c1c4a89452ea72b","impliedFormat":1},{"version":"5f487333048eb5df679572a2fcacee094211c01f8aff72752a45110deee802ef","impliedFormat":1},{"version":"ea0d309fa6dc8746f98425c1df2eab849b3824ba9e2bdd62ecc96ab951ac0d92","impliedFormat":1},{"version":"db65aa817b785373492aa6dd0c8ad50a215e6d59c35f8d1a73664e2d17ee9bee","impliedFormat":1},{"version":"8187b54ee564d519f62c6c2561466e8a800e8efd96482ba46fec4249db773f24","impliedFormat":1},{"version":"147a7310d453b41e1f78327f126eb78f90ffb811be796d286eb6f1352874c5e2","impliedFormat":1},{"version":"dcba3dcabe27a974232fd83026ad942ea32c5b659a80dbab123dfa2761a2b062","impliedFormat":1},{"version":"41fc50e2170dd041b51efbc051fec7fb125efb4d80a45b851d8e8057584e52d1","impliedFormat":1},{"version":"346ef082910f7c3273fa1d12132d29753a9a1788be2c38619779f2e05edce943","impliedFormat":1},{"version":"0cf58817c96e00deacd79483c46bb1d92657ea1046856eb06661f7d4d626fb07","impliedFormat":1},{"version":"5b408635d5278ff53dfb9d935650c45ab7292e4d6426e26e6a8059f84ce9b43b","impliedFormat":1},{"version":"41da3107ec46d69e210c6ab6e413bd6da5efd4cb9e9bde32cf8d10d2877a3205","impliedFormat":1},{"version":"e426583c0be1fd181e0d6e125b48566a53d347182c05173b314cf52507c5e3f9","impliedFormat":1},{"version":"581e199c71ec3db40d18f2708dce8b441320a8e6f92b5d58537f44486786c4f4","impliedFormat":1},{"version":"813d152df3a66abbb806325e081f9ba1925e02d0c6a0c4faf216c194ef91cf35","impliedFormat":1},{"version":"0eae00568a88ee33adc63817a6b74f1cacbfe30ba0cde82baa479ce9a621ee07","impliedFormat":1},{"version":"e2e3e24b35b1296263c04046a7855cbd3312f6f1cea73985b47dbd1db2158a3d","impliedFormat":1},{"version":"4bd19614e7f9eb27ac4270e153c971e7432c13f1eb73e8d54a1f9920a91e524e","impliedFormat":1},{"version":"521ee4564b61556b0246d43e7819c4faa307b5073f633098f2a1855269f05fd4","impliedFormat":1},{"version":"eed3b1a87c685975376f75090b31be4b3207dd799135d5ccad6c6c14e93c1c25","impliedFormat":1},{"version":"9c45618929d93dc35c56c055a8f66bed78981074d5f9773b4e9c5b83e76b0433","impliedFormat":1},{"version":"1bfdb5fbc07932031f5cd4bdd1a7b823689c9c45f3bb1956f486dc360d44c682","impliedFormat":1},{"version":"eb2fd80d5b4ecac55eacaf9652969814c6da380bc084725fd2f9477887879b16","impliedFormat":1},{"version":"0a522362412ba90764dac7fe5e8c143b4fdf9aa9852d0634013375a7cc29a128","impliedFormat":1},{"version":"95d8bcfcc9af0ac2365896802ce614c0e6f8464bd5ad3b328c53e9d459029281","impliedFormat":1},{"version":"95077b2ae705fe9fec9d9c8fdcca872fcc2295abff4621ee570b07c4eb08790e","impliedFormat":1},{"version":"59c4b27401a4d8c73a89aac25b35f71c548670c5e58f3ad58292ebb500fb71d4","impliedFormat":1},{"version":"05177099f278212af1153547da37063532dc827fcf258af9208aca06e0374398","impliedFormat":1},{"version":"ce56bce5723a035bd7b41be712a965db5a63108db969ecb8b9241dbaa527985b","impliedFormat":1},{"version":"c14d2de50f223bd0c05d4c1c2cb62a418b6b5a828b7e08ccfb8b0b6a3167d571","impliedFormat":1},{"version":"4f414cdeeb5834bed3ac0251bbeda1727efae8b62d6f4e147f12307ae4d57746","impliedFormat":1},{"version":"3d981201a40f1020c46f1ba420f73091b30023b0c4874ab7d45c30aa6d17ea5d","impliedFormat":1},{"version":"a5de55fe8f4cb84ef2f19dddae6a249e902f5bc82b30ad1f52dd0d2ff98a6fe6","impliedFormat":1},{"version":"7dee7e773354f3dca91732ded03250987f558fda8b15133352f92b423936b6ea","impliedFormat":1},{"version":"2fc8f8b06e54f77f21708ad70b43fb47e71b9fa903a591545edf8dfe7385eb7d","impliedFormat":1},{"version":"ac66139f08fbbf9113a207654a6dea720cda94933ba26c1003c5d5a02994da01","impliedFormat":1},{"version":"1c77dd67572e2ab1fd6b279089e3d2f98e79d7511efc0000a69ce048a6d7803f","impliedFormat":1},{"version":"23e851a9acfe156707970b200d4dda80c76c2a8e8d7d4c055aae1a7cda1b3068","impliedFormat":1},{"version":"dedbff66be5dfead655f5e66bd81628bfe7eaae0132c6a5880d4d2ca13af977f","impliedFormat":1},{"version":"8961a5c405e4dfa2e03a507e7f797ad2ab5cb83b202211370d39174ae9f66f7a","impliedFormat":1},{"version":"cc2a61694cf33e3f9a2c8ee2c33b64fbef545814d986dc085f629a3ba20f62ec","impliedFormat":1},{"version":"4ecd40e99ee7096269aab3d620aee826050becaede8fd4f6d80a846a5b2c5926","impliedFormat":1},{"version":"2692bf538df5dd6fcbfe89474534c5b884f7b75728e419f6b4ec49ec4da87d1f","impliedFormat":1},{"version":"3d65875f0d3294183e6d8e8e65cdf379c9a14f60830922dec7ae06788b44aaf1","impliedFormat":1},{"version":"3f38b66bff0c1e478a409fa5053bbd72a854fa28997bf8f74c432879bf54982e","impliedFormat":1},{"version":"7fb8826f1062d11181581cf53345598d3fefdebbfe9c87da2ba15960547a96d1","impliedFormat":1},{"version":"1ac7d5bae7cb93c09ef271c9112e8d7c232bb947e4648a24709bcd69b96cb0c4","impliedFormat":1},{"version":"1f91164b7b42075a890c353f19a96c5bf6cf8638dc2011100330591dcaee0435","impliedFormat":1},{"version":"caeb9cfdf0906c883aa82b6c0e51596a534071ce22690f64c7d098f38bba8ad1","affectsGlobalScope":true,"impliedFormat":1},{"version":"355070e4bbd98a275d4c335ec68a413b27f42ad15cc2c974abbf59dfd660eced","impliedFormat":1},{"version":"659a8f4186b23e611996794eca0eb5e41eae9d0424e960589f80992d32f90730","impliedFormat":1},{"version":"8c99336b0eec92e1be4d03e1f0b721e841bebd33afbc34912fd79748382a5b46","impliedFormat":1},{"version":"7570bb5b087452fdab3d00b8869f2b442b6fcdee4d9d55f97ebc4b5b66043010","impliedFormat":1},{"version":"875af2e69dc0764605487e43f9859268873ba6aa0eeeaad7ce62f0d8ea80de7a","impliedFormat":1},{"version":"efd724d0d52ecdede9653b66ba36f06374f4a3dc4e02cbbcc339647eb2862373","impliedFormat":1},{"version":"e9c16ac05063142740a5794f42be451051fd7c46cd3ac6fc592eef240ff96d18","impliedFormat":1},{"version":"978e7654e5b6d35871f3990af7726878f1c1249982937b3835f25b3be5639dba","impliedFormat":1},{"version":"0ff7bd7962510c247aefc02293c2c0c393771a829be837319382daa4f89b16ec","impliedFormat":1},{"version":"27d331919a9cfa0fd0bb6ac8f8214dd95003bfd6d09ba47c53cab2722397253d","impliedFormat":1},{"version":"ac3d12b829eb5332211fcd878361d12558b29fbb645f2fbf7ffa6763c98864cd","impliedFormat":1},{"version":"dd634e4ea3b991ee48084b1b2b42636c54a5ebc05d3e04668f3ceff458875c94","impliedFormat":1},{"version":"2d7985eb8e44b5b4c38f4a24fc8a914ea6978adabef191c6c0ff3d8300a86989","impliedFormat":1},{"version":"900810e84f3c55ec717da91440aa2d21a47eebdd2e246a3bc00acac9d531062d","impliedFormat":1},{"version":"33d7b58c260caac75e5bdb89fd22e4ec17a27454e2957137c558be73af8a4ec4","impliedFormat":1},{"version":"371af268d7d204c22c624c4f007d0fe2a2d1d3331941dfc4a7149573b6d5ddfb","impliedFormat":1},{"version":"d6c0ea0000a60eb3b58e742e88be640419f2f20e18496431732c75e7857dd0d8","impliedFormat":1},{"version":"936060d30fe14141a50931f61b944192ba485e045fe346e6defc748df5b5ea2d","impliedFormat":1},{"version":"b18992c1d0ec74a85b61a6fe6be9beed2e886ae3213e6b6c8df9950bb80b868a","impliedFormat":1},{"version":"817ff7fdacefb1594035cd522b725c88102f7f056c5ff0f37ed6e69da40c5fd8","impliedFormat":1},{"version":"442fcc7d9603b899fa3f6390887c817999a6ada0af14ec494d66b01995c797dc","impliedFormat":1},{"version":"e2caa701ca254196a0b6215685c5ca6fb0ad1c6078a1392ac1cf0e4515192fee","impliedFormat":1},{"version":"2600426f520574916a54ee5dd6bde343e41db21557fd274d3775580f90456777","impliedFormat":1},{"version":"c0422fa12f9058eb5fd4c4942c9345cfb28d492505f069e7f2823b6ee22a98b7","impliedFormat":1},{"version":"000aa66978fd52bf8f55b53b4226a193970dfbe837e45e7e88114204aec0a9e3","impliedFormat":1},{"version":"6c9a5b1040d91f0e017a05db33cb30566aeb70bf5f3cea336101917a4b21a7a0","impliedFormat":1},{"version":"b8e1bc4e5d5e3465cbbebaf54d24735f138fe307b951df0f557b1fb36191a599","impliedFormat":1},{"version":"a0e386a5b92e0c7c32f89faa9d10927ea65192bbd0df6d3b1337f90e49a9aa41","impliedFormat":1},{"version":"1c77680cb0609c2934e90fffc9de8c99fc3daea309a418dacc67b243c3fb68b6","impliedFormat":1},{"version":"8353508d6361ede4a245b3b53dad93ebe4a7b0fd40b44f7f99d1f1752897de91","impliedFormat":1},{"version":"e48fac3966fead45d7139df764817aae4c3d7c2aac86c88fe0abc4be7b954900","impliedFormat":1},{"version":"89f22bccfb97c7cebad3f98188b78cb1f0744f66d938ec4bdf2cf658d5de4780","impliedFormat":1},{"version":"46f519c63f0054b214e6137b425566c4677d419be9015d12dd41f3c3a47dbc44","impliedFormat":1},{"version":"16c7b5655b16a1980d0065c2d4acef9e783a3b27736b493804c6488f1770b6a1","impliedFormat":1},{"version":"d4df4894affeff30a7f6f729a3431505d21fa0431509f32953f7f0620e5bde53","impliedFormat":1},{"version":"ab8b395f60114e9ff612ad79ef0c8f4fd3bc296acf16bc52c5888d2dd5708a0e","impliedFormat":1},{"version":"53fda0046bbc7af3b4a98dab08f7b330af89c72dd736c4e91d7fc1f1dfd7a5ce","impliedFormat":1},{"version":"689b94dd5e095672a28600b994050b98993f174ec3b48299cd31324d0fb67691","impliedFormat":1},{"version":"7c4313e05f94f26cda7697df7031f37ef5ed810eefe8c967d595ba998660609b","impliedFormat":1},{"version":"ace2712b8c045fa50100d1b427598e27a5ffbf5686c96d0c4019f72c42dbb783","impliedFormat":1},{"version":"13fd2446a478526b727340392af16d4391df48d4de0e9685d64151448fd85661","impliedFormat":1},{"version":"ef1d0509e9a49208a110f7f1ea03a2efa57621db81cfd979d535a2948c602278","signature":"71b870ec2f96e2acf635e37ccbf6a73213823fc6af7f202ef8ff7a4899d272e2","impliedFormat":1},{"version":"766f88bff0bcc04675f5ee9df369a10fd2954f04ce30a973fd741a4514834498","signature":"4c3315e7aa13c8b8a9dc55611ad5bfe37f37b59516d4c0d3ce12810a3e2537c6","impliedFormat":1},{"version":"c2d1f50a41f2e03a5366b3ec066a6c225e4040f4156e812bb60181e053443a17","signature":"d63cf1fc08bdfb749a10739844a74b6a4f79e8d5249e252611b82e69c27cccf1","impliedFormat":1},{"version":"400cf24d971d6e2b3389f1aefe1180f84a2272a830c8385a3128655e82d72a7f","signature":"0a7203aea3a4d2c9ec417bd98a84df81aece3ce113ed30ad01cab34b93515d8b","impliedFormat":1},{"version":"e82982e223caea59189e7ad376f9b771beac3270acf619fc3fcb4dcd4b115353","impliedFormat":1},{"version":"94bfb1fe142ed3849d1216b518dddafac9952cdd15422860827477367fb2773d","impliedFormat":1},{"version":"55959b3d2400819a9525a954eabcb80454c556cdb78775fac6b086086b838998","impliedFormat":1},{"version":"92376a965b5c7f932ef65c5b3d88e99ca0cd7e81567919bcf88eb11c07344d30","impliedFormat":1},{"version":"d740b0d3138937b4642889cb4960c5221f4f3b537a5505b6616b090a2d74f17a","impliedFormat":1},{"version":"041a2287aa997abb0f7b05cacc1bf258f80eb7169be9e530f0fbcd89a190a217","impliedFormat":1},{"version":"e2f247931d59a7be66fa2336337896878fa0d65ebea6e73662e6a03405d8e09b","impliedFormat":1},{"version":"5ca38c017fd808a7f3aa399c0c37116430ea3b6c641e472a3f785a174d38c616","impliedFormat":1},{"version":"84798482c11a291193cde534b9e98794f8f46b8a082fde9af4a9cc4a546cab4b","impliedFormat":1},{"version":"a441213296c0ffff0d99a23e11805b9e1f65c9fc7e0eee1491c75eb193ba8ef5","impliedFormat":1},{"version":"6c4e8c0ccdf23599170b91bbe9ea49e9f8549139efcc1f3b1f910505c59fb43b","impliedFormat":1},{"version":"4ad45d852f482390a0e82f9f9ee0b420ac1a4cf3e078a0b3671902ef9a8e1417","impliedFormat":1},{"version":"b01a16bc8b388ae7494823ea80dfb1925179089a487f075f49980555f3566c48","impliedFormat":1},{"version":"ede1f61cbb42d4e90d4e0d1d75795bee341b771c77a0ab7ece278abd4a1e2ac2","impliedFormat":1},{"version":"ed7b4b0b594f3c7165776cb9b485ce43e2be73ddbc0f048e20987b9a19f68fb5","impliedFormat":1},{"version":"b8b32c5372dc7465344f724da8a8908fd8a466d54e7b4c4d7b4eec713d9454d9","impliedFormat":1},{"version":"dd7c6f17d75177f13da889164a640c53aefd6487a138b9390b75424d40569032","impliedFormat":1},{"version":"869d25b1507b242a2b03fab48f0a7869e131d428a04242b1e655c432eaf61058","impliedFormat":1},{"version":"40140cd3f46cdcb30374a663ec72c41bc914cddf3d16e1fd83d060ca65544281","signature":"d9c296c51709984a1b964ff4ae74e7bc4a9c28727a13c84b019b215ff62fde4b","impliedFormat":1},{"version":"9ae8729159a1f3c8e514e832ab79f042e2d9e250596213dfe39767bcb0be0595","signature":"70244ec0c9dc7eac1f75e92c8f03c166735e833c723c4d04c33a48a019f7f34e","impliedFormat":1},{"version":"4a2c144ea6f441e9616ec77fe9b1009b0cdf6db0cd9727b8d99623975cd6c693","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true,"impliedFormat":1},{"version":"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"1b282e90846fada1e96dc1cf5111647d6ab5985c8d7b5c542642f1ea2739406d","impliedFormat":1},{"version":"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","impliedFormat":1},{"version":"4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","impliedFormat":1},{"version":"8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","impliedFormat":1},{"version":"af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","impliedFormat":1},{"version":"313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","impliedFormat":1},{"version":"f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","impliedFormat":1},{"version":"87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","impliedFormat":1},{"version":"45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true,"impliedFormat":1},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","impliedFormat":1},{"version":"54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","impliedFormat":1},{"version":"9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024","impliedFormat":1},{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true,"impliedFormat":1},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","impliedFormat":1},{"version":"79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","impliedFormat":1},{"version":"4ed1947c896cf704905c190f22eee529cbc746e49b4abd10f27e94277951c298","impliedFormat":1},{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","impliedFormat":1},{"version":"5b5337f28573ffdbc95c3653c4a7961d0f02fdf4788888253bf74a3b5a05443e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"85f8ebd7f245e8bf29da270e8b53dcdd17528826ffd27176c5fc7e426213ef5a","impliedFormat":1}],"root":[[152,155],174,175],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[68],[68,74,86],[89],[74,91],[74],[74,90,91],[89,90,91,92,93,94,95],[53,54,55,68,69,70,71,72,73,74,85,86,87,88,96,97,98,99,100,101,102,103,104,107],[68,86],[86,100],[72,100],[53,54,55,68,74,85],[72],[68,70,71,72,73,86],[86],[50,51,56,57,58,59,60,61,62,63,64,65,66,67],[51,58,59],[51,56,58],[51,52,53,54,55,59],[56],[56,62],[51,56,62],[51,56,57],[51,52,53,54,55,58],[57],[57,65],[51,57,65],[75],[77],[75,77],[75,76,77,78,79,80,81,82,83,84],[52],[105,106],[108,112,113],[108,111],[110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[108,111,117],[111],[108,111,120],[108],[115,116],[108,115],[108,111,122],[108,111,124],[108,111,126],[108,111,130],[108,111,128],[115],[52,108],[156,157,158,159],[161,162,163,164],[166,167],[169,170,171,172],[108,134,140],[134,139],[139,140,141],[108,134,135,136],[135,137,138],[134,135,137],[179],[214],[215,220,248],[216,227,228,235,245,256],[216,217,227,235],[218,257],[219,220,228,236],[220,245,253],[221,223,227,235],[214,222],[223,224],[227],[225,227],[214,227],[227,228,229,245,256],[227,228,229,242,245,248],[212,215,261],[223,227,230,235,245,256],[227,228,230,231,235,245,253,256],[230,232,245,253,256],[179,180,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263],[227,233],[234,256,261],[223,227,235,245],[236],[237],[214,238],[239,255,261],[240],[241],[227,242,243],[242,244,257,259],[215,227,245,246,247,248],[215,245,247],[245,246],[248],[249],[214,245],[227,251,252],[251,252],[220,235,245,253],[254],[235,255],[215,230,241,256],[220,257],[245,258],[234,259],[260],[215,220,227,229,238,245,256,259,261],[245,262],[265,304],[265,289,304],[304],[265],[265,290,304],[265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303],[290,304],[189,193,256],[189,245,256],[184],[186,189,253,256],[235,253],[264],[184,264],[186,189,235,256],[181,182,185,188,215,227,245,256],[181,187],[185,189,215,248,256,264],[215,264],[205,215,264],[183,184,264],[189],[183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,199,200,201,202,203,204,206,207,208,209,210,211],[189,196,197],[187,189,197,198],[188],[181,184,189],[189,193,197,198],[193],[187,189,192,256],[181,186,187,189,193,196],[215,245],[184,189,205,215,261,264],[144,155,174,175],[108,151],[108,149,151],[108,149,151,152,153,154],[108,155,160,165,168,173],[108,134,142],[109,143],[108,149],[52,108,145,146,147,148,150],[108,149,152,153,154],[108,155]],"referencedMap":[[69,1],[87,2],[90,3],[93,4],[92,4],[91,5],[94,6],[96,7],[108,8],[99,9],[101,10],[102,11],[86,12],[73,13],[74,14],[100,15],[104,11],[68,16],[60,17],[61,17],[59,18],[56,19],[62,20],[63,21],[64,22],[58,23],[57,24],[65,25],[66,26],[67,27],[76,28],[77,28],[78,29],[79,1],[80,1],[84,1],[81,28],[82,30],[85,31],[106,32],[107,33],[114,34],[112,35],[134,36],[118,37],[119,38],[121,39],[111,40],[132,38],[117,41],[120,40],[122,40],[124,40],[126,42],[130,40],[128,40],[123,43],[125,44],[127,45],[131,46],[129,47],[113,40],[133,48],[156,49],[158,40],[157,49],[159,40],[160,50],[165,51],[161,49],[163,40],[162,49],[164,40],[168,52],[166,49],[167,40],[173,53],[169,49],[171,40],[170,49],[172,40],[141,54],[140,55],[142,56],[137,57],[139,58],[138,59],[179,60],[180,60],[214,61],[215,62],[216,63],[217,64],[218,65],[219,66],[220,67],[221,68],[222,69],[223,70],[224,70],[226,71],[225,72],[227,73],[228,74],[229,75],[213,76],[230,77],[231,78],[232,79],[264,80],[233,81],[234,82],[235,83],[236,84],[237,85],[238,86],[239,87],[240,88],[241,89],[242,90],[243,90],[244,91],[245,92],[247,93],[246,94],[248,95],[249,96],[250,97],[251,98],[252,99],[253,100],[254,101],[255,102],[256,103],[257,104],[258,105],[259,106],[260,107],[261,108],[262,109],[289,110],[290,111],[265,112],[268,112],[287,110],[288,110],[278,110],[277,113],[275,110],[270,110],[283,110],[281,110],[285,110],[269,110],[282,110],[286,110],[271,110],[272,110],[284,110],[266,110],[273,110],[274,110],[276,110],[280,110],[291,114],[279,110],[267,110],[304,115],[298,114],[300,116],[299,114],[292,114],[293,114],[295,114],[297,114],[301,116],[302,116],[294,116],[296,116],[196,117],[203,118],[195,117],[210,119],[187,120],[186,121],[209,122],[204,123],[207,124],[189,125],[188,126],[184,127],[183,128],[206,129],[185,130],[190,131],[194,131],[212,132],[211,131],[198,133],[199,134],[201,135],[197,136],[200,137],[205,122],[192,138],[193,139],[202,140],[182,141],[208,142],[175,143],[152,144],[153,145],[155,146],[154,145],[174,147],[143,148],[109,40],[144,149],[150,150],[145,150],[146,150],[149,151],[151,40],[147,150],[148,150]],"exportedModulesMap":[[69,1],[87,2],[90,3],[93,4],[92,4],[91,5],[94,6],[96,7],[108,8],[99,9],[101,10],[102,11],[86,12],[73,13],[74,14],[100,15],[104,11],[68,16],[60,17],[61,17],[59,18],[56,19],[62,20],[63,21],[64,22],[58,23],[57,24],[65,25],[66,26],[67,27],[76,28],[77,28],[78,29],[79,1],[80,1],[84,1],[81,28],[82,30],[85,31],[106,32],[107,33],[114,34],[112,35],[134,36],[118,37],[119,38],[121,39],[111,40],[132,38],[117,41],[120,40],[122,40],[124,40],[126,42],[130,40],[128,40],[123,43],[125,44],[127,45],[131,46],[129,47],[113,40],[133,48],[156,49],[158,40],[157,49],[159,40],[160,50],[165,51],[161,49],[163,40],[162,49],[164,40],[168,52],[166,49],[167,40],[173,53],[169,49],[171,40],[170,49],[172,40],[141,54],[140,55],[142,56],[137,57],[139,58],[138,59],[179,60],[180,60],[214,61],[215,62],[216,63],[217,64],[218,65],[219,66],[220,67],[221,68],[222,69],[223,70],[224,70],[226,71],[225,72],[227,73],[228,74],[229,75],[213,76],[230,77],[231,78],[232,79],[264,80],[233,81],[234,82],[235,83],[236,84],[237,85],[238,86],[239,87],[240,88],[241,89],[242,90],[243,90],[244,91],[245,92],[247,93],[246,94],[248,95],[249,96],[250,97],[251,98],[252,99],[253,100],[254,101],[255,102],[256,103],[257,104],[258,105],[259,106],[260,107],[261,108],[262,109],[289,110],[290,111],[265,112],[268,112],[287,110],[288,110],[278,110],[277,113],[275,110],[270,110],[283,110],[281,110],[285,110],[269,110],[282,110],[286,110],[271,110],[272,110],[284,110],[266,110],[273,110],[274,110],[276,110],[280,110],[291,114],[279,110],[267,110],[304,115],[298,114],[300,116],[299,114],[292,114],[293,114],[295,114],[297,114],[301,116],[302,116],[294,116],[296,116],[196,117],[203,118],[195,117],[210,119],[187,120],[186,121],[209,122],[204,123],[207,124],[189,125],[188,126],[184,127],[183,128],[206,129],[185,130],[190,131],[194,131],[212,132],[211,131],[198,133],[199,134],[201,135],[197,136],[200,137],[205,122],[192,138],[193,139],[202,140],[182,141],[208,142],[175,143],[152,40],[153,150],[155,152],[154,150],[174,153],[143,148],[109,40],[144,149],[150,150],[145,150],[146,150],[149,151],[151,40],[147,150],[148,150]],"semanticDiagnosticsPerFile":[69,87,88,90,89,93,92,91,94,96,95,97,53,54,98,70,71,108,99,101,102,103,86,73,74,72,100,104,50,68,60,61,51,59,56,62,63,64,58,57,65,66,67,76,83,75,77,78,79,80,84,81,82,85,55,106,107,105,114,112,134,118,119,121,111,132,117,116,120,122,124,126,130,128,123,125,127,131,129,113,115,133,110,156,158,157,159,160,165,161,163,162,164,168,166,167,173,169,171,170,172,141,140,142,137,135,139,138,136,176,177,178,179,180,214,215,216,217,218,219,220,221,222,223,224,226,225,227,228,229,213,263,230,231,232,264,233,234,235,236,237,238,239,240,241,242,243,244,245,247,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,289,290,265,268,287,288,278,277,275,270,283,281,285,269,282,286,271,272,284,266,273,274,276,280,291,279,267,304,303,298,300,299,292,293,295,297,301,302,294,296,52,47,48,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,22,49,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,1,46,11,10,196,203,195,210,187,186,209,204,207,189,188,184,183,206,185,190,191,194,181,212,211,198,199,201,197,200,205,192,193,202,182,208,175,152,153,155,154,174,143,109,144,150,145,146,149,151,147,148],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|