sim 2.0.0-preview.11.1 → 2.0.0-preview.13.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/README.md +2 -2
- package/dist/index.js +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Non-secret settings live in `~/.sim/config`:
|
|
|
20
20
|
|
|
21
21
|
```ini
|
|
22
22
|
[default]
|
|
23
|
-
endpoint = https://sim.ai
|
|
23
|
+
endpoint = https://www.sim.ai
|
|
24
24
|
workspace = ws_abc123
|
|
25
25
|
output = table
|
|
26
26
|
|
|
@@ -58,7 +58,7 @@ Each setting resolves independently, first match wins:
|
|
|
58
58
|
| 1 | Command-line flag (`--endpoint`, `--workspace`, `--output`) |
|
|
59
59
|
| 2 | Environment (`SIM_ENDPOINT`, `SIM_API_KEY`, `SIM_WORKSPACE`, `SIM_OUTPUT`) |
|
|
60
60
|
| 3 | `~/.sim/config` / `~/.sim/credentials` for the selected profile |
|
|
61
|
-
| 4 | Built-in default (`https://sim.ai`, `table`) |
|
|
61
|
+
| 4 | Built-in default (`https://www.sim.ai`, `table`) |
|
|
62
62
|
|
|
63
63
|
Formats are listed under [Output formats](#output-formats).
|
|
64
64
|
|
package/dist/index.js
CHANGED
|
@@ -2403,7 +2403,7 @@ function removeSection(doc, name) {
|
|
|
2403
2403
|
|
|
2404
2404
|
// src/config/profile.ts
|
|
2405
2405
|
var DEFAULT_PROFILE = "default";
|
|
2406
|
-
var DEFAULT_ENDPOINT = "https://sim.ai";
|
|
2406
|
+
var DEFAULT_ENDPOINT = "https://www.sim.ai";
|
|
2407
2407
|
var OUTPUT_FORMATS = ["table", "json", "yaml", "text"];
|
|
2408
2408
|
|
|
2409
2409
|
class ProfileConfigError extends Error {
|
|
@@ -9962,6 +9962,17 @@ var CLI_CONTRACT = {
|
|
|
9962
9962
|
{ header: "updated", path: "updatedAt", format: "timestamp" }
|
|
9963
9963
|
]
|
|
9964
9964
|
},
|
|
9965
|
+
listCredentialProviders: {
|
|
9966
|
+
columns: [
|
|
9967
|
+
{ header: "type" },
|
|
9968
|
+
{ header: "service", path: "serviceId" },
|
|
9969
|
+
{ header: "provider", path: "providerId" },
|
|
9970
|
+
{ header: "name" },
|
|
9971
|
+
{ header: "family", path: "providerFamily" },
|
|
9972
|
+
{ header: "available", format: "bool" },
|
|
9973
|
+
{ header: "description" }
|
|
9974
|
+
]
|
|
9975
|
+
},
|
|
9965
9976
|
listSecrets: {
|
|
9966
9977
|
columns: [
|
|
9967
9978
|
{ header: "name" },
|