microsoft-graph 3.9.6 → 3.9.7
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/dist/cjs/tasks/tryGetDriveItemByPath.d.ts +3 -3
- package/dist/cjs/tasks/tryGetDriveItemByPath.d.ts.map +1 -1
- package/dist/cjs/tasks/tryGetDriveItemByPath.js +4 -4
- package/dist/esm/tasks/tryGetDriveItemByPath.d.ts +3 -3
- package/dist/esm/tasks/tryGetDriveItemByPath.d.ts.map +1 -1
- package/dist/esm/tasks/tryGetDriveItemByPath.js +4 -4
- package/docs/api/tryGetDriveItemByPath.md +3 -3
- package/package.json +1 -1
|
@@ -7,12 +7,12 @@ import type { DriveItem } from "@microsoft/microsoft-graph-types";
|
|
|
7
7
|
import type { DriveRef } from "../models/Drive.ts";
|
|
8
8
|
import type { DriveItemPath, DriveItemRef } from "../models/DriveItem.ts";
|
|
9
9
|
/**
|
|
10
|
-
* Attempts to retrieve the metadata for an item in a drive by file path.
|
|
10
|
+
* Attempts to retrieve the metadata for an item in a drive or folder by file path.
|
|
11
11
|
* Returns null if the item does not exist (NotFoundError).
|
|
12
|
-
* @param
|
|
12
|
+
* @param parentRef Reference to the drive or folder containing the item.
|
|
13
13
|
* @param itemPath Path of the item within the drive.
|
|
14
14
|
* @returns The metadata of the specified drive item, or null if not found.
|
|
15
15
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-get
|
|
16
16
|
*/
|
|
17
|
-
export default function tryGetDriveItemByPath(
|
|
17
|
+
export default function tryGetDriveItemByPath(parentRef: DriveRef | DriveItemRef, itemPath: DriveItemPath): Promise<(DriveItem & DriveItemRef) | null>;
|
|
18
18
|
//# sourceMappingURL=tryGetDriveItemByPath.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tryGetDriveItemByPath.d.ts","sourceRoot":"","sources":["../../../src/tasks/tryGetDriveItemByPath.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAI1E;;;;;;;GAOG;AACH,wBAA8B,qBAAqB,CAAC,
|
|
1
|
+
{"version":3,"file":"tryGetDriveItemByPath.d.ts","sourceRoot":"","sources":["../../../src/tasks/tryGetDriveItemByPath.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAI1E;;;;;;;GAOG;AACH,wBAA8B,qBAAqB,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,QAAQ,EAAE,aAAa,GAAG,OAAO,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,GAAG,IAAI,CAAC,CAS3J"}
|
|
@@ -7,16 +7,16 @@ exports.default = tryGetDriveItemByPath;
|
|
|
7
7
|
const getDriveItemByPath_ts_1 = __importDefault(require("../operations/driveItem/getDriveItemByPath.js"));
|
|
8
8
|
const error_ts_1 = require("../services/error.js");
|
|
9
9
|
/**
|
|
10
|
-
* Attempts to retrieve the metadata for an item in a drive by file path.
|
|
10
|
+
* Attempts to retrieve the metadata for an item in a drive or folder by file path.
|
|
11
11
|
* Returns null if the item does not exist (NotFoundError).
|
|
12
|
-
* @param
|
|
12
|
+
* @param parentRef Reference to the drive or folder containing the item.
|
|
13
13
|
* @param itemPath Path of the item within the drive.
|
|
14
14
|
* @returns The metadata of the specified drive item, or null if not found.
|
|
15
15
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-get
|
|
16
16
|
*/
|
|
17
|
-
async function tryGetDriveItemByPath(
|
|
17
|
+
async function tryGetDriveItemByPath(parentRef, itemPath) {
|
|
18
18
|
try {
|
|
19
|
-
return await (0, getDriveItemByPath_ts_1.default)(
|
|
19
|
+
return await (0, getDriveItemByPath_ts_1.default)(parentRef, itemPath);
|
|
20
20
|
}
|
|
21
21
|
catch (error) {
|
|
22
22
|
if ((0, error_ts_1.isErrorWithName)(error, "NotFoundError")) {
|
|
@@ -7,12 +7,12 @@ import type { DriveItem } from "@microsoft/microsoft-graph-types";
|
|
|
7
7
|
import type { DriveRef } from "../models/Drive.ts";
|
|
8
8
|
import type { DriveItemPath, DriveItemRef } from "../models/DriveItem.ts";
|
|
9
9
|
/**
|
|
10
|
-
* Attempts to retrieve the metadata for an item in a drive by file path.
|
|
10
|
+
* Attempts to retrieve the metadata for an item in a drive or folder by file path.
|
|
11
11
|
* Returns null if the item does not exist (NotFoundError).
|
|
12
|
-
* @param
|
|
12
|
+
* @param parentRef Reference to the drive or folder containing the item.
|
|
13
13
|
* @param itemPath Path of the item within the drive.
|
|
14
14
|
* @returns The metadata of the specified drive item, or null if not found.
|
|
15
15
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-get
|
|
16
16
|
*/
|
|
17
|
-
export default function tryGetDriveItemByPath(
|
|
17
|
+
export default function tryGetDriveItemByPath(parentRef: DriveRef | DriveItemRef, itemPath: DriveItemPath): Promise<(DriveItem & DriveItemRef) | null>;
|
|
18
18
|
//# sourceMappingURL=tryGetDriveItemByPath.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tryGetDriveItemByPath.d.ts","sourceRoot":"","sources":["../../../src/tasks/tryGetDriveItemByPath.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAI1E;;;;;;;GAOG;AACH,wBAA8B,qBAAqB,CAAC,
|
|
1
|
+
{"version":3,"file":"tryGetDriveItemByPath.d.ts","sourceRoot":"","sources":["../../../src/tasks/tryGetDriveItemByPath.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAI1E;;;;;;;GAOG;AACH,wBAA8B,qBAAqB,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,QAAQ,EAAE,aAAa,GAAG,OAAO,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,GAAG,IAAI,CAAC,CAS3J"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import getDriveItemByPath from "../operations/driveItem/getDriveItemByPath.js";
|
|
2
2
|
import { isErrorWithName } from "../services/error.js";
|
|
3
3
|
/**
|
|
4
|
-
* Attempts to retrieve the metadata for an item in a drive by file path.
|
|
4
|
+
* Attempts to retrieve the metadata for an item in a drive or folder by file path.
|
|
5
5
|
* Returns null if the item does not exist (NotFoundError).
|
|
6
|
-
* @param
|
|
6
|
+
* @param parentRef Reference to the drive or folder containing the item.
|
|
7
7
|
* @param itemPath Path of the item within the drive.
|
|
8
8
|
* @returns The metadata of the specified drive item, or null if not found.
|
|
9
9
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-get
|
|
10
10
|
*/
|
|
11
|
-
export default async function tryGetDriveItemByPath(
|
|
11
|
+
export default async function tryGetDriveItemByPath(parentRef, itemPath) {
|
|
12
12
|
try {
|
|
13
|
-
return await getDriveItemByPath(
|
|
13
|
+
return await getDriveItemByPath(parentRef, itemPath);
|
|
14
14
|
}
|
|
15
15
|
catch (error) {
|
|
16
16
|
if (isErrorWithName(error, "NotFoundError")) {
|
|
@@ -8,18 +8,18 @@ Attempts to retrieve the metadata for an item in a drive by file path, returning
|
|
|
8
8
|
|
|
9
9
|
### tryGetDriveItemByPath()
|
|
10
10
|
|
|
11
|
-
> **tryGetDriveItemByPath**(`
|
|
11
|
+
> **tryGetDriveItemByPath**(`parentRef`, `itemPath`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`null` \| `DriveItem` & [`SiteRef`](Site-1.md#siteref) & `object` & `object`\>
|
|
12
12
|
|
|
13
13
|
Defined in: [src/tasks/tryGetDriveItemByPath.ts:20](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/tasks/tryGetDriveItemByPath.ts#L20)
|
|
14
14
|
|
|
15
|
-
Attempts to retrieve the metadata for an item in a drive by file path.
|
|
15
|
+
Attempts to retrieve the metadata for an item in a drive or folder by file path.
|
|
16
16
|
Returns null if the item does not exist (NotFoundError).
|
|
17
17
|
|
|
18
18
|
#### Parameters
|
|
19
19
|
|
|
20
20
|
| Parameter | Type | Description |
|
|
21
21
|
| ------ | ------ | ------ |
|
|
22
|
-
| `
|
|
22
|
+
| `parentRef` | [`DriveRef`](Drive-1.md#driveref) \| [`DriveItemRef`](DriveItem-1.md#driveitemref) | Reference to the drive or folder containing the item. |
|
|
23
23
|
| `itemPath` | [`DriveItemPath`](DriveItem-1.md#driveitempath) | Path of the item within the drive. |
|
|
24
24
|
|
|
25
25
|
#### Returns
|