@itentialopensource/adapter-microsoft_graph 1.0.2 → 1.1.1
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/.eslintignore +0 -1
- package/.jshintrc +3 -0
- package/AUTH.md +20 -16
- package/CALLS.md +69 -28
- package/CHANGELOG.md +16 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/SUMMARY.md +2 -2
- package/SYSTEMINFO.md +15 -5
- package/adapter.js +248 -330
- package/adapterBase.js +538 -873
- package/changelogs/changelog.md +6 -0
- package/entities/Mail/action.json +20 -0
- package/entities/Mail/schema.json +1 -0
- package/metadata.json +52 -0
- package/package.json +22 -25
- package/pronghorn.json +550 -144
- package/propertiesSchema.json +444 -40
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +14709 -0
- package/report/adapter-openapi.yaml +9744 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507370664.json +120 -0
- package/report/updateReport1692202407231.json +120 -0
- package/report/updateReport1694460353234.json +120 -0
- package/report/updateReport1695667793473.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +395 -292
- package/test/unit/adapterTestUnit.js +306 -109
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +57 -22
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
package/SYSTEMINFO.md
CHANGED
@@ -1,11 +1,21 @@
|
|
1
1
|
# Microsoft_graph
|
2
2
|
|
3
|
-
Vendor:
|
4
|
-
Homepage: https://
|
3
|
+
Vendor: Microsoft
|
4
|
+
Homepage: https://www.microsoft.com/en-us/
|
5
5
|
|
6
|
-
Product:
|
7
|
-
Product Page: https://
|
6
|
+
Product: Microsoft Graph
|
7
|
+
Product Page: https://learn.microsoft.com/en-us/graph/overview/
|
8
8
|
|
9
9
|
## Introduction
|
10
|
+
We classify Microsoft Graph into the Cloud domain as Graph provides Cloud Services.
|
10
11
|
|
11
|
-
|
12
|
+
"Microsoft Graph is the gateway to data and intelligence in Microsoft 365."
|
13
|
+
"It provides a unified programmability model that you can use to access the tremendous amount of data in Microsoft 365, Windows, and Enterprise Mobility + Security."
|
14
|
+
|
15
|
+
## Why Integrate
|
16
|
+
The Microsoft Graph adapter from Itential is used to integrate the Itential Automation Platform (IAP) with AMicrosoft Graph. With this adapter you have the ability to perform operations such as:
|
17
|
+
|
18
|
+
- Build apps for organizations and consumers.
|
19
|
+
|
20
|
+
## Additional Product Documentation
|
21
|
+
The [API documents for Microsoft Graph](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
|