microsoft-graph 2.14.1 → 2.15.0
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/README.md +3 -0
- package/dist/cjs/operations/driveItem/{listDriveItems.d.ts → listDriveItemChildren.d.ts} +5 -5
- package/dist/cjs/operations/driveItem/listDriveItemChildren.d.ts.map +1 -0
- package/dist/cjs/operations/driveItem/{listDriveItems.js → listDriveItemChildren.js} +15 -12
- package/dist/cjs/tasks/listDriveItems.d.ts +5 -0
- package/dist/cjs/tasks/listDriveItems.d.ts.map +1 -0
- package/dist/cjs/tasks/listDriveItems.js +30 -0
- package/dist/esm/operations/driveItem/{listDriveItems.d.ts → listDriveItemChildren.d.ts} +5 -5
- package/dist/esm/operations/driveItem/listDriveItemChildren.d.ts.map +1 -0
- package/dist/esm/operations/driveItem/{listDriveItems.js → listDriveItemChildren.js} +14 -11
- package/dist/esm/tasks/listDriveItems.d.ts +5 -0
- package/dist/esm/tasks/listDriveItems.d.ts.map +1 -0
- package/dist/esm/tasks/listDriveItems.js +24 -0
- package/package.json +50 -25
- package/dist/cjs/operations/driveItem/listDriveItems.d.ts.map +0 -1
- package/dist/esm/operations/driveItem/listDriveItems.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@ This is an extensible library that allows access to Microsoft's GraphAPI, includ
|
|
|
4
4
|
|
|
5
5
|
Note that this is a THIRD PARTY library and not associated with Microsoft.
|
|
6
6
|
|
|
7
|
+
## Breaking changes
|
|
8
|
+
2.15.0 has a path change for `listDriveItems`. It's now in `tasks/listDriveItems`. This is part of a fix that prevented `listDriveItems` from returning the first 200 items only.
|
|
9
|
+
|
|
7
10
|
## Usage
|
|
8
11
|
Install the NPM package `npm i microsoft-graph`, then:
|
|
9
12
|
|
|
@@ -3,16 +3,16 @@ import type { DriveItemRef } from "../../models/DriveItemRef.ts";
|
|
|
3
3
|
import type { DriveRef } from "../../models/DriveRef.ts";
|
|
4
4
|
import type { GraphOperation } from "../../models/GraphOperation.ts";
|
|
5
5
|
export type ListDriveItemResponse = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"@odata.nextLink"?: string;
|
|
6
|
+
value: (DriveItem & DriveItemRef)[];
|
|
7
|
+
"@odata.nextLink": string | null;
|
|
9
8
|
};
|
|
10
9
|
/**
|
|
11
10
|
* Retrieve the metadata for items in a drive or folder.
|
|
12
11
|
*
|
|
13
12
|
* @param parentRef - A reference to the parent drive or folder. Defaults to the root drive.
|
|
13
|
+
* @param take - The maximum number of items to retrieve. Defaults to 1000.
|
|
14
14
|
* @returns An array of drive items, each including its metadata and reference information.
|
|
15
15
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-list-children
|
|
16
16
|
*/
|
|
17
|
-
export default function
|
|
18
|
-
//# sourceMappingURL=
|
|
17
|
+
export default function listDriveItemChildren(parentRef: DriveRef | DriveItemRef, take?: number): GraphOperation<ListDriveItemResponse>;
|
|
18
|
+
//# sourceMappingURL=listDriveItemChildren.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDriveItemChildren.d.ts","sourceRoot":"","sources":["../../../../src/operations/driveItem/listDriveItemChildren.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAIrE,MAAM,MAAM,qBAAqB,GAAG;IACnC,KAAK,EAAE,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC;IACpC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,IAAI,SAAO,GAAG,cAAc,CAAC,qBAAqB,CAAC,CAyBpI"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default =
|
|
3
|
+
exports.default = listDriveItemChildren;
|
|
4
4
|
const graphApi_ts_1 = require("../../graphApi.js");
|
|
5
5
|
const driveItem_ts_1 = require("../../services/driveItem.js");
|
|
6
6
|
const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
|
|
@@ -8,27 +8,30 @@ const templatedPaths_ts_1 = require("../../services/templatedPaths.js");
|
|
|
8
8
|
* Retrieve the metadata for items in a drive or folder.
|
|
9
9
|
*
|
|
10
10
|
* @param parentRef - A reference to the parent drive or folder. Defaults to the root drive.
|
|
11
|
+
* @param take - The maximum number of items to retrieve. Defaults to 1000.
|
|
11
12
|
* @returns An array of drive items, each including its metadata and reference information.
|
|
12
13
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-list-children
|
|
13
14
|
*/
|
|
14
|
-
function
|
|
15
|
+
function listDriveItemChildren(parentRef, take = 1000) {
|
|
15
16
|
const pathSegment = parentRef.itemId ? "items/{item-id}" : "root";
|
|
16
17
|
return (0, graphApi_ts_1.operation)({
|
|
17
18
|
contextId: parentRef.contextId,
|
|
18
19
|
method: "GET",
|
|
19
|
-
path: (0, templatedPaths_ts_1.generatePath)(`/sites/{site-id}/drives/{drive-id}/${pathSegment}/children`, parentRef),
|
|
20
|
+
path: (0, templatedPaths_ts_1.generatePath)(`/sites/{site-id}/drives/{drive-id}/${pathSegment}/children?$top=${take}`, parentRef),
|
|
20
21
|
headers: {},
|
|
21
22
|
body: null,
|
|
22
23
|
responseTransform: (response) => {
|
|
23
|
-
const
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
const r = response;
|
|
25
|
+
return {
|
|
26
|
+
value: r.value.map((item) => {
|
|
27
|
+
const itemRef = (0, driveItem_ts_1.createDriveItemRef)(parentRef, item.id);
|
|
28
|
+
return {
|
|
29
|
+
...item,
|
|
30
|
+
...itemRef,
|
|
31
|
+
};
|
|
32
|
+
}),
|
|
33
|
+
"@odata.nextLink": r["@odata.nextLink"] ?? null,
|
|
34
|
+
};
|
|
32
35
|
},
|
|
33
36
|
});
|
|
34
37
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DriveItem } from "@microsoft/microsoft-graph-types";
|
|
2
|
+
import type { DriveItemRef } from "../models/DriveItemRef.ts";
|
|
3
|
+
import type { DriveRef } from "../models/DriveRef.ts";
|
|
4
|
+
export default function listDriveItems(parentRef: DriveRef | DriveItemRef, pageSize?: number): Promise<(DriveItem & DriveItemRef)[]>;
|
|
5
|
+
//# sourceMappingURL=listDriveItems.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDriveItems.d.ts","sourceRoot":"","sources":["../../../src/tasks/listDriveItems.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAElE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAMtD,wBAA8B,cAAc,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,QAAQ,SAAO,GAAG,OAAO,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC,CAwBvI"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = listDriveItems;
|
|
7
|
+
const graphApi_ts_1 = require("../graphApi.js");
|
|
8
|
+
const listDriveItemChildren_ts_1 = __importDefault(require("../operations/driveItem/listDriveItemChildren.js"));
|
|
9
|
+
const accessToken_ts_1 = require("../services/accessToken.js");
|
|
10
|
+
const context_ts_1 = require("../services/context.js");
|
|
11
|
+
const http_ts_1 = require("../services/http.js");
|
|
12
|
+
async function listDriveItems(parentRef, pageSize = 1000) {
|
|
13
|
+
const output = [];
|
|
14
|
+
let result = await (0, listDriveItemChildren_ts_1.default)(parentRef, pageSize);
|
|
15
|
+
output.push(...result.value);
|
|
16
|
+
while (result["@odata.nextLink"]) {
|
|
17
|
+
const context = (0, context_ts_1.getContext)(parentRef.contextId);
|
|
18
|
+
const accessToken = await (0, accessToken_ts_1.getCurrentAccessToken)(context.tenantId, context.clientId, context.clientSecret, graphApi_ts_1.authenticationScope);
|
|
19
|
+
const response = await (0, http_ts_1.executeHttpRequest)({
|
|
20
|
+
url: result["@odata.nextLink"],
|
|
21
|
+
method: "GET",
|
|
22
|
+
headers: {
|
|
23
|
+
authorization: `Bearer ${accessToken}`,
|
|
24
|
+
},
|
|
25
|
+
});
|
|
26
|
+
result = response.data;
|
|
27
|
+
output.push(...result.value);
|
|
28
|
+
}
|
|
29
|
+
return output;
|
|
30
|
+
}
|
|
@@ -3,16 +3,16 @@ import type { DriveItemRef } from "../../models/DriveItemRef.ts";
|
|
|
3
3
|
import type { DriveRef } from "../../models/DriveRef.ts";
|
|
4
4
|
import type { GraphOperation } from "../../models/GraphOperation.ts";
|
|
5
5
|
export type ListDriveItemResponse = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"@odata.nextLink"?: string;
|
|
6
|
+
value: (DriveItem & DriveItemRef)[];
|
|
7
|
+
"@odata.nextLink": string | null;
|
|
9
8
|
};
|
|
10
9
|
/**
|
|
11
10
|
* Retrieve the metadata for items in a drive or folder.
|
|
12
11
|
*
|
|
13
12
|
* @param parentRef - A reference to the parent drive or folder. Defaults to the root drive.
|
|
13
|
+
* @param take - The maximum number of items to retrieve. Defaults to 1000.
|
|
14
14
|
* @returns An array of drive items, each including its metadata and reference information.
|
|
15
15
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-list-children
|
|
16
16
|
*/
|
|
17
|
-
export default function
|
|
18
|
-
//# sourceMappingURL=
|
|
17
|
+
export default function listDriveItemChildren(parentRef: DriveRef | DriveItemRef, take?: number): GraphOperation<ListDriveItemResponse>;
|
|
18
|
+
//# sourceMappingURL=listDriveItemChildren.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDriveItemChildren.d.ts","sourceRoot":"","sources":["../../../../src/operations/driveItem/listDriveItemChildren.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAIrE,MAAM,MAAM,qBAAqB,GAAG;IACnC,KAAK,EAAE,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC;IACpC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,IAAI,SAAO,GAAG,cAAc,CAAC,qBAAqB,CAAC,CAyBpI"}
|
|
@@ -5,27 +5,30 @@ import { generatePath } from "../../services/templatedPaths.js";
|
|
|
5
5
|
* Retrieve the metadata for items in a drive or folder.
|
|
6
6
|
*
|
|
7
7
|
* @param parentRef - A reference to the parent drive or folder. Defaults to the root drive.
|
|
8
|
+
* @param take - The maximum number of items to retrieve. Defaults to 1000.
|
|
8
9
|
* @returns An array of drive items, each including its metadata and reference information.
|
|
9
10
|
* @see https://learn.microsoft.com/en-us/graph/api/driveitem-list-children
|
|
10
11
|
*/
|
|
11
|
-
export default function
|
|
12
|
+
export default function listDriveItemChildren(parentRef, take = 1000) {
|
|
12
13
|
const pathSegment = parentRef.itemId ? "items/{item-id}" : "root";
|
|
13
14
|
return operation({
|
|
14
15
|
contextId: parentRef.contextId,
|
|
15
16
|
method: "GET",
|
|
16
|
-
path: generatePath(`/sites/{site-id}/drives/{drive-id}/${pathSegment}/children`, parentRef),
|
|
17
|
+
path: generatePath(`/sites/{site-id}/drives/{drive-id}/${pathSegment}/children?$top=${take}`, parentRef),
|
|
17
18
|
headers: {},
|
|
18
19
|
body: null,
|
|
19
20
|
responseTransform: (response) => {
|
|
20
|
-
const
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
21
|
+
const r = response;
|
|
22
|
+
return {
|
|
23
|
+
value: r.value.map((item) => {
|
|
24
|
+
const itemRef = createDriveItemRef(parentRef, item.id);
|
|
25
|
+
return {
|
|
26
|
+
...item,
|
|
27
|
+
...itemRef,
|
|
28
|
+
};
|
|
29
|
+
}),
|
|
30
|
+
"@odata.nextLink": r["@odata.nextLink"] ?? null,
|
|
31
|
+
};
|
|
29
32
|
},
|
|
30
33
|
});
|
|
31
34
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DriveItem } from "@microsoft/microsoft-graph-types";
|
|
2
|
+
import type { DriveItemRef } from "../models/DriveItemRef.ts";
|
|
3
|
+
import type { DriveRef } from "../models/DriveRef.ts";
|
|
4
|
+
export default function listDriveItems(parentRef: DriveRef | DriveItemRef, pageSize?: number): Promise<(DriveItem & DriveItemRef)[]>;
|
|
5
|
+
//# sourceMappingURL=listDriveItems.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDriveItems.d.ts","sourceRoot":"","sources":["../../../src/tasks/listDriveItems.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAElE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAMtD,wBAA8B,cAAc,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,EAAE,QAAQ,SAAO,GAAG,OAAO,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC,CAwBvI"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { authenticationScope } from "../graphApi.js";
|
|
2
|
+
import listDriveItemChildren from "../operations/driveItem/listDriveItemChildren.js";
|
|
3
|
+
import { getCurrentAccessToken } from "../services/accessToken.js";
|
|
4
|
+
import { getContext } from "../services/context.js";
|
|
5
|
+
import { executeHttpRequest } from "../services/http.js";
|
|
6
|
+
export default async function listDriveItems(parentRef, pageSize = 1000) {
|
|
7
|
+
const output = [];
|
|
8
|
+
let result = await listDriveItemChildren(parentRef, pageSize);
|
|
9
|
+
output.push(...result.value);
|
|
10
|
+
while (result["@odata.nextLink"]) {
|
|
11
|
+
const context = getContext(parentRef.contextId);
|
|
12
|
+
const accessToken = await getCurrentAccessToken(context.tenantId, context.clientId, context.clientSecret, authenticationScope);
|
|
13
|
+
const response = await executeHttpRequest({
|
|
14
|
+
url: result["@odata.nextLink"],
|
|
15
|
+
method: "GET",
|
|
16
|
+
headers: {
|
|
17
|
+
authorization: `Bearer ${accessToken}`,
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
result = response.data;
|
|
21
|
+
output.push(...result.value);
|
|
22
|
+
}
|
|
23
|
+
return output;
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microsoft-graph",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "Microsoft GraphAPI SDK for NodeJS",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -1567,30 +1567,30 @@
|
|
|
1567
1567
|
"require": "./dist/cjs/operations/driveItem/initiateCopyDriveItem.js",
|
|
1568
1568
|
"types": "./dist/esm/operations/driveItem/initiateCopyDriveItem.d.ts"
|
|
1569
1569
|
},
|
|
1570
|
-
"./
|
|
1571
|
-
"import": "./dist/esm/operations/driveItem/
|
|
1572
|
-
"require": "./dist/cjs/operations/driveItem/
|
|
1573
|
-
"types": "./dist/esm/operations/driveItem/
|
|
1574
|
-
},
|
|
1575
|
-
"./dist/cjs/operations/driveItem/
|
|
1576
|
-
"import": "./dist/esm/operations/driveItem/
|
|
1577
|
-
"require": "./dist/cjs/operations/driveItem/
|
|
1578
|
-
"types": "./dist/esm/operations/driveItem/
|
|
1579
|
-
},
|
|
1580
|
-
"./dist/cjs/operations/driveItem/
|
|
1581
|
-
"import": "./dist/esm/operations/driveItem/
|
|
1582
|
-
"require": "./dist/cjs/operations/driveItem/
|
|
1583
|
-
"types": "./dist/esm/operations/driveItem/
|
|
1584
|
-
},
|
|
1585
|
-
"./operations/driveItem/
|
|
1586
|
-
"import": "./dist/esm/operations/driveItem/
|
|
1587
|
-
"require": "./dist/cjs/operations/driveItem/
|
|
1588
|
-
"types": "./dist/esm/operations/driveItem/
|
|
1589
|
-
},
|
|
1590
|
-
"./operations/driveItem/
|
|
1591
|
-
"import": "./dist/esm/operations/driveItem/
|
|
1592
|
-
"require": "./dist/cjs/operations/driveItem/
|
|
1593
|
-
"types": "./dist/esm/operations/driveItem/
|
|
1570
|
+
"./listDriveItemChildren": {
|
|
1571
|
+
"import": "./dist/esm/operations/driveItem/listDriveItemChildren.js",
|
|
1572
|
+
"require": "./dist/cjs/operations/driveItem/listDriveItemChildren.js",
|
|
1573
|
+
"types": "./dist/esm/operations/driveItem/listDriveItemChildren.d.ts"
|
|
1574
|
+
},
|
|
1575
|
+
"./dist/cjs/operations/driveItem/listDriveItemChildren.js": {
|
|
1576
|
+
"import": "./dist/esm/operations/driveItem/listDriveItemChildren.js",
|
|
1577
|
+
"require": "./dist/cjs/operations/driveItem/listDriveItemChildren.js",
|
|
1578
|
+
"types": "./dist/esm/operations/driveItem/listDriveItemChildren.d.ts"
|
|
1579
|
+
},
|
|
1580
|
+
"./dist/cjs/operations/driveItem/listDriveItemChildren": {
|
|
1581
|
+
"import": "./dist/esm/operations/driveItem/listDriveItemChildren.js",
|
|
1582
|
+
"require": "./dist/cjs/operations/driveItem/listDriveItemChildren.js",
|
|
1583
|
+
"types": "./dist/esm/operations/driveItem/listDriveItemChildren.d.ts"
|
|
1584
|
+
},
|
|
1585
|
+
"./operations/driveItem/listDriveItemChildren": {
|
|
1586
|
+
"import": "./dist/esm/operations/driveItem/listDriveItemChildren.js",
|
|
1587
|
+
"require": "./dist/cjs/operations/driveItem/listDriveItemChildren.js",
|
|
1588
|
+
"types": "./dist/esm/operations/driveItem/listDriveItemChildren.d.ts"
|
|
1589
|
+
},
|
|
1590
|
+
"./operations/driveItem/listDriveItemChildren.js": {
|
|
1591
|
+
"import": "./dist/esm/operations/driveItem/listDriveItemChildren.js",
|
|
1592
|
+
"require": "./dist/cjs/operations/driveItem/listDriveItemChildren.js",
|
|
1593
|
+
"types": "./dist/esm/operations/driveItem/listDriveItemChildren.d.ts"
|
|
1594
1594
|
},
|
|
1595
1595
|
"./moveDriveItem": {
|
|
1596
1596
|
"import": "./dist/esm/operations/driveItem/moveDriveItem.js",
|
|
@@ -3517,6 +3517,31 @@
|
|
|
3517
3517
|
"require": "./dist/cjs/tasks/iterateWorkbookRangeValues.js",
|
|
3518
3518
|
"types": "./dist/esm/tasks/iterateWorkbookRangeValues.d.ts"
|
|
3519
3519
|
},
|
|
3520
|
+
"./listDriveItems": {
|
|
3521
|
+
"import": "./dist/esm/tasks/listDriveItems.js",
|
|
3522
|
+
"require": "./dist/cjs/tasks/listDriveItems.js",
|
|
3523
|
+
"types": "./dist/esm/tasks/listDriveItems.d.ts"
|
|
3524
|
+
},
|
|
3525
|
+
"./dist/cjs/tasks/listDriveItems.js": {
|
|
3526
|
+
"import": "./dist/esm/tasks/listDriveItems.js",
|
|
3527
|
+
"require": "./dist/cjs/tasks/listDriveItems.js",
|
|
3528
|
+
"types": "./dist/esm/tasks/listDriveItems.d.ts"
|
|
3529
|
+
},
|
|
3530
|
+
"./dist/cjs/tasks/listDriveItems": {
|
|
3531
|
+
"import": "./dist/esm/tasks/listDriveItems.js",
|
|
3532
|
+
"require": "./dist/cjs/tasks/listDriveItems.js",
|
|
3533
|
+
"types": "./dist/esm/tasks/listDriveItems.d.ts"
|
|
3534
|
+
},
|
|
3535
|
+
"./tasks/listDriveItems": {
|
|
3536
|
+
"import": "./dist/esm/tasks/listDriveItems.js",
|
|
3537
|
+
"require": "./dist/cjs/tasks/listDriveItems.js",
|
|
3538
|
+
"types": "./dist/esm/tasks/listDriveItems.d.ts"
|
|
3539
|
+
},
|
|
3540
|
+
"./tasks/listDriveItems.js": {
|
|
3541
|
+
"import": "./dist/esm/tasks/listDriveItems.js",
|
|
3542
|
+
"require": "./dist/cjs/tasks/listDriveItems.js",
|
|
3543
|
+
"types": "./dist/esm/tasks/listDriveItems.d.ts"
|
|
3544
|
+
},
|
|
3520
3545
|
"./safeDeleteWorkbook": {
|
|
3521
3546
|
"import": "./dist/esm/tasks/safeDeleteWorkbook.js",
|
|
3522
3547
|
"require": "./dist/cjs/tasks/safeDeleteWorkbook.js",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"listDriveItems.d.ts","sourceRoot":"","sources":["../../../../src/operations/driveItem/listDriveItems.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAIrE,MAAM,MAAM,qBAAqB,GAAG;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,GAAG,cAAc,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC,CAwBvH"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"listDriveItems.d.ts","sourceRoot":"","sources":["../../../../src/operations/driveItem/listDriveItems.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAIrE,MAAM,MAAM,qBAAqB,GAAG;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,SAAS,EAAE,QAAQ,GAAG,YAAY,GAAG,cAAc,CAAC,CAAC,SAAS,GAAG,YAAY,CAAC,EAAE,CAAC,CAwBvH"}
|