@mastra/deployer 1.46.0-alpha.1 → 1.46.0-alpha.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.46.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`65f255a`](https://github.com/mastra-ai/mastra/commit/65f255a38667beb6ceeadabfa9eb5059bfec8298), [`4a88c6e`](https://github.com/mastra-ai/mastra/commit/4a88c6e2bdce316f8d7551b4ec3449b0b06fc71c), [`87a17ef`](https://github.com/mastra-ai/mastra/commit/87a17efbd725aca6639febdc5e69e2abb3048689), [`e11ff30`](https://github.com/mastra-ai/mastra/commit/e11ff301408bf1731dca2fb7fbfcd8c819500a35), [`9d2c946`](https://github.com/mastra-ai/mastra/commit/9d2c946d0859e90ae4bcec5beeb1da7398d2ad1e), [`f1ec385`](https://github.com/mastra-ai/mastra/commit/f1ec385386f62b1a0847ec5353ae2bb169d1c3d9), [`e14986f`](https://github.com/mastra-ai/mastra/commit/e14986f6e5478d6384d04ff9a7f9a79a46a8b529), [`0be490f`](https://github.com/mastra-ai/mastra/commit/0be490fabb538c5a7de796ea0aff7d04a0bea1f3), [`0be490f`](https://github.com/mastra-ai/mastra/commit/0be490fabb538c5a7de796ea0aff7d04a0bea1f3), [`974f614`](https://github.com/mastra-ai/mastra/commit/974f614e083bd68278536f94453f7b320b86a3c7), [`31be1cf`](https://github.com/mastra-ai/mastra/commit/31be1cf5f2a7b5eef12f6123a40653b4d8115c16)]:
8
+ - @mastra/core@1.46.0-alpha.3
9
+ - @mastra/server@1.46.0-alpha.3
10
+
11
+ ## 1.46.0-alpha.2
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`6a1428a`](https://github.com/mastra-ai/mastra/commit/6a1428a23133fc070fc6c1caa08d28f3ba4fe5ff), [`7f51548`](https://github.com/mastra-ai/mastra/commit/7f515481213780be7047cef00640b9d35f3d545c)]:
16
+ - @mastra/core@1.46.0-alpha.2
17
+ - @mastra/server@1.46.0-alpha.2
18
+
3
19
  ## 1.46.0-alpha.1
4
20
 
5
21
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-deployer
3
3
  description: Documentation for @mastra/deployer. Use when working with @mastra/deployer APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/deployer"
6
- version: "1.46.0-alpha.1"
6
+ version: "1.46.0-alpha.3"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.46.0-alpha.1",
2
+ "version": "1.46.0-alpha.3",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {
5
5
  "Deps": {
@@ -3263,7 +3263,7 @@ var MastraServer = class extends serverAdapter.MastraServer {
3263
3263
  // Standard Request object with headers/cookies
3264
3264
  };
3265
3265
  const requestContext = c.get("requestContext");
3266
- const hasAuth = this.mastra.getStudio()?.auth || this.mastra.getServer()?.auth;
3266
+ const hasAuth = this.mastra.getStudio?.()?.auth || this.mastra.getServer()?.auth;
3267
3267
  if (hasAuth) {
3268
3268
  const hasPermission = await loadHasPermission();
3269
3269
  if (hasPermission) {
@@ -3361,7 +3361,7 @@ var MastraServer = class extends serverAdapter.MastraServer {
3361
3361
  }
3362
3362
  }
3363
3363
  const requestContext = c.get("requestContext");
3364
- const hasAuth = this.mastra.getStudio()?.auth || this.mastra.getServer()?.auth;
3364
+ const hasAuth = this.mastra.getStudio?.()?.auth || this.mastra.getServer()?.auth;
3365
3365
  if (hasAuth) {
3366
3366
  const hasPermission = await loadHasPermission();
3367
3367
  if (hasPermission) {