@vixoniccom/modules 2.25.0-dev.1 → 2.25.0-dev.3
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,10 @@
|
|
|
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.3](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.2...v2.25.0-dev.3) (2026-03-16)
|
|
6
|
+
|
|
7
|
+
## [2.25.0-dev.2](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.1...v2.25.0-dev.2) (2026-03-03)
|
|
8
|
+
|
|
5
9
|
## [2.25.0-dev.1](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.0...v2.25.0-dev.1) (2026-03-03)
|
|
6
10
|
|
|
7
11
|
## [2.25.0-dev.0](https://github.com/Vixonic/store-modules/compare/v2.24.0...v2.25.0-dev.0) (2026-02-19)
|
|
@@ -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' | 'ColabraService' | 'RexmasBirthdayService' | 'RexmasAnniversarieService' | 'RexmasNewEmployeesService' | 'TikTokService' | 'BukBirthdayService' | 'BukAnniversariesService' | 'BukNewEmployeesService' | 'AgendaAppService' | 'AnniversaryAppService' | 'BirthdayAppService' | 'NewEmployeesAppService' | 'CurrencyAppService' | 'SheetsReaderService' | 'TalanaAnniversariesService' | 'TalanaBirthdayService' | 'TalanaNewEmployeesService';
|
|
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' | 'LocalBirthdayAppService';
|
|
4
4
|
export interface IServiceInput extends IInput {
|
|
5
5
|
serviceType: ServiceType;
|
|
6
6
|
required?: boolean;
|
|
@@ -13,7 +13,7 @@ export declare namespace ServiceInput {
|
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
export declare class ServiceInput extends Input<ServiceInput.Value, ServiceInput.Error> {
|
|
16
|
-
static type
|
|
16
|
+
static readonly type = "service-input";
|
|
17
17
|
type: string;
|
|
18
18
|
readonly serviceType: ServiceType;
|
|
19
19
|
readonly required?: boolean;
|
|
@@ -22,6 +22,6 @@ export declare class ServiceInput extends Input<ServiceInput.Value, ServiceInput
|
|
|
22
22
|
id: string;
|
|
23
23
|
}): ServiceInput.Error[];
|
|
24
24
|
isValidValue(v: any): v is ServiceInput.Value;
|
|
25
|
-
static fromJSON: (value: IServiceInput) => ServiceInput;
|
|
25
|
+
static readonly fromJSON: (value: IServiceInput) => ServiceInput;
|
|
26
26
|
valueTypeDef: () => string;
|
|
27
27
|
}
|