@vixoniccom/modules 2.25.0-dev.28 → 2.25.0-dev.29

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,23 @@
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
+ ## [2.25.0-dev.29](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.29) (2026-08-06)
6
+
7
+
8
+ ### Features
9
+
10
+ * add HoroscopeService to ServiceType union ([#36](https://github.com/Vixonic/store-modules/issues/36)) ([db749ac](https://github.com/Vixonic/store-modules/commit/db749ac721023c1669e64d7d8bdd3e3cef83bae5))
11
+ * **inputs:** add EphemerisService to ServiceType union ([#38](https://github.com/Vixonic/store-modules/issues/38)) ([54c1492](https://github.com/Vixonic/store-modules/commit/54c1492baf7ec1fae02360719037c125207369ae))
12
+ * **inputs:** add FootballService to ServiceType union ([#32](https://github.com/Vixonic/store-modules/issues/32)) ([04a7320](https://github.com/Vixonic/store-modules/commit/04a732039c5ac106281aeb1d35fb84373ab740e5))
13
+ * **inputs:** add GoogleCalendarService and OutlookCalendarService to ServiceType union ([#34](https://github.com/Vixonic/store-modules/issues/34)) ([3ef0c03](https://github.com/Vixonic/store-modules/commit/3ef0c039781bc4a1dd4968cef0ef3011338fe8db))
14
+ * **inputs:** add LocalCompanyDirectoryService to ServiceType union ([3c2369a](https://github.com/Vixonic/store-modules/commit/3c2369a67045c4a264c95ceffd115e702e4ba51c))
15
+ * **inputs:** add PowerBIService to ServiceType union ([#35](https://github.com/Vixonic/store-modules/issues/35)) ([df287cf](https://github.com/Vixonic/store-modules/commit/df287cf0ca5a6df49494c18c691349e4f5ab270e))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * durationFormula ([#31](https://github.com/Vixonic/store-modules/issues/31)) ([2ae0d30](https://github.com/Vixonic/store-modules/commit/2ae0d306dcc8d910390d8b7405c62826a1fe2df6))
21
+
5
22
  ## [2.25.0-dev.28](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.28) (2026-08-04)
6
23
 
7
24
 
@@ -35,6 +52,21 @@ All notable changes to this project will be documented in this file. See [standa
35
52
  ## [2.25.0-dev.26](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.26) (2026-07-27)
36
53
 
37
54
 
55
+ ### Features
56
+
57
+ * **inputs:** add EphemerisService to ServiceType union ([4643cde](https://github.com/Vixonic/store-modules/commit/4643cde06f1b183854754f40bd52f204a852d907))
58
+ * **inputs:** add FootballService to ServiceType union ([#32](https://github.com/Vixonic/store-modules/issues/32)) ([04a7320](https://github.com/Vixonic/store-modules/commit/04a732039c5ac106281aeb1d35fb84373ab740e5))
59
+ * **inputs:** add GoogleCalendarService and OutlookCalendarService to ServiceType union ([#34](https://github.com/Vixonic/store-modules/issues/34)) ([3ef0c03](https://github.com/Vixonic/store-modules/commit/3ef0c039781bc4a1dd4968cef0ef3011338fe8db))
60
+ * **inputs:** add PowerBIService to ServiceType union ([#35](https://github.com/Vixonic/store-modules/issues/35)) ([df287cf](https://github.com/Vixonic/store-modules/commit/df287cf0ca5a6df49494c18c691349e4f5ab270e))
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * durationFormula ([#31](https://github.com/Vixonic/store-modules/issues/31)) ([2ae0d30](https://github.com/Vixonic/store-modules/commit/2ae0d306dcc8d910390d8b7405c62826a1fe2df6))
66
+
67
+ ## [2.25.0-dev.26](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.26) (2026-07-30)
68
+
69
+
38
70
  ### Features
39
71
 
40
72
  * **inputs:** add FootballService to ServiceType union ([#32](https://github.com/Vixonic/store-modules/issues/32)) ([04a7320](https://github.com/Vixonic/store-modules/commit/04a732039c5ac106281aeb1d35fb84373ab740e5))
@@ -1,6 +1,6 @@
1
1
  import { Input, IInput } from '../base';
2
2
  import { ValueError } from '../errors';
3
- export type ServiceType = 'RSSService' | 'InstagramMediaService' | 'LinkedInCompanyMediaService' | 'FacebookPageService' | 'WeatherService' | 'VixonicStoriesService' | 'TwitterService' | 'TimezoneService' | 'NewTimezoneService' | 'ColabraService' | 'RexmasBirthdayService' | 'RexmasAnniversarieService' | 'RexmasNewEmployeesService' | 'TikTokService' | 'BukBirthdayService' | 'BukAnniversariesService' | 'BukNewEmployeesService' | 'AgendaAppService' | 'AnniversaryAppService' | 'BirthdayAppService' | 'NewEmployeesAppService' | 'CurrencyAppService' | 'SheetsReaderService' | 'TalanaAnniversariesService' | 'TalanaBirthdayService' | 'TalanaNewEmployeesService' | 'YoutubeService' | 'LocalAppSheetsService' | 'MetalAppService' | 'FootballService' | 'MenuAppService' | 'GoogleCalendarService' | 'OutlookCalendarService' | 'PowerBIService' | 'HoroscopeService' | 'LocalCompanyDirectoryService';
3
+ export type ServiceType = 'RSSService' | 'InstagramMediaService' | 'LinkedInCompanyMediaService' | 'FacebookPageService' | 'WeatherService' | 'VixonicStoriesService' | 'TwitterService' | 'TimezoneService' | 'NewTimezoneService' | 'ColabraService' | 'RexmasBirthdayService' | 'RexmasAnniversarieService' | 'RexmasNewEmployeesService' | 'TikTokService' | 'BukBirthdayService' | 'BukAnniversariesService' | 'BukNewEmployeesService' | 'AgendaAppService' | 'AnniversaryAppService' | 'BirthdayAppService' | 'NewEmployeesAppService' | 'CurrencyAppService' | 'SheetsReaderService' | 'TalanaAnniversariesService' | 'TalanaBirthdayService' | 'TalanaNewEmployeesService' | 'YoutubeService' | 'LocalAppSheetsService' | 'MetalAppService' | 'FootballService' | 'MenuAppService' | 'GoogleCalendarService' | 'OutlookCalendarService' | 'PowerBIService' | 'HoroscopeService' | 'EphemerisService' | 'LocalCompanyDirectoryService';
4
4
  export interface IServiceInput extends IInput {
5
5
  serviceType: ServiceType;
6
6
  required?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vixoniccom/modules",
3
- "version": "2.25.0-dev.28",
3
+ "version": "2.25.0-dev.29",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",