@naturalcycles/backend-lib 9.30.1 → 9.30.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.
@@ -13,12 +13,12 @@ export interface CloudRunDeployInfo {
13
13
  cloudRunRegion: string;
14
14
  sqlInstance?: string;
15
15
  vpcConnector?: string;
16
+ serviceUrl?: string;
16
17
  /**
17
18
  * Service URL that is used to access the service externally (through load balancer)
18
19
  * todo: overlaps with env.K_EXTERNAL_URL
19
20
  */
20
- externalUrl: string;
21
- serviceUrl: string;
21
+ externalUrl?: string;
22
22
  buildVersion: string;
23
23
  /**
24
24
  * Unix timestamp of the build/deployment time.
@@ -71,7 +71,7 @@ export interface CloudRunEnv {
71
71
  /**
72
72
  * Example: '--max-old-space-size=864'
73
73
  */
74
- NODE_OPTIONS: string;
74
+ NODE_OPTIONS?: string;
75
75
  /**
76
76
  * Example: '2025-09-01T15:23:20.769Z'
77
77
  * The result of running `new Date().toISOString()`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
3
  "type": "module",
4
- "version": "9.30.1",
4
+ "version": "9.30.3",
5
5
  "peerDependencies": {
6
6
  "@sentry/node": "^10"
7
7
  },
@@ -29,7 +29,7 @@
29
29
  "@sentry/node": "^10",
30
30
  "@types/ejs": "^3",
31
31
  "fastify": "^5",
32
- "@naturalcycles/dev-lib": "18.4.2"
32
+ "@naturalcycles/dev-lib": "19.34.0"
33
33
  },
34
34
  "exports": {
35
35
  ".": "./dist/index.js",
@@ -26,12 +26,12 @@ export interface CloudRunDeployInfo {
26
26
  //
27
27
  // Urls
28
28
  //
29
+ serviceUrl?: string
29
30
  /**
30
31
  * Service URL that is used to access the service externally (through load balancer)
31
32
  * todo: overlaps with env.K_EXTERNAL_URL
32
33
  */
33
- externalUrl: string
34
- serviceUrl: string
34
+ externalUrl?: string
35
35
  //
36
36
  // Versioning
37
37
  //
@@ -106,7 +106,7 @@ export interface CloudRunEnv {
106
106
  /**
107
107
  * Example: '--max-old-space-size=864'
108
108
  */
109
- NODE_OPTIONS: string
109
+ NODE_OPTIONS?: string
110
110
  /**
111
111
  * Example: '2025-09-01T15:23:20.769Z'
112
112
  * The result of running `new Date().toISOString()`