episoda 0.2.65 → 0.2.67
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.
|
@@ -2592,8 +2592,12 @@ var require_auth = __commonJS({
|
|
|
2592
2592
|
}
|
|
2593
2593
|
}
|
|
2594
2594
|
if (process.env.EPISODA_ACCESS_TOKEN) {
|
|
2595
|
+
const expiresAtEnv = process.env.EPISODA_ACCESS_TOKEN_EXPIRES_AT;
|
|
2596
|
+
const expires_at = expiresAtEnv ? parseInt(expiresAtEnv, 10) : void 0;
|
|
2595
2597
|
return {
|
|
2596
2598
|
access_token: process.env.EPISODA_ACCESS_TOKEN,
|
|
2599
|
+
refresh_token: process.env.EPISODA_REFRESH_TOKEN,
|
|
2600
|
+
expires_at,
|
|
2597
2601
|
api_url: process.env.EPISODA_API_URL || "https://episoda.dev",
|
|
2598
2602
|
project_id: process.env.EPISODA_PROJECT_ID || "",
|
|
2599
2603
|
user_id: process.env.EPISODA_USER_ID || "",
|
|
@@ -2726,7 +2730,7 @@ var require_package = __commonJS({
|
|
|
2726
2730
|
"package.json"(exports2, module2) {
|
|
2727
2731
|
module2.exports = {
|
|
2728
2732
|
name: "episoda",
|
|
2729
|
-
version: "0.2.
|
|
2733
|
+
version: "0.2.67",
|
|
2730
2734
|
description: "CLI tool for Episoda local development workflow orchestration",
|
|
2731
2735
|
main: "dist/index.js",
|
|
2732
2736
|
types: "dist/index.d.ts",
|