episoda 0.2.66 → 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,9 +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,
2597
2599
  refresh_token: process.env.EPISODA_REFRESH_TOKEN,
2600
+ expires_at,
2598
2601
  api_url: process.env.EPISODA_API_URL || "https://episoda.dev",
2599
2602
  project_id: process.env.EPISODA_PROJECT_ID || "",
2600
2603
  user_id: process.env.EPISODA_USER_ID || "",
@@ -2727,7 +2730,7 @@ var require_package = __commonJS({
2727
2730
  "package.json"(exports2, module2) {
2728
2731
  module2.exports = {
2729
2732
  name: "episoda",
2730
- version: "0.2.66",
2733
+ version: "0.2.67",
2731
2734
  description: "CLI tool for Episoda local development workflow orchestration",
2732
2735
  main: "dist/index.js",
2733
2736
  types: "dist/index.d.ts",