@microsoft/teams.graph-endpoints-beta 2.0.0-preview.10 → 2.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.
Files changed (2) hide show
  1. package/README.md +18 -11
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,26 +1,31 @@
1
1
  # Teams: Graph
2
2
 
3
3
  <p>
4
- <a href="https://www.npmjs.com/package/@microsoft/teams.graphEndpointsBeta" target="_blank">
5
- <img src="https://img.shields.io/npm/v/@microsoft/teams.graphEndpointsBeta/preview" />
4
+ <a href="https://www.npmjs.com/package/@microsoft/teams.graph-endpoints-beta" target="_blank">
5
+ <img src="https://img.shields.io/npm/v/@microsoft/teams.graph-endpoints-beta/preview" />
6
6
  </a>
7
- <a href="https://www.npmjs.com/package/@microsoft/teams.graphEndpointsBeta?activeTab=code" target="_blank">
8
- <img src="https://img.shields.io/bundlephobia/min/@microsoft/teams.graphEndpointsBeta" />
7
+ <a href="https://www.npmjs.com/package/@microsoft/teams.graph-endpoints-beta?activeTab=code" target="_blank">
8
+ <img src="https://img.shields.io/bundlephobia/min/@microsoft/teams.graph-endpoints-beta" />
9
9
  </a>
10
- <a href="https://www.npmjs.com/package/@microsoft/teams.graphEndpointsBeta?activeTab=dependencies" target="_blank">
11
- <img src="https://img.shields.io/librariesio/release/npm/@microsoft/teams.graphEndpointsBeta" />
10
+ <a href="https://www.npmjs.com/package/@microsoft/teams.graph-endpoints-beta?activeTab=dependencies" target="_blank">
11
+ <img src="https://img.shields.io/librariesio/release/npm/@microsoft/teams.graph-endpoints-beta" />
12
12
  </a>
13
- <a href="https://www.npmjs.com/package/@microsoft/teams.graphEndpointsBeta" target="_blank">
14
- <img src="https://img.shields.io/npm/dw/@microsoft/teams.graphEndpointsBeta" />
13
+ <a href="https://www.npmjs.com/package/@microsoft/teams.graph-endpoints-beta" target="_blank">
14
+ <img src="https://img.shields.io/npm/dw/@microsoft/teams.graph-endpoints-beta" />
15
15
  </a>
16
16
  <a href="https://microsoft.github.io/teams-ai" target="_blank">
17
17
  <img src="https://img.shields.io/badge/📖 docs-open-blue" />
18
18
  </a>
19
19
  </p>
20
20
 
21
- A collection of strongly typed request configuration builders for MSGraph beta endpoints, designed to be used
21
+ A collection of strongly typed request configuration builders for Microsoft Graph preview endpoints, designed to be used
22
22
  together with <a href="https://www.npmjs.com/package/@microsoft/teams.graph" target="_blank">@microsoft/teams.graph</a>.
23
23
 
24
+ Use this package if you need to call Microsoft Graph APIs that are still in preview. Note that these APIs are subject to
25
+ change. We don't recommend that you use them in your production apps.
26
+
27
+ To use APIs that are generally available, please refer to <a href="https://www.npmjs.com/package/@microsoft/teams.graph-endpoints" target="_blank">@microsoft/teams.graph-endpoints</a>.
28
+
24
29
  <a href="https://microsoft.github.io/teams-ai" target="_blank">
25
30
  <img src="https://img.shields.io/badge/📖 Getting Started-blue?style=for-the-badge" />
26
31
  </a>
@@ -28,11 +33,13 @@ together with <a href="https://www.npmjs.com/package/@microsoft/teams.graph" tar
28
33
  ## Install
29
34
 
30
35
  ```bash
31
- $: npm install @microsoft/teams.graphEndpointsBeta
36
+ $: npm install @microsoft/teams.graph-endpoints-beta
32
37
  ```
33
38
 
34
39
  ## Links
35
40
 
41
+ - [Microsoft Graph REST API beta endpoint reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-beta)
42
+
36
43
  ## Dependencies
37
44
 
38
- - none
45
+ - None
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@microsoft/teams.graph-endpoints-beta",
3
3
  "sideEffects": false,
4
- "version": "2.0.0-preview.10",
4
+ "version": "2.0.0-preview.11",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -51,7 +51,7 @@
51
51
  "gen:endpoints": "npx cross-env NODE_OPTIONS='--max-old-space-size=16384' npx @microsoft/teams.graph-tools generate-endpoints ../graph/openapi-beta.yaml ./src beta"
52
52
  },
53
53
  "devDependencies": {
54
- "@microsoft/teams.graph-tools": "2.0.0-preview.10",
54
+ "@microsoft/teams.graph-tools": "2.0.0-preview.11",
55
55
  "rimraf": "^6.0.1",
56
56
  "tsup": "^8.4.0",
57
57
  "typescript": "^5.4.5"