@naturalcycles/backend-lib 9.30.0 → 9.30.1

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.
@@ -11,8 +11,8 @@ export interface CloudRunDeployInfo {
11
11
  * GCP region where the Cloud Run service is deployed. Example: 'europe-west1'
12
12
  */
13
13
  cloudRunRegion: string;
14
- sqlInstance: string;
15
- vpcConnector: string;
14
+ sqlInstance?: string;
15
+ vpcConnector?: string;
16
16
  /**
17
17
  * Service URL that is used to access the service externally (through load balancer)
18
18
  * todo: overlaps with env.K_EXTERNAL_URL
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
3
  "type": "module",
4
- "version": "9.30.0",
4
+ "version": "9.30.1",
5
5
  "peerDependencies": {
6
6
  "@sentry/node": "^10"
7
7
  },
@@ -21,8 +21,8 @@ export interface CloudRunDeployInfo {
21
21
  * GCP region where the Cloud Run service is deployed. Example: 'europe-west1'
22
22
  */
23
23
  cloudRunRegion: string
24
- sqlInstance: string
25
- vpcConnector: string
24
+ sqlInstance?: string
25
+ vpcConnector?: string
26
26
  //
27
27
  // Urls
28
28
  //