@usabledev/usable-chat 1.207.10 → 1.208.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/cli.js +7 -2
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -360046,7 +360046,12 @@ async function getAuthFromRequest(request, options2) {
|
|
|
360046
360046
|
accessToken: token,
|
|
360047
360047
|
email: result.payload.email,
|
|
360048
360048
|
name: result.payload.name,
|
|
360049
|
-
source: "bearer"
|
|
360049
|
+
source: "bearer",
|
|
360050
|
+
clientId: result.payload.azp,
|
|
360051
|
+
tokenType: result.payload.typ,
|
|
360052
|
+
scopes: new Set(
|
|
360053
|
+
typeof result.payload.scope === "string" ? result.payload.scope.split(/\s+/).filter(Boolean) : []
|
|
360054
|
+
)
|
|
360050
360055
|
};
|
|
360051
360056
|
return options2?.detailed ? { success: true, auth: auth2 } : auth2;
|
|
360052
360057
|
}
|
|
@@ -391604,7 +391609,7 @@ init_tui_select();
|
|
|
391604
391609
|
init_model_registry();
|
|
391605
391610
|
|
|
391606
391611
|
// package.json
|
|
391607
|
-
var version2 = "1.
|
|
391612
|
+
var version2 = "1.208.0";
|
|
391608
391613
|
|
|
391609
391614
|
// src/adapters/cli/model-catalog.ts
|
|
391610
391615
|
init_codex_auth();
|