@microsoft/msgraph-sdk-agreements 1.0.0-preview.13 → 1.0.0-preview.14
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/agreements/index.d.ts +11 -9
- package/agreements/index.d.ts.map +1 -1
- package/agreements/index.js +9 -10
- package/agreements/item/acceptances/count/index.d.ts +7 -6
- package/agreements/item/acceptances/count/index.d.ts.map +1 -1
- package/agreements/item/acceptances/count/index.js +7 -7
- package/agreements/item/acceptances/index.d.ts +11 -9
- package/agreements/item/acceptances/index.d.ts.map +1 -1
- package/agreements/item/acceptances/index.js +9 -11
- package/agreements/item/acceptances/item/index.d.ts +12 -9
- package/agreements/item/acceptances/item/index.d.ts.map +1 -1
- package/agreements/item/acceptances/item/index.js +11 -11
- package/agreements/item/file/index.d.ts +12 -9
- package/agreements/item/file/index.d.ts.map +1 -1
- package/agreements/item/file/index.js +11 -12
- package/agreements/item/file/localizations/count/index.d.ts +7 -6
- package/agreements/item/file/localizations/count/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/count/index.js +7 -7
- package/agreements/item/file/localizations/index.d.ts +11 -9
- package/agreements/item/file/localizations/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/index.js +9 -11
- package/agreements/item/file/localizations/item/index.d.ts +12 -9
- package/agreements/item/file/localizations/item/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/item/index.js +11 -12
- package/agreements/item/file/localizations/item/versions/count/index.d.ts +7 -6
- package/agreements/item/file/localizations/item/versions/count/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/item/versions/count/index.js +7 -7
- package/agreements/item/file/localizations/item/versions/index.d.ts +11 -9
- package/agreements/item/file/localizations/item/versions/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/item/versions/index.js +9 -11
- package/agreements/item/file/localizations/item/versions/item/index.d.ts +12 -9
- package/agreements/item/file/localizations/item/versions/item/index.d.ts.map +1 -1
- package/agreements/item/file/localizations/item/versions/item/index.js +11 -11
- package/agreements/item/files/count/index.d.ts +7 -6
- package/agreements/item/files/count/index.d.ts.map +1 -1
- package/agreements/item/files/count/index.js +7 -7
- package/agreements/item/files/index.d.ts +11 -9
- package/agreements/item/files/index.d.ts.map +1 -1
- package/agreements/item/files/index.js +9 -11
- package/agreements/item/files/item/index.d.ts +12 -9
- package/agreements/item/files/item/index.d.ts.map +1 -1
- package/agreements/item/files/item/index.js +11 -12
- package/agreements/item/files/item/versions/count/index.d.ts +7 -6
- package/agreements/item/files/item/versions/count/index.d.ts.map +1 -1
- package/agreements/item/files/item/versions/count/index.js +7 -7
- package/agreements/item/files/item/versions/index.d.ts +11 -9
- package/agreements/item/files/item/versions/index.d.ts.map +1 -1
- package/agreements/item/files/item/versions/index.js +9 -11
- package/agreements/item/files/item/versions/item/index.d.ts +12 -9
- package/agreements/item/files/item/versions/item/index.d.ts.map +1 -1
- package/agreements/item/files/item/versions/item/index.js +11 -11
- package/agreements/item/index.d.ts +12 -9
- package/agreements/item/index.d.ts.map +1 -1
- package/agreements/item/index.js +11 -14
- package/agreementsServiceClient.d.ts.map +1 -1
- package/agreementsServiceClient.js +1 -2
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -6,13 +6,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
6
6
|
/**
|
|
7
7
|
* Get the number of the resource
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
-
* @returns
|
|
9
|
+
* @returns {Promise<number>}
|
|
10
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
11
|
*/
|
|
11
12
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
12
13
|
/**
|
|
13
14
|
* Get the number of the resource
|
|
14
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
-
* @returns
|
|
16
|
+
* @returns {RequestInformation}
|
|
16
17
|
*/
|
|
17
18
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
18
19
|
}
|
|
@@ -29,12 +30,12 @@ export interface CountRequestBuilderGetQueryParameters {
|
|
|
29
30
|
*/
|
|
30
31
|
search?: string;
|
|
31
32
|
}
|
|
32
|
-
/**
|
|
33
|
-
* Metadata for all the requests in the request builder.
|
|
34
|
-
*/
|
|
35
|
-
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
36
33
|
/**
|
|
37
34
|
* Uri template for the request builder.
|
|
38
35
|
*/
|
|
39
36
|
export declare const CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/$count{?%24filter,%24search}";
|
|
37
|
+
/**
|
|
38
|
+
* Metadata for all the requests in the request builder.
|
|
39
|
+
*/
|
|
40
|
+
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
40
41
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +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
|
|
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;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,2FAA2F,CAAC;AAQvI;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
7
7
|
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
8
|
+
/**
|
|
9
|
+
* Uri template for the request builder.
|
|
10
|
+
*/
|
|
11
|
+
exports.CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/$count{?%24filter,%24search}";
|
|
8
12
|
/**
|
|
9
13
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
10
14
|
*/
|
|
@@ -17,19 +21,15 @@ const CountRequestBuilderGetQueryParametersMapper = {
|
|
|
17
21
|
*/
|
|
18
22
|
exports.CountRequestBuilderRequestsMetadata = {
|
|
19
23
|
get: {
|
|
24
|
+
uriTemplate: exports.CountRequestBuilderUriTemplate,
|
|
20
25
|
responseBodyContentType: "text/plain;q=0.9",
|
|
21
26
|
errorMappings: {
|
|
22
|
-
|
|
23
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
27
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
24
28
|
},
|
|
25
29
|
adapterMethodName: "sendPrimitiveAsync",
|
|
26
30
|
responseBodyFactory: "number",
|
|
27
31
|
queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
|
|
28
32
|
},
|
|
29
33
|
};
|
|
30
|
-
/**
|
|
31
|
-
* Uri template for the request builder.
|
|
32
|
-
*/
|
|
33
|
-
exports.CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/$count{?%24filter,%24search}";
|
|
34
34
|
/* tslint:enable */
|
|
35
35
|
/* eslint-enable */
|
|
@@ -13,13 +13,14 @@ export interface LocalizationsRequestBuilder extends BaseRequestBuilder<Localiza
|
|
|
13
13
|
/**
|
|
14
14
|
* Provides operations to manage the localizations property of the microsoft.graph.agreementFile entity.
|
|
15
15
|
* @param agreementFileLocalizationId The unique identifier of agreementFileLocalization
|
|
16
|
-
* @returns
|
|
16
|
+
* @returns {AgreementFileLocalizationItemRequestBuilder}
|
|
17
17
|
*/
|
|
18
18
|
byAgreementFileLocalizationId(agreementFileLocalizationId: string): AgreementFileLocalizationItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
20
|
* Get a list of the default and localized agreement files.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
-
* @returns
|
|
22
|
+
* @returns {Promise<AgreementFileLocalizationCollectionResponse>}
|
|
23
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
23
24
|
* @see {@link https://learn.microsoft.com/graph/api/agreementfile-list-localizations?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<LocalizationsRequestBuilderGetQueryParameters> | undefined): Promise<AgreementFileLocalizationCollectionResponse | undefined>;
|
|
@@ -27,20 +28,21 @@ export interface LocalizationsRequestBuilder extends BaseRequestBuilder<Localiza
|
|
|
27
28
|
* Create new navigation property to localizations for agreements
|
|
28
29
|
* @param body The request body
|
|
29
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
|
-
* @returns
|
|
31
|
+
* @returns {Promise<AgreementFileLocalization>}
|
|
32
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
33
|
*/
|
|
32
34
|
post(body: AgreementFileLocalization, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AgreementFileLocalization | undefined>;
|
|
33
35
|
/**
|
|
34
36
|
* Get a list of the default and localized agreement files.
|
|
35
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
|
-
* @returns
|
|
38
|
+
* @returns {RequestInformation}
|
|
37
39
|
*/
|
|
38
40
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<LocalizationsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
39
41
|
/**
|
|
40
42
|
* Create new navigation property to localizations for agreements
|
|
41
43
|
* @param body The request body
|
|
42
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
43
|
-
* @returns
|
|
45
|
+
* @returns {RequestInformation}
|
|
44
46
|
*/
|
|
45
47
|
toPostRequestInformation(body: AgreementFileLocalization, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
46
48
|
}
|
|
@@ -81,6 +83,10 @@ export interface LocalizationsRequestBuilderGetQueryParameters {
|
|
|
81
83
|
*/
|
|
82
84
|
top?: number;
|
|
83
85
|
}
|
|
86
|
+
/**
|
|
87
|
+
* Uri template for the request builder.
|
|
88
|
+
*/
|
|
89
|
+
export declare const LocalizationsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
84
90
|
/**
|
|
85
91
|
* Metadata for all the navigation properties in the request builder.
|
|
86
92
|
*/
|
|
@@ -89,8 +95,4 @@ export declare const LocalizationsRequestBuilderNavigationMetadata: Record<Exclu
|
|
|
89
95
|
* Metadata for all the requests in the request builder.
|
|
90
96
|
*/
|
|
91
97
|
export declare const LocalizationsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
92
|
-
/**
|
|
93
|
-
* Uri template for the request builder.
|
|
94
|
-
*/
|
|
95
|
-
export declare const LocalizationsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
96
98
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAsK,KAAK,yBAAyB,EAAE,KAAK,2CAA2C,EAAE,MAAM,gCAAgC,CAAC;AAEtS,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAsK,KAAK,yBAAyB,EAAE,KAAK,2CAA2C,EAAE,MAAM,gCAAgC,CAAC;AAEtS,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAA8H,KAAK,2CAA2C,EAAE,MAAM,SAAS,CAAC;AACvM,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,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,6BAA6B,CAAC,2BAA2B,EAAE,MAAM,GAAI,2CAA2C,CAAC;IAClH;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2CAA2C,GAAG,SAAS,CAAC,CAAC;IAChL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IACzJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpJ;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;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,sCAAsC,2IAA2I,CAAC;AAc/L;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBAuBzD,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.LocalizationsRequestBuilderRequestsMetadata = exports.LocalizationsRequestBuilderNavigationMetadata = exports.LocalizationsRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
@@ -8,6 +8,10 @@ const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
|
8
8
|
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
9
|
const count_1 = require("./count/");
|
|
10
10
|
const item_1 = require("./item/");
|
|
11
|
+
/**
|
|
12
|
+
* Uri template for the request builder.
|
|
13
|
+
*/
|
|
14
|
+
exports.LocalizationsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
11
15
|
/**
|
|
12
16
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
13
17
|
*/
|
|
@@ -26,13 +30,11 @@ const LocalizationsRequestBuilderGetQueryParametersMapper = {
|
|
|
26
30
|
*/
|
|
27
31
|
exports.LocalizationsRequestBuilderNavigationMetadata = {
|
|
28
32
|
byAgreementFileLocalizationId: {
|
|
29
|
-
uriTemplate: item_1.AgreementFileLocalizationItemRequestBuilderUriTemplate,
|
|
30
33
|
requestsMetadata: item_1.AgreementFileLocalizationItemRequestBuilderRequestsMetadata,
|
|
31
34
|
navigationMetadata: item_1.AgreementFileLocalizationItemRequestBuilderNavigationMetadata,
|
|
32
35
|
pathParametersMappings: ["agreementFileLocalization%2Did"],
|
|
33
36
|
},
|
|
34
37
|
count: {
|
|
35
|
-
uriTemplate: count_1.CountRequestBuilderUriTemplate,
|
|
36
38
|
requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
|
|
37
39
|
},
|
|
38
40
|
};
|
|
@@ -41,20 +43,20 @@ exports.LocalizationsRequestBuilderNavigationMetadata = {
|
|
|
41
43
|
*/
|
|
42
44
|
exports.LocalizationsRequestBuilderRequestsMetadata = {
|
|
43
45
|
get: {
|
|
46
|
+
uriTemplate: exports.LocalizationsRequestBuilderUriTemplate,
|
|
44
47
|
responseBodyContentType: "application/json",
|
|
45
48
|
errorMappings: {
|
|
46
|
-
|
|
47
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
49
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
48
50
|
},
|
|
49
51
|
adapterMethodName: "sendAsync",
|
|
50
52
|
responseBodyFactory: models_1.createAgreementFileLocalizationCollectionResponseFromDiscriminatorValue,
|
|
51
53
|
queryParametersMapper: LocalizationsRequestBuilderGetQueryParametersMapper,
|
|
52
54
|
},
|
|
53
55
|
post: {
|
|
56
|
+
uriTemplate: exports.LocalizationsRequestBuilderUriTemplate,
|
|
54
57
|
responseBodyContentType: "application/json",
|
|
55
58
|
errorMappings: {
|
|
56
|
-
|
|
57
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
59
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
58
60
|
},
|
|
59
61
|
adapterMethodName: "sendAsync",
|
|
60
62
|
responseBodyFactory: models_1.createAgreementFileLocalizationFromDiscriminatorValue,
|
|
@@ -63,9 +65,5 @@ exports.LocalizationsRequestBuilderRequestsMetadata = {
|
|
|
63
65
|
requestInformationContentSetMethod: "setContentFromParsable",
|
|
64
66
|
},
|
|
65
67
|
};
|
|
66
|
-
/**
|
|
67
|
-
* Uri template for the request builder.
|
|
68
|
-
*/
|
|
69
|
-
exports.LocalizationsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
70
68
|
/* tslint:enable */
|
|
71
69
|
/* eslint-enable */
|
|
@@ -12,38 +12,41 @@ export interface AgreementFileLocalizationItemRequestBuilder extends BaseRequest
|
|
|
12
12
|
/**
|
|
13
13
|
* Delete navigation property localizations for agreements
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
15
16
|
*/
|
|
16
17
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
17
18
|
/**
|
|
18
19
|
* The localized version of the terms of use agreement files attached to the agreement.
|
|
19
20
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
20
|
-
* @returns
|
|
21
|
+
* @returns {Promise<AgreementFileLocalization>}
|
|
22
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
23
|
*/
|
|
22
24
|
get(requestConfiguration?: RequestConfiguration<AgreementFileLocalizationItemRequestBuilderGetQueryParameters> | undefined): Promise<AgreementFileLocalization | undefined>;
|
|
23
25
|
/**
|
|
24
26
|
* Update the navigation property localizations in agreements
|
|
25
27
|
* @param body The request body
|
|
26
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
|
-
* @returns
|
|
29
|
+
* @returns {Promise<AgreementFileLocalization>}
|
|
30
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
31
|
*/
|
|
29
32
|
patch(body: AgreementFileLocalization, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AgreementFileLocalization | undefined>;
|
|
30
33
|
/**
|
|
31
34
|
* Delete navigation property localizations for agreements
|
|
32
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
|
-
* @returns
|
|
36
|
+
* @returns {RequestInformation}
|
|
34
37
|
*/
|
|
35
38
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
39
|
/**
|
|
37
40
|
* The localized version of the terms of use agreement files attached to the agreement.
|
|
38
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
|
-
* @returns
|
|
42
|
+
* @returns {RequestInformation}
|
|
40
43
|
*/
|
|
41
44
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AgreementFileLocalizationItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
45
|
/**
|
|
43
46
|
* Update the navigation property localizations in agreements
|
|
44
47
|
* @param body The request body
|
|
45
48
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
|
-
* @returns
|
|
49
|
+
* @returns {RequestInformation}
|
|
47
50
|
*/
|
|
48
51
|
toPatchRequestInformation(body: AgreementFileLocalization, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
52
|
}
|
|
@@ -60,6 +63,10 @@ export interface AgreementFileLocalizationItemRequestBuilderGetQueryParameters {
|
|
|
60
63
|
*/
|
|
61
64
|
select?: string[];
|
|
62
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* Uri template for the request builder.
|
|
68
|
+
*/
|
|
69
|
+
export declare const AgreementFileLocalizationItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}{?%24expand,%24select}";
|
|
63
70
|
/**
|
|
64
71
|
* Metadata for all the navigation properties in the request builder.
|
|
65
72
|
*/
|
|
@@ -68,8 +75,4 @@ export declare const AgreementFileLocalizationItemRequestBuilderNavigationMetada
|
|
|
68
75
|
* Metadata for all the requests in the request builder.
|
|
69
76
|
*/
|
|
70
77
|
export declare const AgreementFileLocalizationItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
71
|
-
/**
|
|
72
|
-
* Uri template for the request builder.
|
|
73
|
-
*/
|
|
74
|
-
export declare const AgreementFileLocalizationItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}{?%24expand,%24select}";
|
|
75
78
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6F,KAAK,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3K,OAAO,EAAE,KAAK,sBAAsB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6F,KAAK,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3K,OAAO,EAAE,KAAK,sBAAsB,EAAoF,MAAM,aAAa,CAAC;AAC5I,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,2CAA4C,SAAQ,kBAAkB,CAAC,2CAA2C,CAAC;IAChI;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;;;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,6DAA6D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;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,6DAA6D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,6DAA6D;IAC1E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,sDAAsD,qHAAqH,CAAC;AAQzL;;GAEG;AACH,eAAO,MAAM,6DAA6D,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2CAA2C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAKpM,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2DAA2D,EAAE,gBA+BzE,CAAC"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.AgreementFileLocalizationItemRequestBuilderRequestsMetadata = exports.AgreementFileLocalizationItemRequestBuilderNavigationMetadata = exports.AgreementFileLocalizationItemRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
7
7
|
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
8
8
|
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
9
|
const versions_1 = require("./versions/");
|
|
10
|
+
/**
|
|
11
|
+
* Uri template for the request builder.
|
|
12
|
+
*/
|
|
13
|
+
exports.AgreementFileLocalizationItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}{?%24expand,%24select}";
|
|
10
14
|
/**
|
|
11
15
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
12
16
|
*/
|
|
@@ -19,7 +23,6 @@ const AgreementFileLocalizationItemRequestBuilderGetQueryParametersMapper = {
|
|
|
19
23
|
*/
|
|
20
24
|
exports.AgreementFileLocalizationItemRequestBuilderNavigationMetadata = {
|
|
21
25
|
versions: {
|
|
22
|
-
uriTemplate: versions_1.VersionsRequestBuilderUriTemplate,
|
|
23
26
|
requestsMetadata: versions_1.VersionsRequestBuilderRequestsMetadata,
|
|
24
27
|
navigationMetadata: versions_1.VersionsRequestBuilderNavigationMetadata,
|
|
25
28
|
},
|
|
@@ -29,28 +32,28 @@ exports.AgreementFileLocalizationItemRequestBuilderNavigationMetadata = {
|
|
|
29
32
|
*/
|
|
30
33
|
exports.AgreementFileLocalizationItemRequestBuilderRequestsMetadata = {
|
|
31
34
|
delete: {
|
|
35
|
+
uriTemplate: exports.AgreementFileLocalizationItemRequestBuilderUriTemplate,
|
|
32
36
|
responseBodyContentType: "application/json",
|
|
33
37
|
errorMappings: {
|
|
34
|
-
|
|
35
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
38
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
36
39
|
},
|
|
37
40
|
adapterMethodName: "sendNoResponseContentAsync",
|
|
38
41
|
},
|
|
39
42
|
get: {
|
|
43
|
+
uriTemplate: exports.AgreementFileLocalizationItemRequestBuilderUriTemplate,
|
|
40
44
|
responseBodyContentType: "application/json",
|
|
41
45
|
errorMappings: {
|
|
42
|
-
|
|
43
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
46
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
44
47
|
},
|
|
45
48
|
adapterMethodName: "sendAsync",
|
|
46
49
|
responseBodyFactory: models_1.createAgreementFileLocalizationFromDiscriminatorValue,
|
|
47
50
|
queryParametersMapper: AgreementFileLocalizationItemRequestBuilderGetQueryParametersMapper,
|
|
48
51
|
},
|
|
49
52
|
patch: {
|
|
53
|
+
uriTemplate: exports.AgreementFileLocalizationItemRequestBuilderUriTemplate,
|
|
50
54
|
responseBodyContentType: "application/json",
|
|
51
55
|
errorMappings: {
|
|
52
|
-
|
|
53
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
56
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
54
57
|
},
|
|
55
58
|
adapterMethodName: "sendAsync",
|
|
56
59
|
responseBodyFactory: models_1.createAgreementFileLocalizationFromDiscriminatorValue,
|
|
@@ -59,9 +62,5 @@ exports.AgreementFileLocalizationItemRequestBuilderRequestsMetadata = {
|
|
|
59
62
|
requestInformationContentSetMethod: "setContentFromParsable",
|
|
60
63
|
},
|
|
61
64
|
};
|
|
62
|
-
/**
|
|
63
|
-
* Uri template for the request builder.
|
|
64
|
-
*/
|
|
65
|
-
exports.AgreementFileLocalizationItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}{?%24expand,%24select}";
|
|
66
65
|
/* tslint:enable */
|
|
67
66
|
/* eslint-enable */
|
|
@@ -6,13 +6,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
6
6
|
/**
|
|
7
7
|
* Get the number of the resource
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
-
* @returns
|
|
9
|
+
* @returns {Promise<number>}
|
|
10
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
11
|
*/
|
|
11
12
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
12
13
|
/**
|
|
13
14
|
* Get the number of the resource
|
|
14
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
-
* @returns
|
|
16
|
+
* @returns {RequestInformation}
|
|
16
17
|
*/
|
|
17
18
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
18
19
|
}
|
|
@@ -29,12 +30,12 @@ export interface CountRequestBuilderGetQueryParameters {
|
|
|
29
30
|
*/
|
|
30
31
|
search?: string;
|
|
31
32
|
}
|
|
32
|
-
/**
|
|
33
|
-
* Metadata for all the requests in the request builder.
|
|
34
|
-
*/
|
|
35
|
-
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
36
33
|
/**
|
|
37
34
|
* Uri template for the request builder.
|
|
38
35
|
*/
|
|
39
36
|
export declare const CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions/$count{?%24filter,%24search}";
|
|
37
|
+
/**
|
|
38
|
+
* Metadata for all the requests in the request builder.
|
|
39
|
+
*/
|
|
40
|
+
export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
40
41
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +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
|
|
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;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,qIAAqI,CAAC;AAQjL;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
7
7
|
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
8
|
+
/**
|
|
9
|
+
* Uri template for the request builder.
|
|
10
|
+
*/
|
|
11
|
+
exports.CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions/$count{?%24filter,%24search}";
|
|
8
12
|
/**
|
|
9
13
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
10
14
|
*/
|
|
@@ -17,19 +21,15 @@ const CountRequestBuilderGetQueryParametersMapper = {
|
|
|
17
21
|
*/
|
|
18
22
|
exports.CountRequestBuilderRequestsMetadata = {
|
|
19
23
|
get: {
|
|
24
|
+
uriTemplate: exports.CountRequestBuilderUriTemplate,
|
|
20
25
|
responseBodyContentType: "text/plain;q=0.9",
|
|
21
26
|
errorMappings: {
|
|
22
|
-
|
|
23
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
27
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
24
28
|
},
|
|
25
29
|
adapterMethodName: "sendPrimitiveAsync",
|
|
26
30
|
responseBodyFactory: "number",
|
|
27
31
|
queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
|
|
28
32
|
},
|
|
29
33
|
};
|
|
30
|
-
/**
|
|
31
|
-
* Uri template for the request builder.
|
|
32
|
-
*/
|
|
33
|
-
exports.CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions/$count{?%24filter,%24search}";
|
|
34
34
|
/* tslint:enable */
|
|
35
35
|
/* eslint-enable */
|
|
@@ -13,33 +13,35 @@ export interface VersionsRequestBuilder extends BaseRequestBuilder<VersionsReque
|
|
|
13
13
|
/**
|
|
14
14
|
* Provides operations to manage the versions property of the microsoft.graph.agreementFileLocalization entity.
|
|
15
15
|
* @param agreementFileVersionId The unique identifier of agreementFileVersion
|
|
16
|
-
* @returns
|
|
16
|
+
* @returns {AgreementFileVersionItemRequestBuilder}
|
|
17
17
|
*/
|
|
18
18
|
byAgreementFileVersionId(agreementFileVersionId: string): AgreementFileVersionItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
20
|
* Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
-
* @returns
|
|
22
|
+
* @returns {Promise<AgreementFileVersionCollectionResponse>}
|
|
23
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
23
24
|
*/
|
|
24
25
|
get(requestConfiguration?: RequestConfiguration<VersionsRequestBuilderGetQueryParameters> | undefined): Promise<AgreementFileVersionCollectionResponse | undefined>;
|
|
25
26
|
/**
|
|
26
27
|
* Create new navigation property to versions for agreements
|
|
27
28
|
* @param body The request body
|
|
28
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
|
-
* @returns
|
|
30
|
+
* @returns {Promise<AgreementFileVersion>}
|
|
31
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
30
32
|
*/
|
|
31
33
|
post(body: AgreementFileVersion, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AgreementFileVersion | undefined>;
|
|
32
34
|
/**
|
|
33
35
|
* Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant.
|
|
34
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
|
-
* @returns
|
|
37
|
+
* @returns {RequestInformation}
|
|
36
38
|
*/
|
|
37
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<VersionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
38
40
|
/**
|
|
39
41
|
* Create new navigation property to versions for agreements
|
|
40
42
|
* @param body The request body
|
|
41
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
|
-
* @returns
|
|
44
|
+
* @returns {RequestInformation}
|
|
43
45
|
*/
|
|
44
46
|
toPostRequestInformation(body: AgreementFileVersion, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
45
47
|
}
|
|
@@ -80,6 +82,10 @@ export interface VersionsRequestBuilderGetQueryParameters {
|
|
|
80
82
|
*/
|
|
81
83
|
top?: number;
|
|
82
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* Uri template for the request builder.
|
|
87
|
+
*/
|
|
88
|
+
export declare const VersionsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
83
89
|
/**
|
|
84
90
|
* Metadata for all the navigation properties in the request builder.
|
|
85
91
|
*/
|
|
@@ -88,8 +94,4 @@ export declare const VersionsRequestBuilderNavigationMetadata: Record<Exclude<ke
|
|
|
88
94
|
* Metadata for all the requests in the request builder.
|
|
89
95
|
*/
|
|
90
96
|
export declare const VersionsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
91
|
-
/**
|
|
92
|
-
* Uri template for the request builder.
|
|
93
|
-
*/
|
|
94
|
-
export declare const VersionsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
95
97
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAE7Q,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAE7Q,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAA0D,KAAK,sCAAsC,EAAE,MAAM,SAAS,CAAC;AAC9H,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,sBAAuB,SAAQ,kBAAkB,CAAC,sBAAsB,CAAC;IACtF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wBAAwB,CAAC,sBAAsB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IACnG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wCAAwC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAC/I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wCAAwC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/I;AACD;;GAEG;AACH,MAAM,WAAW,wCAAwC;IACrD;;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,iCAAiC,qLAAqL,CAAC;AAcpO;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,sBAAsB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ1J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,sCAAsC,EAAE,gBAuBpD,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.VersionsRequestBuilderRequestsMetadata = exports.VersionsRequestBuilderNavigationMetadata = exports.VersionsRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
@@ -8,6 +8,10 @@ const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
|
8
8
|
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
9
9
|
const count_1 = require("./count/");
|
|
10
10
|
const item_1 = require("./item/");
|
|
11
|
+
/**
|
|
12
|
+
* Uri template for the request builder.
|
|
13
|
+
*/
|
|
14
|
+
exports.VersionsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
11
15
|
/**
|
|
12
16
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
13
17
|
*/
|
|
@@ -26,12 +30,10 @@ const VersionsRequestBuilderGetQueryParametersMapper = {
|
|
|
26
30
|
*/
|
|
27
31
|
exports.VersionsRequestBuilderNavigationMetadata = {
|
|
28
32
|
byAgreementFileVersionId: {
|
|
29
|
-
uriTemplate: item_1.AgreementFileVersionItemRequestBuilderUriTemplate,
|
|
30
33
|
requestsMetadata: item_1.AgreementFileVersionItemRequestBuilderRequestsMetadata,
|
|
31
34
|
pathParametersMappings: ["agreementFileVersion%2Did"],
|
|
32
35
|
},
|
|
33
36
|
count: {
|
|
34
|
-
uriTemplate: count_1.CountRequestBuilderUriTemplate,
|
|
35
37
|
requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
|
|
36
38
|
},
|
|
37
39
|
};
|
|
@@ -40,20 +42,20 @@ exports.VersionsRequestBuilderNavigationMetadata = {
|
|
|
40
42
|
*/
|
|
41
43
|
exports.VersionsRequestBuilderRequestsMetadata = {
|
|
42
44
|
get: {
|
|
45
|
+
uriTemplate: exports.VersionsRequestBuilderUriTemplate,
|
|
43
46
|
responseBodyContentType: "application/json",
|
|
44
47
|
errorMappings: {
|
|
45
|
-
|
|
46
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
48
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
47
49
|
},
|
|
48
50
|
adapterMethodName: "sendAsync",
|
|
49
51
|
responseBodyFactory: models_1.createAgreementFileVersionCollectionResponseFromDiscriminatorValue,
|
|
50
52
|
queryParametersMapper: VersionsRequestBuilderGetQueryParametersMapper,
|
|
51
53
|
},
|
|
52
54
|
post: {
|
|
55
|
+
uriTemplate: exports.VersionsRequestBuilderUriTemplate,
|
|
53
56
|
responseBodyContentType: "application/json",
|
|
54
57
|
errorMappings: {
|
|
55
|
-
|
|
56
|
-
_5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
58
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
57
59
|
},
|
|
58
60
|
adapterMethodName: "sendAsync",
|
|
59
61
|
responseBodyFactory: models_1.createAgreementFileVersionFromDiscriminatorValue,
|
|
@@ -62,9 +64,5 @@ exports.VersionsRequestBuilderRequestsMetadata = {
|
|
|
62
64
|
requestInformationContentSetMethod: "setContentFromParsable",
|
|
63
65
|
},
|
|
64
66
|
};
|
|
65
|
-
/**
|
|
66
|
-
* Uri template for the request builder.
|
|
67
|
-
*/
|
|
68
|
-
exports.VersionsRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/file/localizations/{agreementFileLocalization%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
69
67
|
/* tslint:enable */
|
|
70
68
|
/* eslint-enable */
|