musora-content-services 1.0.225 → 1.0.226
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
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.226](https://github.com/railroadmedia/musora-content-services/compare/v1.0.225...v1.0.226) (2024-12-06)
|
|
6
|
+
|
|
5
7
|
### [1.0.225](https://github.com/railroadmedia/musora-content-services/compare/v1.0.224...v1.0.225) (2024-12-06)
|
|
6
8
|
|
|
7
9
|
### [1.0.224](https://github.com/railroadmedia/musora-content-services/compare/v1.0.223...v1.0.224) (2024-12-06)
|
package/link_mcs.sh
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/src/filterBuilder.js
CHANGED
|
File without changes
|
package/src/services/config.js
CHANGED
|
@@ -37,6 +37,7 @@ const excludeFromGeneratedIndex = [];
|
|
|
37
37
|
* @param {string} config.railcontentConfig.authToken - The bearer authorization token.
|
|
38
38
|
* @param {Object} config.localStorage - Cache to use for localStorage
|
|
39
39
|
* @param {boolean} config.isMA - Variable that tells if the library is used by MA or FEW
|
|
40
|
+
* @param {string} config.localTimezoneString - The local timezone string in format: America/Vancouver
|
|
40
41
|
|
|
41
42
|
*
|
|
42
43
|
* @example
|
|
@@ -64,6 +65,7 @@ function initializeService(config) {
|
|
|
64
65
|
globalConfig.railcontentConfig = config.railcontentConfig;
|
|
65
66
|
globalConfig.localStorage = config.localStorage;
|
|
66
67
|
globalConfig.isMA = config.isMA || false;
|
|
68
|
+
globalConfig.localTimezoneString = config.localTimezoneString || null;
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
// Export both the initialization function and the config object
|
|
File without changes
|
|
File without changes
|
|
File without changes
|