@slates-integrations/microsoft-fabric 0.1.0-rc.3 → 0.1.0-rc.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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/SPEC.md +11 -1
- package/package.json +1 -1
package/docs/SPEC.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
- Package: `@slates-integrations/microsoft-fabric`
|
|
6
6
|
- Integration name: `@microsoft/fabric`
|
|
7
|
-
- Auth: Microsoft Entra delegated OAuth
|
|
7
|
+
- Auth: Work Only Microsoft Entra delegated OAuth
|
|
8
8
|
|
|
9
9
|
## OAuth
|
|
10
10
|
|
|
@@ -31,6 +31,13 @@ The callback first redeems the authorization code for Fabric scopes, then redeem
|
|
|
31
31
|
|
|
32
32
|
Data Pipeline and Dataflow create tools support `definition`, `description`, `folderId`, and `sensitivityLabelSettings`.
|
|
33
33
|
|
|
34
|
+
Data Pipeline and Dataflow list tools support `continuationToken`, `recursive`,
|
|
35
|
+
and `rootFolderId` query parameters. `datafactory_run_pipeline` uses the Fabric
|
|
36
|
+
item job scheduler endpoint
|
|
37
|
+
`/workspaces/{workspaceId}/items/{pipelineId}/jobs/{jobType}/instances`,
|
|
38
|
+
defaults `jobType` to `DefaultJob`, and supports optional `executionData` plus
|
|
39
|
+
per-run `parameters`.
|
|
40
|
+
|
|
34
41
|
## Tool Surface
|
|
35
42
|
|
|
36
43
|
Docs:
|
|
@@ -86,5 +93,8 @@ Core and Data Factory:
|
|
|
86
93
|
- Fabric scopes: `https://learn.microsoft.com/en-us/rest/api/fabric/articles/scopes`
|
|
87
94
|
- Create item: `https://learn.microsoft.com/en-us/rest/api/fabric/core/items/create-item`
|
|
88
95
|
- OneLake access APIs: `https://learn.microsoft.com/en-us/fabric/onelake/onelake-access-api`
|
|
96
|
+
- Data Pipeline list: `https://learn.microsoft.com/en-us/rest/api/fabric/datapipeline/items/list-data-pipelines`
|
|
89
97
|
- Data Pipeline create: `https://learn.microsoft.com/en-us/rest/api/fabric/datapipeline/items/create-data-pipeline`
|
|
98
|
+
- Run on-demand item job: `https://learn.microsoft.com/en-us/rest/api/fabric/core/job-scheduler/run-on-demand-item-job`
|
|
99
|
+
- Dataflow list: `https://learn.microsoft.com/en-us/rest/api/fabric/dataflow/items/list-dataflows`
|
|
90
100
|
- Dataflow execute query: `https://learn.microsoft.com/en-us/rest/api/fabric/dataflow/query-execution/execute-query`
|