@fluid-tools/fetch-tool 2.1.0-281041 → 2.2.0
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/CHANGELOG.md +8 -0
- package/README.md +48 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -4,6 +4,27 @@ Connection using ODSP or routerlicious driver to dump the messages or snapshot i
|
|
|
4
4
|
In order to connect to ODSP, the clientID must be set as the environment variable `fetch__tool__clientId`. If you have access to the keyvault this can be done by running [this tool](../../../tools/getkeys).
|
|
5
5
|
Beware that to use fetch-tool on documents in the Microsoft tenant, you will need to follow the fetch tool usage instructions on the "Debugging Tools" page of the internal Fluid wiki.
|
|
6
6
|
|
|
7
|
+
<!-- AUTO-GENERATED-CONTENT:START (LIBRARY_README_HEADER:installation=TRUE&devDependency=TRUE) -->
|
|
8
|
+
|
|
9
|
+
<!-- prettier-ignore-start -->
|
|
10
|
+
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
11
|
+
|
|
12
|
+
**NOTE: This package is a library intended for use within the [microsoft/FluidFramework](https://github.com/microsoft/FluidFramework) repository.**
|
|
13
|
+
**It is not intended for public use.**
|
|
14
|
+
**We make no stability guarantees regarding this library and its APIs.**
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
To get started, install the package by running the following command:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm i @fluid-tools/fetch-tool -D
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
<!-- prettier-ignore-end -->
|
|
25
|
+
|
|
26
|
+
<!-- AUTO-GENERATED-CONTENT:END -->
|
|
27
|
+
|
|
7
28
|
## Usage
|
|
8
29
|
|
|
9
30
|
Usage: fluid-fetch [options] "URL"
|
|
@@ -128,11 +149,37 @@ describe("fetch tool", () => {
|
|
|
128
149
|
});
|
|
129
150
|
```
|
|
130
151
|
|
|
131
|
-
<!-- AUTO-GENERATED-CONTENT:START (
|
|
152
|
+
<!-- AUTO-GENERATED-CONTENT:START (README_FOOTER) -->
|
|
132
153
|
|
|
133
154
|
<!-- prettier-ignore-start -->
|
|
134
155
|
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
135
156
|
|
|
157
|
+
## Contribution Guidelines
|
|
158
|
+
|
|
159
|
+
There are many ways to [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid.
|
|
160
|
+
|
|
161
|
+
- Participate in Q&A in our [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
|
|
162
|
+
- [Submit bugs](https://github.com/microsoft/FluidFramework/issues) and help us verify fixes as they are checked in.
|
|
163
|
+
- Review the [source code changes](https://github.com/microsoft/FluidFramework/pulls).
|
|
164
|
+
- [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
|
|
165
|
+
|
|
166
|
+
Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/wiki).
|
|
167
|
+
|
|
168
|
+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
169
|
+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
170
|
+
|
|
171
|
+
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
172
|
+
Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
|
|
173
|
+
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
174
|
+
|
|
175
|
+
## Help
|
|
176
|
+
|
|
177
|
+
Not finding what you're looking for in this README? Check out [fluidframework.com](https://fluidframework.com/docs/).
|
|
178
|
+
|
|
179
|
+
Still not finding what you're looking for? Please [file an issue](https://github.com/microsoft/FluidFramework/wiki/Submitting-Bugs-and-Feature-Requests).
|
|
180
|
+
|
|
181
|
+
Thank you!
|
|
182
|
+
|
|
136
183
|
## Trademark
|
|
137
184
|
|
|
138
185
|
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-tools/fetch-tool",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Console tool to fetch Fluid data from relay service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -17,27 +17,27 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@azure/identity": "^4.2.0",
|
|
19
19
|
"@azure/identity-cache-persistence": "^1.1.0",
|
|
20
|
-
"@fluid-internal/client-utils": "2.
|
|
21
|
-
"@fluidframework/container-runtime": "2.
|
|
22
|
-
"@fluidframework/core-interfaces": "2.
|
|
23
|
-
"@fluidframework/core-utils": "2.
|
|
24
|
-
"@fluidframework/datastore": "2.
|
|
25
|
-
"@fluidframework/driver-definitions": "2.
|
|
26
|
-
"@fluidframework/odsp-doclib-utils": "2.
|
|
27
|
-
"@fluidframework/odsp-driver": "2.
|
|
28
|
-
"@fluidframework/odsp-driver-definitions": "2.
|
|
29
|
-
"@fluidframework/odsp-urlresolver": "2.
|
|
30
|
-
"@fluidframework/routerlicious-driver": "2.
|
|
31
|
-
"@fluidframework/routerlicious-urlresolver": "2.
|
|
32
|
-
"@fluidframework/runtime-definitions": "2.
|
|
33
|
-
"@fluidframework/tool-utils": "2.
|
|
20
|
+
"@fluid-internal/client-utils": "~2.2.0",
|
|
21
|
+
"@fluidframework/container-runtime": "~2.2.0",
|
|
22
|
+
"@fluidframework/core-interfaces": "~2.2.0",
|
|
23
|
+
"@fluidframework/core-utils": "~2.2.0",
|
|
24
|
+
"@fluidframework/datastore": "~2.2.0",
|
|
25
|
+
"@fluidframework/driver-definitions": "~2.2.0",
|
|
26
|
+
"@fluidframework/odsp-doclib-utils": "~2.2.0",
|
|
27
|
+
"@fluidframework/odsp-driver": "~2.2.0",
|
|
28
|
+
"@fluidframework/odsp-driver-definitions": "~2.2.0",
|
|
29
|
+
"@fluidframework/odsp-urlresolver": "~2.2.0",
|
|
30
|
+
"@fluidframework/routerlicious-driver": "~2.2.0",
|
|
31
|
+
"@fluidframework/routerlicious-urlresolver": "~2.2.0",
|
|
32
|
+
"@fluidframework/runtime-definitions": "~2.2.0",
|
|
33
|
+
"@fluidframework/tool-utils": "~2.2.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@biomejs/biome": "~1.8.3",
|
|
37
|
-
"@fluid-tools/build-cli": "^0.
|
|
38
|
-
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.
|
|
37
|
+
"@fluid-tools/build-cli": "^0.43.0",
|
|
38
|
+
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.1.0",
|
|
39
39
|
"@fluidframework/build-common": "^2.0.3",
|
|
40
|
-
"@fluidframework/build-tools": "^0.
|
|
40
|
+
"@fluidframework/build-tools": "^0.43.0",
|
|
41
41
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
42
42
|
"@types/node": "^18.19.0",
|
|
43
43
|
"copyfiles": "^2.4.1",
|