@microsoft/msgraph-sdk-users 1.0.0-preview.10 → 1.0.0-preview.11

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/index.d.ts CHANGED
@@ -1,10 +1,15 @@
1
1
  import type { UsersRequestBuilder } from "./users";
2
+ import type { UserItemRequestBuilder } from "./users/item";
2
3
  declare module "@microsoft/msgraph-sdk" {
3
4
  interface GraphServiceClient {
4
5
  /**
5
6
  * Provides operations to manage the collection of user entities.
6
7
  */
7
8
  get users(): UsersRequestBuilder;
9
+ /**
10
+ * Provides operations to manage the currently signed-in user.
11
+ */
12
+ get me(): UserItemRequestBuilder;
8
13
  }
9
14
  }
10
15
  export * from "./usersServiceClient";
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAGnD,OAAO,QAAQ,wBAAwB,CAAC;IACtC,UAAU,kBAAkB;QAC1B;;WAEG;QACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;KAClC;CACF;AAED,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AACnD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAG3D,OAAO,QAAQ,wBAAwB,CAAC;IACtC,UAAU,kBAAkB;QAC1B;;WAEG;QACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;QACjC;;WAEG;QACH,IAAI,EAAE,IAAI,sBAAsB,CAAC;KAClC;CACF;AAED,cAAc,sBAAsB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-users",
3
- "version": "1.0.0-preview.10",
3
+ "version": "1.0.0-preview.11",
4
4
  "description": "Users fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -32,17 +32,17 @@
32
32
  "homepage": "https://github.com/microsoftgraph/msgraph-sdk-typescript#readme",
33
33
  "types": "index.d.ts",
34
34
  "dependencies": {
35
- "@microsoft/kiota-abstractions": "^1.0.0-preview.38",
36
- "@microsoft/kiota-serialization-form": "^1.0.0-preview.27",
37
- "@microsoft/kiota-serialization-json": "^1.0.0-preview.38",
38
- "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.17",
39
- "@microsoft/kiota-serialization-text": "^1.0.0-preview.35",
40
- "@microsoft/msgraph-sdk": "^1.0.0-preview.10",
35
+ "@microsoft/kiota-abstractions": "^1.0.0-preview.39",
36
+ "@microsoft/kiota-serialization-form": "^1.0.0-preview.28",
37
+ "@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
38
+ "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
39
+ "@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
40
+ "@microsoft/msgraph-sdk": "^1.0.0-preview.11",
41
41
  "guid-typescript": "^1.0.9",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "typescript": "^5.3.3"
46
46
  },
47
- "gitHead": "15d9675ebafd32092472a638aa8d5d9276e283b1"
47
+ "gitHead": "4623e720cc77e71c74fa37016d5dd4f84f5e756b"
48
48
  }