@microsoft/msgraph-sdk-agreements 1.0.0-preview.13 → 1.0.0-preview.15

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.
Files changed (58) hide show
  1. package/agreements/index.d.ts +11 -9
  2. package/agreements/index.d.ts.map +1 -1
  3. package/agreements/index.js +9 -10
  4. package/agreements/item/acceptances/count/index.d.ts +7 -6
  5. package/agreements/item/acceptances/count/index.d.ts.map +1 -1
  6. package/agreements/item/acceptances/count/index.js +7 -7
  7. package/agreements/item/acceptances/index.d.ts +11 -9
  8. package/agreements/item/acceptances/index.d.ts.map +1 -1
  9. package/agreements/item/acceptances/index.js +9 -11
  10. package/agreements/item/acceptances/item/index.d.ts +12 -9
  11. package/agreements/item/acceptances/item/index.d.ts.map +1 -1
  12. package/agreements/item/acceptances/item/index.js +11 -11
  13. package/agreements/item/file/index.d.ts +12 -9
  14. package/agreements/item/file/index.d.ts.map +1 -1
  15. package/agreements/item/file/index.js +11 -12
  16. package/agreements/item/file/localizations/count/index.d.ts +7 -6
  17. package/agreements/item/file/localizations/count/index.d.ts.map +1 -1
  18. package/agreements/item/file/localizations/count/index.js +7 -7
  19. package/agreements/item/file/localizations/index.d.ts +11 -9
  20. package/agreements/item/file/localizations/index.d.ts.map +1 -1
  21. package/agreements/item/file/localizations/index.js +9 -11
  22. package/agreements/item/file/localizations/item/index.d.ts +12 -9
  23. package/agreements/item/file/localizations/item/index.d.ts.map +1 -1
  24. package/agreements/item/file/localizations/item/index.js +11 -12
  25. package/agreements/item/file/localizations/item/versions/count/index.d.ts +7 -6
  26. package/agreements/item/file/localizations/item/versions/count/index.d.ts.map +1 -1
  27. package/agreements/item/file/localizations/item/versions/count/index.js +7 -7
  28. package/agreements/item/file/localizations/item/versions/index.d.ts +11 -9
  29. package/agreements/item/file/localizations/item/versions/index.d.ts.map +1 -1
  30. package/agreements/item/file/localizations/item/versions/index.js +9 -11
  31. package/agreements/item/file/localizations/item/versions/item/index.d.ts +12 -9
  32. package/agreements/item/file/localizations/item/versions/item/index.d.ts.map +1 -1
  33. package/agreements/item/file/localizations/item/versions/item/index.js +11 -11
  34. package/agreements/item/files/count/index.d.ts +7 -6
  35. package/agreements/item/files/count/index.d.ts.map +1 -1
  36. package/agreements/item/files/count/index.js +7 -7
  37. package/agreements/item/files/index.d.ts +11 -9
  38. package/agreements/item/files/index.d.ts.map +1 -1
  39. package/agreements/item/files/index.js +9 -11
  40. package/agreements/item/files/item/index.d.ts +12 -9
  41. package/agreements/item/files/item/index.d.ts.map +1 -1
  42. package/agreements/item/files/item/index.js +11 -12
  43. package/agreements/item/files/item/versions/count/index.d.ts +7 -6
  44. package/agreements/item/files/item/versions/count/index.d.ts.map +1 -1
  45. package/agreements/item/files/item/versions/count/index.js +7 -7
  46. package/agreements/item/files/item/versions/index.d.ts +11 -9
  47. package/agreements/item/files/item/versions/index.d.ts.map +1 -1
  48. package/agreements/item/files/item/versions/index.js +9 -11
  49. package/agreements/item/files/item/versions/item/index.d.ts +12 -9
  50. package/agreements/item/files/item/versions/item/index.d.ts.map +1 -1
  51. package/agreements/item/files/item/versions/item/index.js +11 -11
  52. package/agreements/item/index.d.ts +12 -9
  53. package/agreements/item/index.d.ts.map +1 -1
  54. package/agreements/item/index.js +11 -14
  55. package/agreementsServiceClient.d.ts.map +1 -1
  56. package/agreementsServiceClient.js +1 -2
  57. package/package.json +3 -3
  58. package/tsconfig.tsbuildinfo +1 -1
