@candlerip/shared3 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,5 +1,6 @@
1
1
  export interface EnvironmentVariables {
2
2
  DICTIONARY_SERVICE_PORT: number;
3
+ DOMAIN_NAME: string;
3
4
  PROJECT_NAME: string;
4
5
  S3_IMAGES_BUCKET_NAME: string;
5
6
  }
@@ -1,2 +1,2 @@
1
1
  import { EnvironmentVariables } from '../../../../environment/index.js';
2
- export type BackendInitConfig = Pick<EnvironmentVariables, 'PROJECT_NAME' | 'S3_IMAGES_BUCKET_NAME'>;
2
+ export type BackendInitConfig = Pick<EnvironmentVariables, 'DOMAIN_NAME' | 'PROJECT_NAME' | 'S3_IMAGES_BUCKET_NAME'>;