@microsoft/msgraph-sdk-users 1.0.0-preview.57 → 1.0.0-preview.58
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 +1 -4
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/users/item/index.d.ts +3 -3
- package/users/item/joinedTeams/item/schedule/timeCards/clockIn/index.d.ts +4 -0
- package/users/item/joinedTeams/item/schedule/timeCards/clockIn/index.d.ts.map +1 -1
- package/users/item/joinedTeams/item/schedule/timeCards/clockIn/index.js +2 -0
- package/users/item/joinedTeams/item/schedule/timeCards/clockIn/index.js.map +1 -1
- package/users/item/presence/index.d.ts +4 -4
package/README.md
CHANGED
|
@@ -5,16 +5,13 @@ Get started with the Microsoft Graph SDK for TypeScript by integrating the [Micr
|
|
|
5
5
|
This package provides a fluent API for interacting with Microsoft Graph administrative functions.
|
|
6
6
|
|
|
7
7
|
> [!NOTE]
|
|
8
|
-
> This package
|
|
9
|
-
|
|
8
|
+
> This package allows you to build applications using the [v1.0](https://learn.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, use our [beta SDK](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript) instead.
|
|
10
9
|
|
|
11
10
|
## 1. Installation
|
|
12
11
|
|
|
13
12
|
To install the package, use npm:
|
|
14
13
|
|
|
15
14
|
```shell
|
|
16
|
-
# this will install the main package
|
|
17
|
-
npm install @microsoft/msgraph-sdk
|
|
18
15
|
# this will install the authentication provider for Azure Identity / Microsoft Entra
|
|
19
16
|
npm install @microsoft/kiota-authentication-azure @azure/identity
|
|
20
17
|
# this will install the fluent API package for the administrative API paths
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-users",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.58",
|
|
4
4
|
"description": "Users fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"typescript": "^5.3.3"
|
|
38
38
|
},
|
|
39
39
|
"type": "module",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "d363ba15cf74a576b0b7e7377d98a9bcfdbc7025"
|
|
41
41
|
}
|