microsoft-graph 3.4.4 → 3.4.5
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/services/cartesianAddress.d.ts.map +1 -1
- package/dist/cjs/services/cartesianAddress.js +18 -10
- package/dist/esm/services/cartesianAddress.d.ts.map +1 -1
- package/dist/esm/services/cartesianAddress.js +18 -10
- package/docs/api/BadRequestError.md +4 -4
- package/docs/api/BadTemplateError.md +4 -4
- package/docs/api/BandwidthLimitExceededError.md +4 -4
- package/docs/api/ConflictError.md +4 -4
- package/docs/api/EnvironmentVariableMissingError.md +4 -4
- package/docs/api/ForbiddenError.md +4 -4
- package/docs/api/GatewayTimeoutError.md +4 -4
- package/docs/api/GoneError.md +4 -4
- package/docs/api/InconsistentContextError.md +4 -4
- package/docs/api/InsufficientStorageError.md +4 -4
- package/docs/api/InternalServerError.md +4 -4
- package/docs/api/InvalidArgumentError.md +4 -4
- package/docs/api/InvalidOperationError.md +4 -4
- package/docs/api/LengthRequiredError.md +4 -4
- package/docs/api/LockedError.md +4 -4
- package/docs/api/MethodNotAllowedError.md +4 -4
- package/docs/api/NeverError.md +4 -4
- package/docs/api/NotAcceptableError.md +4 -4
- package/docs/api/NotFoundError.md +4 -4
- package/docs/api/NotImplementedError.md +4 -4
- package/docs/api/PaymentRequiredError.md +4 -4
- package/docs/api/PreconditionFailedError.md +4 -4
- package/docs/api/ProtocolError.md +4 -4
- package/docs/api/RequestEntityTooLargeError.md +4 -4
- package/docs/api/RequestFailedError.md +4 -4
- package/docs/api/RequestTimeoutError.md +4 -4
- package/docs/api/RequestedRangeNotSatisfiableError.md +4 -4
- package/docs/api/ServiceUnavailableError.md +4 -4
- package/docs/api/TooManyRequestsError.md +4 -4
- package/docs/api/UnauthorizedError.md +4 -4
- package/docs/api/UnprocessableEntityError.md +4 -4
- package/docs/api/UnsupportedAddressTypeError.md +4 -4
- package/docs/api/UnsupportedMediaTypeError.md +4 -4
- package/docs/api/cartesianAddress.md +1 -1
- package/docs/api/streamDriveItemContent.md +2 -2
- package/package.json +6 -6
|
@@ -8,7 +8,7 @@ Stream the content of a drive item as a Node.js readable stream.
|
|
|
8
8
|
|
|
9
9
|
### streamDriveItemContent()
|
|
10
10
|
|
|
11
|
-
> **streamDriveItemContent**(`itemRef`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
11
|
+
> **streamDriveItemContent**(`itemRef`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L202)\>
|
|
12
12
|
|
|
13
13
|
Defined in: [src/operations/driveItem/streamDriveItemContent.ts:21](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/operations/driveItem/streamDriveItemContent.ts#L21)
|
|
14
14
|
|
|
@@ -22,7 +22,7 @@ Stream the content of a drive item.
|
|
|
22
22
|
|
|
23
23
|
#### Returns
|
|
24
24
|
|
|
25
|
-
[`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
25
|
+
[`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L202)\>
|
|
26
26
|
|
|
27
27
|
A Node.js readable stream of the drive item content.
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microsoft-graph",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"description": "Microsoft GraphAPI SDK for NodeJS",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"@microsoft/microsoft-graph-types": "^2.40.0",
|
|
31
31
|
"@types/csv-parse": "^1.1.12",
|
|
32
32
|
"@types/lodash": "^4.17.17",
|
|
33
|
-
"@types/node": "^
|
|
33
|
+
"@types/node": "^24.0.3",
|
|
34
34
|
"csv-parse": "^5.6.0",
|
|
35
35
|
"globals": "^16.2.0",
|
|
36
36
|
"npm-check-updates": "^18.0.1",
|
|
37
|
-
"tsx": "^4.
|
|
37
|
+
"tsx": "^4.20.3",
|
|
38
38
|
"typedoc": "^0.28.5",
|
|
39
39
|
"typedoc-material-theme": "^1.4.0",
|
|
40
40
|
"typedoc-plugin-dt-links": "^2.0.5",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"typedoc-plugin-mdn-links": "^5.0.2",
|
|
44
44
|
"typedoc-plugin-rename-defaults": "^0.7.3",
|
|
45
45
|
"typescript": "^5.8.3",
|
|
46
|
-
"vitest": "^3.
|
|
46
|
+
"vitest": "^3.2.4"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@azure/identity": "^4.10.
|
|
50
|
-
"axios": "^1.
|
|
49
|
+
"@azure/identity": "^4.10.1",
|
|
50
|
+
"axios": "^1.10.0",
|
|
51
51
|
"https-proxy-agent": "^7.0.6",
|
|
52
52
|
"lodash": "^4.17.21"
|
|
53
53
|
},
|