microsoft-graph 2.18.3 → 2.18.4

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 (25) hide show
  1. package/dist/cjs/operations/workbookRange/autoFitWorkbookRangeColumns.js +1 -1
  2. package/dist/cjs/operations/workbookRange/clearWorkbookRange.js +1 -1
  3. package/dist/cjs/operations/workbookRange/deleteWorkbookRange.js +1 -1
  4. package/dist/cjs/operations/workbookRange/getWorkbookRangeFill.js +1 -1
  5. package/dist/cjs/operations/workbookRange/getWorkbookRangeFont.js +1 -1
  6. package/dist/cjs/operations/workbookRange/getWorkbookRangeFormat.js +1 -1
  7. package/dist/cjs/operations/workbookRange/getWorkbookVisibleRange.js +1 -1
  8. package/dist/cjs/operations/workbookRange/getWorkbookWorksheetRange.js +1 -1
  9. package/dist/cjs/operations/workbookRange/setWorkbookRangeFill.js +1 -1
  10. package/dist/cjs/operations/workbookRange/setWorkbookRangeFont.js +1 -1
  11. package/dist/cjs/operations/workbookRange/setWorkbookRangeFormat.js +1 -1
  12. package/dist/cjs/operations/workbookRange/updateWorkbookRange.js +1 -1
  13. package/dist/esm/operations/workbookRange/autoFitWorkbookRangeColumns.js +1 -1
  14. package/dist/esm/operations/workbookRange/clearWorkbookRange.js +1 -1
  15. package/dist/esm/operations/workbookRange/deleteWorkbookRange.js +1 -1
  16. package/dist/esm/operations/workbookRange/getWorkbookRangeFill.js +1 -1
  17. package/dist/esm/operations/workbookRange/getWorkbookRangeFont.js +1 -1
  18. package/dist/esm/operations/workbookRange/getWorkbookRangeFormat.js +1 -1
  19. package/dist/esm/operations/workbookRange/getWorkbookVisibleRange.js +1 -1
  20. package/dist/esm/operations/workbookRange/getWorkbookWorksheetRange.js +1 -1
  21. package/dist/esm/operations/workbookRange/setWorkbookRangeFill.js +1 -1
  22. package/dist/esm/operations/workbookRange/setWorkbookRangeFont.js +1 -1
  23. package/dist/esm/operations/workbookRange/setWorkbookRangeFormat.js +1 -1
  24. package/dist/esm/operations/workbookRange/updateWorkbookRange.js +1 -1
  25. package/package.json +1 -1
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-autofitcolumns
13
13
  */
