@signageos/lib 13.2.0-master.2536 → 13.2.0

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
@@ -4,11 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [Unreleased]
7
+ ## [13.2.0] - 2023-12-19
8
8
  ### Added
9
9
  - Export types that represent return types of functions `parseBasicConfig` and `parseServiceConfig` for convenience
10
10
  - `createTmpDirectory`
11
11
  - `downloadFile`
12
+ - Auth0AuthenticationClient
12
13
 
13
14
  ## [13.1.1] - 2023-12-11
14
15
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signageos/lib",
3
- "version": "13.2.0-master.2536",
3
+ "version": "13.2.0",
4
4
  "main": "./dist",
5
5
  "files": [
6
6
  "tools",
@@ -10,7 +10,7 @@ EXPORTED_ENV_VARIABLES_PATH=".env.docker-compose"
10
10
 
11
11
  sops --decrypt "$FILE_PATH" > "$TMP_FILE_PATH"
12
12
 
13
- ENV_VARIABLE_NAMES=("auth0_client_secret")
13
+ ENV_VARIABLE_NAMES=("auth0_database_connection_id" "auth0_notifier_client_id" "auth0_notifier_client_secret" "auth0_api_client_id" "auth0_api_client_secret" "auth0_api_test_user_password")
14
14
  ENV_VARIABLES=$(grep -E "^($(IFS='|'; echo "${ENV_VARIABLE_NAMES[*]}")):" "$TMP_FILE_PATH")
15
15
 
16
16
  for key in "${ENV_VARIABLE_NAMES[@]}"; do