@@ -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 a AgreementFileVersionItemRequestBuilder
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 a Promise of AgreementFileVersionCollectionResponse
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 a Promise of AgreementFileVersion
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 a RequestInformation
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 a RequestInformation
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}/files/{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}/files/{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,EAAuE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzH,OAAO,EAA6G,KAAK,sCAAsC,EAAE,MAAM,SAAS,CAAC;AACjL,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;;;;OAIG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wCAAwC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;OAKG;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,wCAAwC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,sBAAsB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAU1J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,sCAAsC,EAAE,gBAuBpD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iCAAiC,wKAAwK,CAAC"}
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,wKAAwK,CAAC;AAcvN;;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.VersionsRequestBuilderUriTemplate = exports.VersionsRequestBuilderRequestsMetadata = exports.VersionsRequestBuilderNavigationMetadata = void 0;
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}/files/{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
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
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
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
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}/files/{agreementFileLocalization%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
69
67
  /* tslint:enable */
70
68
  /* eslint-enable */
@@ -7,38 +7,41 @@ export interface AgreementFileVersionItemRequestBuilder extends BaseRequestBuild
7
7
  /**
8
8
  * Delete navigation property versions for agreements
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
10
11
  */
11
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12
13
  /**
13
14
  * Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant.
14
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
- * @returns a Promise of AgreementFileVersion
16
+ * @returns {Promise<AgreementFileVersion>}
17
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
16
18
  */
17
19
  get(requestConfiguration?: RequestConfiguration<AgreementFileVersionItemRequestBuilderGetQueryParameters> | undefined): Promise<AgreementFileVersion | undefined>;
18
20
  /**
19
21
  * Update the navigation property versions in agreements
20
22
  * @param body The request body
21
23
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
- * @returns a Promise of AgreementFileVersion
24
+ * @returns {Promise<AgreementFileVersion>}
25
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
23
26
  */
24
27
  patch(body: AgreementFileVersion, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AgreementFileVersion | undefined>;
25
28
  /**
26
29
  * Delete navigation property versions for agreements
27
30
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
28
- * @returns a RequestInformation
31
+ * @returns {RequestInformation}
29
32
  */
30
33
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
31
34
  /**
32
35
  * Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant.
33
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
- * @returns a RequestInformation
37
+ * @returns {RequestInformation}
35
38
  */
36
39
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<AgreementFileVersionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
40
  /**
38
41
  * Update the navigation property versions in agreements
39
42
  * @param body The request body
40
43
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
- * @returns a RequestInformation
44
+ * @returns {RequestInformation}
42
45
  */
43
46
  toPatchRequestInformation(body: AgreementFileVersion, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
44
47
  }
@@ -55,12 +58,12 @@ export interface AgreementFileVersionItemRequestBuilderGetQueryParameters {
55
58
  */
56
59
  select?: string[];
57
60
  }
58
- /**
59
- * Metadata for all the requests in the request builder.
60
- */
61
- export declare const AgreementFileVersionItemRequestBuilderRequestsMetadata: RequestsMetadata;
62
61
  /**
63
62
  * Uri template for the request builder.
64
63
  */
65
64
  export declare const AgreementFileVersionItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/files/{agreementFileLocalization%2Did}/versions/{agreementFileVersion%2Did}{?%24expand,%24select}";
65
+ /**
66
+ * Metadata for all the requests in the request builder.
67
+ */
68
+ export declare const AgreementFileVersionItemRequestBuilderRequestsMetadata: RequestsMetadata;
66
69
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAE5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;;OAGG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;OAIG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IACpK;;;;;OAKG;IACF,KAAK,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;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,wDAAwD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,wDAAwD;IACrE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAQD;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBA+BpE,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iDAAiD,6IAA6I,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAE5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;;;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,wDAAwD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IACpK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;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,wDAAwD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,wDAAwD;IACrE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,iDAAiD,6IAA6I,CAAC;AAQ5M;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBA+BpE,CAAC"}
@@ -1,11 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AgreementFileVersionItemRequestBuilderUriTemplate = exports.AgreementFileVersionItemRequestBuilderRequestsMetadata = void 0;
3
+ exports.AgreementFileVersionItemRequestBuilderRequestsMetadata = exports.AgreementFileVersionItemRequestBuilderUriTemplate = 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
+ /**
10
+ * Uri template for the request builder.
11
+ */
12
+ exports.AgreementFileVersionItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/files/{agreementFileLocalization%2Did}/versions/{agreementFileVersion%2Did}{?%24expand,%24select}";
9
13
  /**
10
14
  * Mapper for query parameters from symbol name to serialization name represented as a constant.
11
15
  */
@@ -18,28 +22,28 @@ const AgreementFileVersionItemRequestBuilderGetQueryParametersMapper = {
18
22
  */
19
23
  exports.AgreementFileVersionItemRequestBuilderRequestsMetadata = {
20
24
  delete: {
25
+ uriTemplate: exports.AgreementFileVersionItemRequestBuilderUriTemplate,
21
26
  responseBodyContentType: "application/json",
22
27
  errorMappings: {
23
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
24
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
28
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
25
29
  },
26
30
  adapterMethodName: "sendNoResponseContentAsync",
27
31
  },
28
32
  get: {
33
+ uriTemplate: exports.AgreementFileVersionItemRequestBuilderUriTemplate,
29
34
  responseBodyContentType: "application/json",
30
35
  errorMappings: {
31
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
32
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
36
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
33
37
  },
34
38
  adapterMethodName: "sendAsync",
35
39
  responseBodyFactory: models_1.createAgreementFileVersionFromDiscriminatorValue,
36
40
  queryParametersMapper: AgreementFileVersionItemRequestBuilderGetQueryParametersMapper,
37
41
  },
38
42
  patch: {
43
+ uriTemplate: exports.AgreementFileVersionItemRequestBuilderUriTemplate,
39
44
  responseBodyContentType: "application/json",
40
45
  errorMappings: {
41
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
42
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
46
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
43
47
  },
44
48
  adapterMethodName: "sendAsync",
45
49
  responseBodyFactory: models_1.createAgreementFileVersionFromDiscriminatorValue,
@@ -48,9 +52,5 @@ exports.AgreementFileVersionItemRequestBuilderRequestsMetadata = {
48
52
  requestInformationContentSetMethod: "setContentFromParsable",
49
53
  },
50
54
  };
51
- /**
52
- * Uri template for the request builder.
53
- */
54
- exports.AgreementFileVersionItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/files/{agreementFileLocalization%2Did}/versions/{agreementFileVersion%2Did}{?%24expand,%24select}";
55
55
  /* tslint:enable */
56
56
  /* eslint-enable */
@@ -22,38 +22,41 @@ export interface AgreementItemRequestBuilder extends BaseRequestBuilder<Agreemen
22
22
  /**
23
23
  * Delete entity from agreements
24
24
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
25
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
25
26
  */
26
27
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
27
28
  /**
28
29
  * Get entity from agreements by key
29
30
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
30
- * @returns a Promise of Agreement
31
+ * @returns {Promise<Agreement>}
32
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
31
33
  */
32
34
  get(requestConfiguration?: RequestConfiguration<AgreementItemRequestBuilderGetQueryParameters> | undefined): Promise<Agreement | undefined>;
33
35
  /**
34
36
  * Update entity in agreements
35
37
  * @param body The request body
36
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
- * @returns a Promise of Agreement
39
+ * @returns {Promise<Agreement>}
40
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
38
41
  */
39
42
  patch(body: Agreement, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Agreement | undefined>;
40
43
  /**
41
44
  * Delete entity from agreements
42
45
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
43
- * @returns a RequestInformation
46
+ * @returns {RequestInformation}
44
47
  */
45
48
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
46
49
  /**
47
50
  * Get entity from agreements by key
48
51
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
49
- * @returns a RequestInformation
52
+ * @returns {RequestInformation}
50
53
  */
51
54
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<AgreementItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
52
55
  /**
53
56
  * Update entity in agreements
54
57
  * @param body The request body
55
58
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
56
- * @returns a RequestInformation
59
+ * @returns {RequestInformation}
57
60
  */
58
61
  toPatchRequestInformation(body: Agreement, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
59
62
  }
@@ -66,6 +69,10 @@ export interface AgreementItemRequestBuilderGetQueryParameters {
66
69
  */
67
70
  select?: string[];
68
71
  }
72
+ /**
73
+ * Uri template for the request builder.
74
+ */
75
+ export declare const AgreementItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}{?%24select}";
69
76
  /**
70
77
  * Metadata for all the navigation properties in the request builder.
71
78
  */
@@ -74,8 +81,4 @@ export declare const AgreementItemRequestBuilderNavigationMetadata: Record<Exclu
74
81
  * Metadata for all the requests in the request builder.
75
82
  */
76
83
  export declare const AgreementItemRequestBuilderRequestsMetadata: RequestsMetadata;
77
- /**
78
- * Uri template for the request builder.
79
- */
80
- export declare const AgreementItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}{?%24select}";
81
84
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAE3H,OAAO,EAAgI,KAAK,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AAC9L,OAAO,EAA2G,KAAK,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAC3J,OAAO,EAA8G,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChK,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,WAAW,IAAI,yBAAyB,CAAC;IAC7C;;OAEG;IACH,IAAI,IAAI,IAAI,kBAAkB,CAAC;IAC/B;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;OAGG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;OAIG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC9I;;;;;OAKG;IACF,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1H;;;;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,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrI;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAOD;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAgBpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBA+BzD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,sCAAsC,uDAAuD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAE3H,OAAO,EAA0F,KAAK,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AACxJ,OAAO,EAA4E,KAAK,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAC5H,OAAO,EAA8E,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChI,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,WAAW,IAAI,yBAAyB,CAAC;IAC7C;;OAEG;IACH,IAAI,IAAI,IAAI,kBAAkB,CAAC;IAC/B;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;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,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC9I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1H;;;;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,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrI;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,sCAAsC,uDAAuD,CAAC;AAO3G;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAapK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBA+BzD,CAAC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AgreementItemRequestBuilderUriTemplate = exports.AgreementItemRequestBuilderRequestsMetadata = exports.AgreementItemRequestBuilderNavigationMetadata = void 0;
3
+ exports.AgreementItemRequestBuilderRequestsMetadata = exports.AgreementItemRequestBuilderNavigationMetadata = exports.AgreementItemRequestBuilderUriTemplate = void 0;
4
4
  /* tslint:disable */
5
5
  /* eslint-disable */
6
6
  // Generated by Microsoft Kiota
@@ -9,6 +9,10 @@ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
9
  const acceptances_1 = require("./acceptances/");
10
10
  const file_1 = require("./file/");
11
11
  const files_1 = require("./files/");
12
+ /**
13
+ * Uri template for the request builder.
14
+ */
15
+ exports.AgreementItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}{?%24select}";
12
16
  /**
13
17
  * Mapper for query parameters from symbol name to serialization name represented as a constant.
14
18
  */
@@ -20,17 +24,14 @@ const AgreementItemRequestBuilderGetQueryParametersMapper = {
20
24
  */
21
25
  exports.AgreementItemRequestBuilderNavigationMetadata = {
22
26
  acceptances: {
23
- uriTemplate: acceptances_1.AcceptancesRequestBuilderUriTemplate,
24
27
  requestsMetadata: acceptances_1.AcceptancesRequestBuilderRequestsMetadata,
25
28
  navigationMetadata: acceptances_1.AcceptancesRequestBuilderNavigationMetadata,
26
29
  },
27
30
  file: {
28
- uriTemplate: file_1.FileRequestBuilderUriTemplate,
29
31
  requestsMetadata: file_1.FileRequestBuilderRequestsMetadata,
30
32
  navigationMetadata: file_1.FileRequestBuilderNavigationMetadata,
31
33
  },
32
34
  files: {
33
- uriTemplate: files_1.FilesRequestBuilderUriTemplate,
34
35
  requestsMetadata: files_1.FilesRequestBuilderRequestsMetadata,
35
36
  navigationMetadata: files_1.FilesRequestBuilderNavigationMetadata,
36
37
  },
@@ -40,28 +41,28 @@ exports.AgreementItemRequestBuilderNavigationMetadata = {
40
41
  */
41
42
  exports.AgreementItemRequestBuilderRequestsMetadata = {
42
43
  delete: {
44
+ uriTemplate: exports.AgreementItemRequestBuilderUriTemplate,
43
45
  responseBodyContentType: "application/json",
44
46
  errorMappings: {
45
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
46
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
47
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
47
48
  },
48
49
  adapterMethodName: "sendNoResponseContentAsync",
49
50
  },
50
51
  get: {
52
+ uriTemplate: exports.AgreementItemRequestBuilderUriTemplate,
51
53
  responseBodyContentType: "application/json",
52
54
  errorMappings: {
53
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
54
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
55
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
55
56
  },
56
57
  adapterMethodName: "sendAsync",
57
58
  responseBodyFactory: models_1.createAgreementFromDiscriminatorValue,
58
59
  queryParametersMapper: AgreementItemRequestBuilderGetQueryParametersMapper,
59
60
  },
60
61
  patch: {
62
+ uriTemplate: exports.AgreementItemRequestBuilderUriTemplate,
61
63
  responseBodyContentType: "application/json",
62
64
  errorMappings: {
63
- _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
64
- _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
65
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
65
66
  },
66
67
  adapterMethodName: "sendAsync",
67
68
  responseBodyFactory: models_1.createAgreementFromDiscriminatorValue,
@@ -70,9 +71,5 @@ exports.AgreementItemRequestBuilderRequestsMetadata = {
70
71
  requestInformationContentSetMethod: "setContentFromParsable",
71
72
  },
72
73
  };
73
- /**
74
- * Uri template for the request builder.
75
- */
76
- exports.AgreementItemRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}{?%24select}";
77
74
  /* tslint:enable */
78
75
  /* eslint-enable */
@@ -1 +1 @@
1
- {"version":3,"file":"agreementsServiceClient.d.ts","sourceRoot":"","sources":["agreementsServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6H,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AACzL,OAAO,EAA8E,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAM3O;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;CAC9C;AACD;;;GAGG;AACH,wBAAgB,6BAA6B,CAAC,cAAc,EAAE,cAAc,2BAe3E;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAM5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kCAAkC,eAAe,CAAC"}
1
+ {"version":3,"file":"agreementsServiceClient.d.ts","sourceRoot":"","sources":["agreementsServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,EAAwF,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AACpJ,OAAO,EAA8E,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAM3O;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;CAC9C;AACD;;;GAGG;AACH,wBAAgB,6BAA6B,CAAC,cAAc,EAAE,cAAc,2BAe3E;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAK5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kCAAkC,eAAe,CAAC"}
@@ -28,7 +28,7 @@ function createAgreementsServiceClient(requestAdapter) {
28
28
  const pathParameters = {
29
29
  "baseurl": requestAdapter.baseUrl,
30
30
  };
31
- return (0, kiota_abstractions_1.apiClientProxifier)(requestAdapter, pathParameters, exports.AgreementsServiceClientUriTemplate, exports.AgreementsServiceClientNavigationMetadata, undefined);
31
+ return (0, kiota_abstractions_1.apiClientProxifier)(requestAdapter, pathParameters, exports.AgreementsServiceClientNavigationMetadata, undefined);
32
32
  }
33
33
  exports.createAgreementsServiceClient = createAgreementsServiceClient;
34
34
  /**
@@ -36,7 +36,6 @@ exports.createAgreementsServiceClient = createAgreementsServiceClient;
36
36
  */
37
37
  exports.AgreementsServiceClientNavigationMetadata = {
38
38
  agreements: {
39
- uriTemplate: agreements_1.AgreementsRequestBuilderUriTemplate,
40
39
  requestsMetadata: agreements_1.AgreementsRequestBuilderRequestsMetadata,
41
40
  navigationMetadata: agreements_1.AgreementsRequestBuilderNavigationMetadata,
42
41
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-agreements",
3
- "version": "1.0.0-preview.13",
3
+ "version": "1.0.0-preview.15",
4
4
  "description": "Agreements fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -37,12 +37,12 @@
37
37
  "@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
38
38
  "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
39
39
  "@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
40
- "@microsoft/msgraph-sdk": "^1.0.0-preview.13",
40
+ "@microsoft/msgraph-sdk": "^1.0.0-preview.15",
41
41
  "guid-typescript": "^1.0.9",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "typescript": "^5.3.3"
46
46
  },
47
- "gitHead": "906523af8adf701b2d621c1a44f91c8039b77418"
47
+ "gitHead": "1dcf0e9093a5645283fea0e91cc30247bc3a76c4"
48
48
  }