14
14
  function autoFitWorkbookRangeColumns(rangeRef) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  return (0, graphApi_ts_1.operation)({
17
17
  contextId: rangeRef.contextId,
18
18
  method: "POST",
@@ -13,7 +13,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
13
13
  * @see https://learn.microsoft.com/en-us/graph/api/range-delete
14
14
  */
15
15
  function clearWorkbookRange(rangeRef, applyTo = "All") {
16
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
16
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
19
19
  method: "POST",
@@ -13,7 +13,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
13
13
  * @see https://learn.microsoft.com/en-us/graph/api/range-clear
14
14
  */
15
15
  function deleteWorkbookRange(rangeRef, shift) {
16
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
16
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
19
19
  method: "POST",
@@ -13,7 +13,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
13
13
  * @see https://learn.microsoft.com/en-us/graph/api/rangefill-get
14
14
  */
15
15
  function getWorkbookRangeFill(rangeRef) {
16
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
16
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
19
19
  method: "GET",
@@ -13,7 +13,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
13
13
  * @see https://learn.microsoft.com/en-us/graph/api/rangefont-get
14
14
  */
15
15
  function getWorkbookRangeFont(rangeRef) {
16
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
16
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
19
19
  method: "GET",
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-get
13
13
  */
14
14
  function getWorkbookRangeFormat(rangeRef) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  return (0, graphApi_ts_1.operation)({
17
17
  contextId: rangeRef.contextId,
18
18
  method: "GET",
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/workbookrange-visibleview
13
13
  */
14
14
  function getWorkbookVisibleRange(rangeRef) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  // TODO: Should be a visible ref type?
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/range-get
13
13
  */
14
14
  function getWorkbookWorksheetRange(rangeRef) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  return (0, graphApi_ts_1.operation)({
17
17
  contextId: rangeRef.contextId,
18
18
  method: "GET",
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/rangefill-update
13
13
  */
14
14
  function setWorkbookRangeFill(rangeRef, format) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  return (0, graphApi_ts_1.operation)({
17
17
  contextId: rangeRef.contextId,
18
18
  method: "PATCH",
@@ -12,7 +12,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
12
12
  * @see https://learn.microsoft.com/en-us/graph/api/rangefont-update
13
13
  */
14
14
  function setWorkbookRangeFont(rangeRef, format) {
15
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
15
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
16
16
  return (0, graphApi_ts_1.operation)({
17
17
  contextId: rangeRef.contextId,
18
18
  method: "PATCH",
@@ -14,7 +14,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
14
14
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-update
15
15
  */
16
16
  function setWorkbookRangeFormat(rangeRef, format) {
17
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
17
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
18
18
  return (0, graphApi_ts_1.operation)({
19
19
  contextId: rangeRef.contextId,
20
20
  method: "PATCH",
@@ -13,7 +13,7 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
13
13
  * @see https://learn.microsoft.com/en-us/graph/api/range-update
14
14
  */
15
15
  function updateWorkbookRange(rangeRef, update) {
16
- const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address);
16
+ const address = (0, addressManipulation_ts_1.normalizeAddress)(rangeRef.address, true);
17
17
  return (0, graphApi_ts_1.operation)({
18
18
  contextId: rangeRef.contextId,
19
19
  method: "PATCH",
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-autofitcolumns
10
10
  */
11
11
  export default function autoFitWorkbookRangeColumns(rangeRef) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  return operation({
14
14
  contextId: rangeRef.contextId,
15
15
  method: "POST",
@@ -10,7 +10,7 @@ import { generatePath } from "../../services/templatedPaths.js";
10
10
  * @see https://learn.microsoft.com/en-us/graph/api/range-delete
11
11
  */
12
12
  export default function clearWorkbookRange(rangeRef, applyTo = "All") {
13
- const address = normalizeAddress(rangeRef.address);
13
+ const address = normalizeAddress(rangeRef.address, true);
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
16
16
  method: "POST",
@@ -10,7 +10,7 @@ import { generatePath } from "../../services/templatedPaths.js";
10
10
  * @see https://learn.microsoft.com/en-us/graph/api/range-clear
11
11
  */
12
12
  export default function deleteWorkbookRange(rangeRef, shift) {
13
- const address = normalizeAddress(rangeRef.address);
13
+ const address = normalizeAddress(rangeRef.address, true);
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
16
16
  method: "POST",
@@ -10,7 +10,7 @@ import { generatePath } from "../../services/templatedPaths.js";
10
10
  * @see https://learn.microsoft.com/en-us/graph/api/rangefill-get
11
11
  */
12
12
  export default function getWorkbookRangeFill(rangeRef) {
13
- const address = normalizeAddress(rangeRef.address);
13
+ const address = normalizeAddress(rangeRef.address, true);
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
16
16
  method: "GET",
@@ -10,7 +10,7 @@ import { generatePath } from "../../services/templatedPaths.js";
10
10
  * @see https://learn.microsoft.com/en-us/graph/api/rangefont-get
11
11
  */
12
12
  export default function getWorkbookRangeFont(rangeRef) {
13
- const address = normalizeAddress(rangeRef.address);
13
+ const address = normalizeAddress(rangeRef.address, true);
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
16
16
  method: "GET",
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-get
10
10
  */
11
11
  export default function getWorkbookRangeFormat(rangeRef) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  return operation({
14
14
  contextId: rangeRef.contextId,
15
15
  method: "GET",
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/workbookrange-visibleview
10
10
  */
11
11
  export default function getWorkbookVisibleRange(rangeRef) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  // TODO: Should be a visible ref type?
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/range-get
10
10
  */
11
11
  export default function getWorkbookWorksheetRange(rangeRef) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  return operation({
14
14
  contextId: rangeRef.contextId,
15
15
  method: "GET",
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/rangefill-update
10
10
  */
11
11
  export default function setWorkbookRangeFill(rangeRef, format) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  return operation({
14
14
  contextId: rangeRef.contextId,
15
15
  method: "PATCH",
@@ -9,7 +9,7 @@ import { generatePath } from "../../services/templatedPaths.js";
9
9
  * @see https://learn.microsoft.com/en-us/graph/api/rangefont-update
10
10
  */
11
11
  export default function setWorkbookRangeFont(rangeRef, format) {
12
- const address = normalizeAddress(rangeRef.address);
12
+ const address = normalizeAddress(rangeRef.address, true);
13
13
  return operation({
14
14
  contextId: rangeRef.contextId,
15
15
  method: "PATCH",
@@ -11,7 +11,7 @@ import { generatePath } from "../../services/templatedPaths.js";
11
11
  * @see https://learn.microsoft.com/en-us/graph/api/rangeformat-update
12
12
  */
13
13
  export default function setWorkbookRangeFormat(rangeRef, format) {
14
- const address = normalizeAddress(rangeRef.address);
14
+ const address = normalizeAddress(rangeRef.address, true);
15
15
  return operation({
16
16
  contextId: rangeRef.contextId,
17
17
  method: "PATCH",
@@ -10,7 +10,7 @@ import { generatePath } from "../../services/templatedPaths.js";
10
10
  * @see https://learn.microsoft.com/en-us/graph/api/range-update
11
11
  */
12
12
  export default function updateWorkbookRange(rangeRef, update) {
13
- const address = normalizeAddress(rangeRef.address);
13
+ const address = normalizeAddress(rangeRef.address, true);
14
14
  return operation({
15
15
  contextId: rangeRef.contextId,
16
16
  method: "PATCH",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microsoft-graph",
3
- "version": "2.18.3",
3
+ "version": "2.18.4",
4
4
  "description": "Microsoft GraphAPI SDK for NodeJS",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",