@microsoft/msgraph-sdk-schemaextensions 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/package.json +48 -0
- package/schemaExtensions/count/index.d.ts +40 -0
- package/schemaExtensions/count/index.d.ts.map +1 -0
- package/schemaExtensions/count/index.js +35 -0
- package/schemaExtensions/index.d.ts +97 -0
- package/schemaExtensions/index.d.ts.map +1 -0
- package/schemaExtensions/index.js +70 -0
- package/schemaExtensions/item/index.d.ts +69 -0
- package/schemaExtensions/item/index.d.ts.map +1 -0
- package/schemaExtensions/item/index.js +56 -0
- package/schemaExtensionsServiceClient.d.ts +25 -0
- package/schemaExtensionsServiceClient.d.ts.map +1 -0
- package/schemaExtensionsServiceClient.js +49 -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 { SchemaExtensionsRequestBuilder } from "./schemaExtensions";
|
|
2
|
+
declare module "@microsoft/msgraph-sdk" {
|
|
3
|
+
interface GraphServiceClient {
|
|
4
|
+
/**
|
|
5
|
+
* Provides operations to manage the schemaExtensions singleton.
|
|
6
|
+
*/
|
|
7
|
+
get schemaExtensions(): SchemaExtensionsRequestBuilder;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export * from "./schemaExtensionsServiceClient";
|
|
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,8BAA8B,EAAE,MAAM,oBAAoB,CAAC;AAGzE,OAAO,QAAQ,wBAAwB,CAAC;IACtC,UAAU,kBAAkB;QAC1B;;WAEG;QACH,IAAI,gBAAgB,IAAI,8BAA8B,CAAC;KACxD;CACF;AAED,cAAc,iCAAiC,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 schemaExtensionsServiceClient_1 = require("./schemaExtensionsServiceClient");
|
|
19
|
+
(0, msgraph_sdk_1.extendGraphServiceClient)(schemaExtensionsServiceClient_1.SchemaExtensionsServiceClientNavigationMetadata);
|
|
20
|
+
__exportStar(require("./schemaExtensionsServiceClient"), exports);
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/msgraph-sdk-schemaextensions",
|
|
3
|
+
"version": "1.0.0-preview.10",
|
|
4
|
+
"description": "SchemaExtensions fluent API for Microsoft Graph",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Microsoft",
|
|
7
|
+
"Graph",
|
|
8
|
+
"msgraph",
|
|
9
|
+
"API",
|
|
10
|
+
"SDK",
|
|
11
|
+
"schemaExtensions"
|
|
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
|
+
}
|
|
@@ -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}/schemaExtensions/$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,6DAA6D,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}/schemaExtensions/$count{?%24search,%24filter}";
|
|
34
|
+
/* tslint:enable */
|
|
35
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { type SchemaExtension, type SchemaExtensionCollectionResponse } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type CountRequestBuilder } from './count/';
|
|
3
|
+
import { type SchemaExtensionItemRequestBuilder } from './item/';
|
|
4
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
5
|
+
/**
|
|
6
|
+
* Provides operations to manage the collection of schemaExtension entities.
|
|
7
|
+
*/
|
|
8
|
+
export interface SchemaExtensionsRequestBuilder extends BaseRequestBuilder<SchemaExtensionsRequestBuilder> {
|
|
9
|
+
/**
|
|
10
|
+
* Provides operations to count the resources in the collection.
|
|
11
|
+
*/
|
|
12
|
+
get count(): CountRequestBuilder;
|
|
13
|
+
/**
|
|
14
|
+
* Provides operations to manage the collection of schemaExtension entities.
|
|
15
|
+
* @param schemaExtensionId The unique identifier of schemaExtension
|
|
16
|
+
* @returns a SchemaExtensionItemRequestBuilder
|
|
17
|
+
*/
|
|
18
|
+
bySchemaExtensionId(schemaExtensionId: string): SchemaExtensionItemRequestBuilder;
|
|
19
|
+
/**
|
|
20
|
+
* Get a list of schemaExtension objects in your tenant. The schema extensions can be InDevelopment, Available, or Deprecated and includes schema extensions:
|
|
21
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
+
* @returns a Promise of SchemaExtensionCollectionResponse
|
|
23
|
+
* @see {@link https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-1.0|Find more info here}
|
|
24
|
+
*/
|
|
25
|
+
get(requestConfiguration?: RequestConfiguration<SchemaExtensionsRequestBuilderGetQueryParameters> | undefined): Promise<SchemaExtensionCollectionResponse | undefined>;
|
|
26
|
+
/**
|
|
27
|
+
* Create a new schemaExtension definition and its associated schema extension property to extend a supporting resource type. Schema extensions let you add strongly-typed custom data to a resource. The app that creates a schema extension is the owner app. Depending on the state of the extension, the owner app, and only the owner app, may update or delete the extension. See examples of how to define a schema extension that describes a training course, use the schema extension definition to create a new group with training course data, and add training course data to an existing group.
|
|
28
|
+
* @param body The request body
|
|
29
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
|
+
* @returns a Promise of SchemaExtension
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-1.0|Find more info here}
|
|
32
|
+
*/
|
|
33
|
+
post(body: SchemaExtension, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SchemaExtension | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* Get a list of schemaExtension objects in your tenant. The schema extensions can be InDevelopment, Available, or Deprecated and includes schema extensions:
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns a RequestInformation
|
|
38
|
+
*/
|
|
39
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<SchemaExtensionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
|
+
/**
|
|
41
|
+
* Create a new schemaExtension definition and its associated schema extension property to extend a supporting resource type. Schema extensions let you add strongly-typed custom data to a resource. The app that creates a schema extension is the owner app. Depending on the state of the extension, the owner app, and only the owner app, may update or delete the extension. See examples of how to define a schema extension that describes a training course, use the schema extension definition to create a new group with training course data, and add training course data to an existing group.
|
|
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
|
+
toPostRequestInformation(body: SchemaExtension, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Get a list of schemaExtension objects in your tenant. The schema extensions can be InDevelopment, Available, or Deprecated and includes schema extensions:
|
|
50
|
+
*/
|
|
51
|
+
export interface SchemaExtensionsRequestBuilderGetQueryParameters {
|
|
52
|
+
/**
|
|
53
|
+
* Include count of items
|
|
54
|
+
*/
|
|
55
|
+
count?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Expand related entities
|
|
58
|
+
*/
|
|
59
|
+
expand?: string[];
|
|
60
|
+
/**
|
|
61
|
+
* Filter items by property values
|
|
62
|
+
*/
|
|
63
|
+
filter?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Order items by property values
|
|
66
|
+
*/
|
|
67
|
+
orderby?: string[];
|
|
68
|
+
/**
|
|
69
|
+
* Search items by search phrases
|
|
70
|
+
*/
|
|
71
|
+
search?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Select properties to be returned
|
|
74
|
+
*/
|
|
75
|
+
select?: string[];
|
|
76
|
+
/**
|
|
77
|
+
* Skip the first n items
|
|
78
|
+
*/
|
|
79
|
+
skip?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Show only the first n items
|
|
82
|
+
*/
|
|
83
|
+
top?: number;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Metadata for all the navigation properties in the request builder.
|
|
87
|
+
*/
|
|
88
|
+
export declare const SchemaExtensionsRequestBuilderNavigationMetadata: Record<Exclude<keyof SchemaExtensionsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
89
|
+
/**
|
|
90
|
+
* Metadata for all the requests in the request builder.
|
|
91
|
+
*/
|
|
92
|
+
export declare const SchemaExtensionsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
93
|
+
/**
|
|
94
|
+
* Uri template for the request builder.
|
|
95
|
+
*/
|
|
96
|
+
export declare const SchemaExtensionsRequestBuilderUriTemplate = "{+baseurl}/schemaExtensions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
|
|
97
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAwI,KAAK,eAAe,EAAE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAEpP,OAAO,EAAuE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzH,OAAO,EAAmG,KAAK,iCAAiC,EAAE,MAAM,SAAS,CAAC;AAClK,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,8BAA+B,SAAQ,kBAAkB,CAAC,8BAA8B,CAAC;IACtG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACzK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;IACrI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACzJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC1I;AACD;;GAEG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;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,gDAAgD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,8BAA8B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAU1K,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,gBAuB5D,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,yCAAyC,6GAA6G,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SchemaExtensionsRequestBuilderUriTemplate = exports.SchemaExtensionsRequestBuilderRequestsMetadata = exports.SchemaExtensionsRequestBuilderNavigationMetadata = 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 item_1 = require("./item/");
|
|
11
|
+
/**
|
|
12
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
13
|
+
*/
|
|
14
|
+
const SchemaExtensionsRequestBuilderGetQueryParametersMapper = {
|
|
15
|
+
"count": "%24count",
|
|
16
|
+
"expand": "%24expand",
|
|
17
|
+
"filter": "%24filter",
|
|
18
|
+
"orderby": "%24orderby",
|
|
19
|
+
"search": "%24search",
|
|
20
|
+
"select": "%24select",
|
|
21
|
+
"skip": "%24skip",
|
|
22
|
+
"top": "%24top",
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Metadata for all the navigation properties in the request builder.
|
|
26
|
+
*/
|
|
27
|
+
exports.SchemaExtensionsRequestBuilderNavigationMetadata = {
|
|
28
|
+
bySchemaExtensionId: {
|
|
29
|
+
uriTemplate: item_1.SchemaExtensionItemRequestBuilderUriTemplate,
|
|
30
|
+
requestsMetadata: item_1.SchemaExtensionItemRequestBuilderRequestsMetadata,
|
|
31
|
+
pathParametersMappings: ["schemaExtension%2Did"],
|
|
32
|
+
},
|
|
33
|
+
count: {
|
|
34
|
+
uriTemplate: count_1.CountRequestBuilderUriTemplate,
|
|
35
|
+
requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Metadata for all the requests in the request builder.
|
|
40
|
+
*/
|
|
41
|
+
exports.SchemaExtensionsRequestBuilderRequestsMetadata = {
|
|
42
|
+
get: {
|
|
43
|
+
responseBodyContentType: "application/json",
|
|
44
|
+
errorMappings: {
|
|
45
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
46
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
47
|
+
},
|
|
48
|
+
adapterMethodName: "sendAsync",
|
|
49
|
+
responseBodyFactory: models_1.createSchemaExtensionCollectionResponseFromDiscriminatorValue,
|
|
50
|
+
queryParametersMapper: SchemaExtensionsRequestBuilderGetQueryParametersMapper,
|
|
51
|
+
},
|
|
52
|
+
post: {
|
|
53
|
+
responseBodyContentType: "application/json",
|
|
54
|
+
errorMappings: {
|
|
55
|
+
_4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
56
|
+
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
57
|
+
},
|
|
58
|
+
adapterMethodName: "sendAsync",
|
|
59
|
+
responseBodyFactory: models_1.createSchemaExtensionFromDiscriminatorValue,
|
|
60
|
+
requestBodyContentType: "application/json",
|
|
61
|
+
requestBodySerializer: models_1.serializeSchemaExtension,
|
|
62
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Uri template for the request builder.
|
|
67
|
+
*/
|
|
68
|
+
exports.SchemaExtensionsRequestBuilderUriTemplate = "{+baseurl}/schemaExtensions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
|
|
69
|
+
/* tslint:enable */
|
|
70
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { type SchemaExtension } 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 schemaExtension entities.
|
|
5
|
+
*/
|
|
6
|
+
export interface SchemaExtensionItemRequestBuilder extends BaseRequestBuilder<SchemaExtensionItemRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Delete the definition of a schema extension. Only the app that created the schema extension (owner app) can delete the schema extension definition, and only when the extension is in the InDevelopment state. Deleting a schema extension definition does not affect accessing custom data that has been added to resource instances based on that definition.
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @see {@link https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-1.0|Find more info here}
|
|
11
|
+
*/
|
|
12
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Get schemaExtension
|
|
15
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
|
+
* @returns a Promise of SchemaExtension
|
|
17
|
+
* @see {@link https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-1.0|Find more info here}
|
|
18
|
+
*/
|
|
19
|
+
get(requestConfiguration?: RequestConfiguration<SchemaExtensionItemRequestBuilderGetQueryParameters> | undefined): Promise<SchemaExtension | undefined>;
|
|
20
|
+
/**
|
|
21
|
+
* Update properties in the definition of the specified schemaExtension. Additive updates to the extension can only be made when the extension is in the InDevelopment or Available status. This means custom properties or target resource types cannot be removed from the definition, but new custom properties can be added and the description of the extension changed. The update applies to all the resources that are included in the targetTypes property of the extension. These resources are among the supporting resource types. For delegated flows, the signed-in user can update a schema extension as long as the owner property of the extension is set to the appId of an application the signed-in user owns. That application can be the one that initially created the extension, or some other application owned by the signed-in user. This criteria for the owner property allows a signed-in user to make updates through other applications they don't own, such as Microsoft Graph Explorer. When using Graph Explorer to update a schemaExtension resource, include the owner property in the PATCH request body.
|
|
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 SchemaExtension
|
|
25
|
+
* @see {@link https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-1.0|Find more info here}
|
|
26
|
+
*/
|
|
27
|
+
patch(body: SchemaExtension, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SchemaExtension | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Delete the definition of a schema extension. Only the app that created the schema extension (owner app) can delete the schema extension definition, and only when the extension is in the InDevelopment state. Deleting a schema extension definition does not affect accessing custom data that has been added to resource instances based on that definition.
|
|
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
|
+
* Get schemaExtension
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns a RequestInformation
|
|
38
|
+
*/
|
|
39
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<SchemaExtensionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
|
+
/**
|
|
41
|
+
* Update properties in the definition of the specified schemaExtension. Additive updates to the extension can only be made when the extension is in the InDevelopment or Available status. This means custom properties or target resource types cannot be removed from the definition, but new custom properties can be added and the description of the extension changed. The update applies to all the resources that are included in the targetTypes property of the extension. These resources are among the supporting resource types. For delegated flows, the signed-in user can update a schema extension as long as the owner property of the extension is set to the appId of an application the signed-in user owns. That application can be the one that initially created the extension, or some other application owned by the signed-in user. This criteria for the owner property allows a signed-in user to make updates through other applications they don't own, such as Microsoft Graph Explorer. When using Graph Explorer to update a schemaExtension resource, include the owner property in the PATCH request body.
|
|
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: SchemaExtension, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Get schemaExtension
|
|
50
|
+
*/
|
|
51
|
+
export interface SchemaExtensionItemRequestBuilderGetQueryParameters {
|
|
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 SchemaExtensionItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
65
|
+
/**
|
|
66
|
+
* Uri template for the request builder.
|
|
67
|
+
*/
|
|
68
|
+
export declare const SchemaExtensionItemRequestBuilderUriTemplate = "{+baseurl}/schemaExtensions/{schemaExtension%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,EAAyE,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAE7I,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iCAAkC,SAAQ,kBAAkB,CAAC,iCAAiC,CAAC;IAC5G;;;;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,mDAAmD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;IACtI;;;;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,mDAAmD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC5J;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC3I;AACD;;GAEG;AACH,MAAM,WAAW,mDAAmD;IAChE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAQD;;GAEG;AACH,eAAO,MAAM,iDAAiD,EAAE,gBA+B/D,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,4CAA4C,6EAA6E,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SchemaExtensionItemRequestBuilderUriTemplate = exports.SchemaExtensionItemRequestBuilderRequestsMetadata = 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 SchemaExtensionItemRequestBuilderGetQueryParametersMapper = {
|
|
13
|
+
"expand": "%24expand",
|
|
14
|
+
"select": "%24select",
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Metadata for all the requests in the request builder.
|
|
18
|
+
*/
|
|
19
|
+
exports.SchemaExtensionItemRequestBuilderRequestsMetadata = {
|
|
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.createSchemaExtensionFromDiscriminatorValue,
|
|
36
|
+
queryParametersMapper: SchemaExtensionItemRequestBuilderGetQueryParametersMapper,
|
|
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.createSchemaExtensionFromDiscriminatorValue,
|
|
46
|
+
requestBodyContentType: "application/json",
|
|
47
|
+
requestBodySerializer: models_1.serializeSchemaExtension,
|
|
48
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Uri template for the request builder.
|
|
53
|
+
*/
|
|
54
|
+
exports.SchemaExtensionItemRequestBuilderUriTemplate = "{+baseurl}/schemaExtensions/{schemaExtension%2Did}{?%24select,%24expand}";
|
|
55
|
+
/* tslint:enable */
|
|
56
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type SchemaExtensionsRequestBuilder } from './schemaExtensions/';
|
|
2
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Instantiates a new SchemaExtensionsServiceClient and sets the default values.
|
|
5
|
+
* @param requestAdapter The request adapter to use to execute the requests.
|
|
6
|
+
*/
|
|
7
|
+
export declare function createSchemaExtensionsServiceClient(requestAdapter: RequestAdapter): SchemaExtensionsServiceClient;
|
|
8
|
+
/**
|
|
9
|
+
* The main entry point of the SDK, exposes the configuration and the fluent API.
|
|
10
|
+
*/
|
|
11
|
+
export interface SchemaExtensionsServiceClient extends BaseRequestBuilder<SchemaExtensionsServiceClient> {
|
|
12
|
+
/**
|
|
13
|
+
* Provides operations to manage the collection of schemaExtension entities.
|
|
14
|
+
*/
|
|
15
|
+
get schemaExtensions(): SchemaExtensionsRequestBuilder;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Metadata for all the navigation properties in the request builder.
|
|
19
|
+
*/
|
|
20
|
+
export declare const SchemaExtensionsServiceClientNavigationMetadata: Record<Exclude<keyof SchemaExtensionsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
21
|
+
/**
|
|
22
|
+
* Uri template for the request builder.
|
|
23
|
+
*/
|
|
24
|
+
export declare const SchemaExtensionsServiceClientUriTemplate = "{+baseurl}";
|
|
25
|
+
//# sourceMappingURL=schemaExtensionsServiceClient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemaExtensionsServiceClient.d.ts","sourceRoot":"","sources":["schemaExtensionsServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,EAA+I,KAAK,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AACvN,OAAO,EAA8E,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAM3O;;;GAGG;AACH,wBAAgB,mCAAmC,CAAC,cAAc,EAAE,cAAc,iCAejF;AACD;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,gBAAgB,IAAI,8BAA8B,CAAC;CAC1D;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAMxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,wCAAwC,eAAe,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SchemaExtensionsServiceClientUriTemplate = exports.SchemaExtensionsServiceClientNavigationMetadata = exports.createSchemaExtensionsServiceClient = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
const schemaExtensions_1 = require("./schemaExtensions/");
|
|
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 SchemaExtensionsServiceClient and sets the default values.
|
|
15
|
+
* @param requestAdapter The request adapter to use to execute the requests.
|
|
16
|
+
*/
|
|
17
|
+
function createSchemaExtensionsServiceClient(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.SchemaExtensionsServiceClientUriTemplate, exports.SchemaExtensionsServiceClientNavigationMetadata, undefined);
|
|
32
|
+
}
|
|
33
|
+
exports.createSchemaExtensionsServiceClient = createSchemaExtensionsServiceClient;
|
|
34
|
+
/**
|
|
35
|
+
* Metadata for all the navigation properties in the request builder.
|
|
36
|
+
*/
|
|
37
|
+
exports.SchemaExtensionsServiceClientNavigationMetadata = {
|
|
38
|
+
schemaExtensions: {
|
|
39
|
+
uriTemplate: schemaExtensions_1.SchemaExtensionsRequestBuilderUriTemplate,
|
|
40
|
+
requestsMetadata: schemaExtensions_1.SchemaExtensionsRequestBuilderRequestsMetadata,
|
|
41
|
+
navigationMetadata: schemaExtensions_1.SchemaExtensionsRequestBuilderNavigationMetadata,
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Uri template for the request builder.
|
|
46
|
+
*/
|
|
47
|
+
exports.SchemaExtensionsServiceClientUriTemplate = "{+baseurl}";
|
|
48
|
+
/* tslint:enable */
|
|
49
|
+
/* eslint-enable */
|
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","./schemaExtensions/count/index.ts","./schemaExtensions/item/index.ts","./schemaExtensions/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","./schemaExtensionsServiceClient.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":"ea19f38242e3ad21a58579c460253437019331adca02474c00159352e28f365e","signature":"e88ce09e735396e9354d98b1e268702374f06ecbb76a35b92fb2fdf883ed8a65","impliedFormat":1},{"version":"4a984dd57207e7cedf24554068a7a4a1d7ce9c8e0281b643279d460c0b727dec","signature":"0dd00574d4e820055aeb823f70451534b1204b33e626b6cd89c89ab5e4c3ed2e","impliedFormat":1},{"version":"9cce3175c8ecb56cdbd10814bfb0a83055d34903c5ace4ee027a745ca077f6e8","signature":"004ec4d2e56461acca7319f3ea19eea79b37304422e435c67a23dbb8d288d788","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":"3d60b8d0968d14ff0fb73d119853f31266b71ccf595754953b2f8141bc25613c","signature":"1f2edbf717acb0c9d343785fa54eec6386b41a285615377962ef816e048a7cf4","impliedFormat":1},{"version":"7ac01c8636f53dc28df8be8954e3df342b964b76cea480729ee4b4f09335e9c6","signature":"f0a4bf36cde71f9efd172b43727ae899135acbbe66ce7f88a730e7e568142308","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,154],173,174],"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],[155,156,157,158],[160,161,162,163],[165,166],[168,169,170,171],[108,134,140],[134,139],[139,140,141],[108,134,135,136],[135,137,138],[134,135,137],[178],[213],[214,219,247],[215,226,227,234,244,255],[215,216,226,234],[217,256],[218,219,227,235],[219,244,252],[220,222,226,234],[213,221],[222,223],[226],[224,226],[213,226],[226,227,228,244,255],[226,227,228,241,244,247],[211,214,260],[222,226,229,234,244,255],[226,227,229,230,234,244,252,255],[229,231,244,252,255],[178,179,212,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],[226,232],[233,255,260],[222,226,234,244],[235],[236],[213,237],[238,254,260],[239],[240],[226,241,242],[241,243,256,258],[214,226,244,245,246,247],[214,244,246],[244,245],[247],[248],[213,244],[226,250,251],[250,251],[219,234,244,252],[253],[234,254],[214,229,240,255],[219,256],[244,257],[233,258],[259],[214,219,226,228,237,244,255,258,260],[244,261],[264,303],[264,288,303],[303],[264],[264,289,303],[264,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],[289,303],[188,192,255],[188,244,255],[183],[185,188,252,255],[234,252],[263],[183,263],[185,188,234,255],[180,181,184,187,214,226,244,255],[180,186],[184,188,214,247,255,263],[214,263],[204,214,263],[182,183,263],[188],[182,183,184,185,186,187,188,189,190,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210],[188,195,196],[186,188,196,197],[187],[180,183,188],[188,192,196,197],[192],[186,188,191,255],[180,185,186,188,192,195],[214,244],[183,188,204,214,260,263],[144,154,173,174],[108,151],[108,149,151,152,153],[108,149,151],[108,154,159,164,167,172],[108,134,142],[109,143],[108,149],[52,108,145,146,147,148,150],[108,149,152,153],[108,154]],"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],[155,49],[157,40],[156,49],[158,40],[159,50],[164,51],[160,49],[162,40],[161,49],[163,40],[167,52],[165,49],[166,40],[172,53],[168,49],[170,40],[169,49],[171,40],[141,54],[140,55],[142,56],[137,57],[139,58],[138,59],[178,60],[179,60],[213,61],[214,62],[215,63],[216,64],[217,65],[218,66],[219,67],[220,68],[221,69],[222,70],[223,70],[225,71],[224,72],[226,73],[227,74],[228,75],[212,76],[229,77],[230,78],[231,79],[263,80],[232,81],[233,82],[234,83],[235,84],[236,85],[237,86],[238,87],[239,88],[240,89],[241,90],[242,90],[243,91],[244,92],[246,93],[245,94],[247,95],[248,96],[249,97],[250,98],[251,99],[252,100],[253,101],[254,102],[255,103],[256,104],[257,105],[258,106],[259,107],[260,108],[261,109],[288,110],[289,111],[264,112],[267,112],[286,110],[287,110],[277,110],[276,113],[274,110],[269,110],[282,110],[280,110],[284,110],[268,110],[281,110],[285,110],[270,110],[271,110],[283,110],[265,110],[272,110],[273,110],[275,110],[279,110],[290,114],[278,110],[266,110],[303,115],[297,114],[299,116],[298,114],[291,114],[292,114],[294,114],[296,114],[300,116],[301,116],[293,116],[295,116],[195,117],[202,118],[194,117],[209,119],[186,120],[185,121],[208,122],[203,123],[206,124],[188,125],[187,126],[183,127],[182,128],[205,129],[184,130],[189,131],[193,131],[211,132],[210,131],[197,133],[198,134],[200,135],[196,136],[199,137],[204,122],[191,138],[192,139],[201,140],[181,141],[207,142],[174,143],[152,144],[154,145],[153,146],[173,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],[155,49],[157,40],[156,49],[158,40],[159,50],[164,51],[160,49],[162,40],[161,49],[163,40],[167,52],[165,49],[166,40],[172,53],[168,49],[170,40],[169,49],[171,40],[141,54],[140,55],[142,56],[137,57],[139,58],[138,59],[178,60],[179,60],[213,61],[214,62],[215,63],[216,64],[217,65],[218,66],[219,67],[220,68],[221,69],[222,70],[223,70],[225,71],[224,72],[226,73],[227,74],[228,75],[212,76],[229,77],[230,78],[231,79],[263,80],[232,81],[233,82],[234,83],[235,84],[236,85],[237,86],[238,87],[239,88],[240,89],[241,90],[242,90],[243,91],[244,92],[246,93],[245,94],[247,95],[248,96],[249,97],[250,98],[251,99],[252,100],[253,101],[254,102],[255,103],[256,104],[257,105],[258,106],[259,107],[260,108],[261,109],[288,110],[289,111],[264,112],[267,112],[286,110],[287,110],[277,110],[276,113],[274,110],[269,110],[282,110],[280,110],[284,110],[268,110],[281,110],[285,110],[270,110],[271,110],[283,110],[265,110],[272,110],[273,110],[275,110],[279,110],[290,114],[278,110],[266,110],[303,115],[297,114],[299,116],[298,114],[291,114],[292,114],[294,114],[296,114],[300,116],[301,116],[293,116],[295,116],[195,117],[202,118],[194,117],[209,119],[186,120],[185,121],[208,122],[203,123],[206,124],[188,125],[187,126],[183,127],[182,128],[205,129],[184,130],[189,131],[193,131],[211,132],[210,131],[197,133],[198,134],[200,135],[196,136],[199,137],[204,122],[191,138],[192,139],[201,140],[181,141],[207,142],[174,143],[152,40],[154,152],[153,150],[173,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,155,157,156,158,159,164,160,162,161,163,167,165,166,172,168,170,169,171,141,140,142,137,135,139,138,136,175,176,177,178,179,213,214,215,216,217,218,219,220,221,222,223,225,224,226,227,228,212,262,229,230,231,263,232,233,234,235,236,237,238,239,240,241,242,243,244,246,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,288,289,264,267,286,287,277,276,274,269,282,280,284,268,281,285,270,271,283,265,272,273,275,279,290,278,266,303,302,297,299,298,291,292,294,296,300,301,293,295,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,195,202,194,209,186,185,208,203,206,188,187,183,182,205,184,189,190,193,180,211,210,197,198,200,196,199,204,191,192,201,181,207,174,152,154,153,173,143,109,144,150,145,146,149,151,147,148],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|