@starfetch-js/cli 0.1.1 → 0.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/dist/index.js +2 -2
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -3218,7 +3218,7 @@ var TapUploadError = class extends StarfetchError {
|
|
|
3218
3218
|
this.name = "TapUploadError";
|
|
3219
3219
|
}
|
|
3220
3220
|
};
|
|
3221
|
-
/** TAP service requires authentication that Starfetch
|
|
3221
|
+
/** TAP service requires authentication that Starfetch does not support. */
|
|
3222
3222
|
var TapAuthUnsupportedError = class extends StarfetchError {
|
|
3223
3223
|
constructor(message) {
|
|
3224
3224
|
super(message);
|
|
@@ -6874,7 +6874,7 @@ async function readTapCapabilitiesIfAvailable(target, options) {
|
|
|
6874
6874
|
return capabilities;
|
|
6875
6875
|
}
|
|
6876
6876
|
function assertCapabilitiesAllowAnonymousTap(capabilities) {
|
|
6877
|
-
if (capabilities.auth === "unsupported-auth") throw new TapAuthUnsupportedError("This TAP query interface requires authentication, but Starfetch
|
|
6877
|
+
if (capabilities.auth === "unsupported-auth") throw new TapAuthUnsupportedError("This TAP query interface requires authentication, but Starfetch only supports anonymous TAP requests.");
|
|
6878
6878
|
}
|
|
6879
6879
|
async function readParsedTapTables(target, options) {
|
|
6880
6880
|
return parseTapTables(await readTapMetadataXml(target, "tables", options));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@starfetch-js/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Command-line interface for Starfetch.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"test": "vitest run"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@starfetch-js/core": "0.
|
|
46
|
-
"@starfetch-js/skill": "0.
|
|
45
|
+
"@starfetch-js/core": "0.2.0",
|
|
46
|
+
"@starfetch-js/skill": "0.2.0",
|
|
47
47
|
"commander": "15.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
@@ -54,5 +54,6 @@
|
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
|
-
}
|
|
57
|
+
},
|
|
58
|
+
"gitHead": "d77aa260e196f3a1aebb23221f969ec0fa5baefc"
|
|
58
59
|
}
|