@vixoniccom/modules 2.26.0-dev.1 → 2.26.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.
@@ -0,0 +1,10 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(git add *)",
5
+ "Bash(git commit -m ' *)",
6
+ "Bash(gh auth *)",
7
+ "Bash(gh pr create --base main --assignee @me --title 'feat\\(inputs\\): add EphemerisService to ServiceType union' --body ' *)"
8
+ ]
9
+ }
10
+ }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
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.26.0-dev.3](https://github.com/Vixonic/store-modules/compare/v2.26.0...v2.26.0-dev.3) (2026-09-03)
6
+
7
+
8
+ ### Features
9
+
10
+ * add AirQualityService to ServiceType union ([7f6d317](https://github.com/Vixonic/store-modules/commit/7f6d317b3eb7dc21b2010bd929f12211d991136d))
11
+
12
+ ## [2.26.0-dev.2](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.31...v2.26.0-dev.2) (2026-08-14)
13
+ =======
14
+ ## [2.25.0-dev.32](https://github.com/Vixonic/store-modules/compare/v2.25.0...v2.25.0-dev.32) (2026-09-03)
15
+ >>>>>>> 3047891 (chore(release): 2.25.0-dev.32)
16
+
17
+
18
+ ### Features
19
+
20
+ <<<<<<< HEAD
21
+ * **base:** support field id aliases for cross-version value migration ([d89a9f9](https://github.com/Vixonic/store-modules/commit/d89a9f9232055f3a30752521d9d77195b308f8c6))
22
+ * **inputs:** add ai-text-area input type ([d361105](https://github.com/Vixonic/store-modules/commit/d361105ca8942a8dd652b8b9a987b4bb30408d37))
23
+ =======
24
+ * add AirQualityService to ServiceType union ([942f0a3](https://github.com/Vixonic/store-modules/commit/942f0a3ca2069c4c06301c5af9656c1a0af1dd2e))
25
+ >>>>>>> 3047891 (chore(release): 2.25.0-dev.32)
26
+
5
27
  ## [2.25.0-dev.31](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.30...v2.25.0-dev.31) (2026-08-07)
6
28
 
7
29
 
@@ -5,6 +5,7 @@ export interface IBaseElement {
5
5
  readonly id: string;
6
6
  readonly label: string;
7
7
  readonly show?: string;
8
+ readonly aliases?: string[];
8
9
  }
9
10
  export interface IInput extends IBaseElement {
10
11
  }
@@ -17,7 +18,8 @@ export declare abstract class BaseElement extends ConfigurationElement implement
17
18
  readonly id: string;
18
19
  readonly label: string;
19
20
  readonly show?: string;
20
- constructor({ id, label, show }: IInput);
21
+ readonly aliases?: string[];
22
+ constructor({ id, label, show, aliases }: IInput);
21
23
  }
22
24
  export declare abstract class Input<V extends InputValue = InputValue, E extends ValueError = ValueError> extends BaseElement {
23
25
  validate: (value: V, ctx: Configuration.Value) => (E | ValueError.InvalidValue)[];
package/dist/lib/base.js CHANGED
@@ -29,11 +29,12 @@ exports.ConfigurationElement = ConfigurationElement;
29
29
  var BaseElement = /** @class */ (function (_super) {
30
30
  __extends(BaseElement, _super);
31
31
  function BaseElement(_a) {
32
- var id = _a.id, label = _a.label, show = _a.show;
32
+ var id = _a.id, label = _a.label, show = _a.show, aliases = _a.aliases;
33
33
  var _this = _super.call(this) || this;
34
34
  _this.id = id;
35
35
  _this.label = label;
36
36
  _this.show = show;
37
+ _this.aliases = aliases;
37
38
  return _this;
38
39
  }
39
40
  return BaseElement;
@@ -8,7 +8,7 @@ import { TextArea, TextAreaJSON } from './text-area';
8
8
  * only where a field opts in via `"type": "ai-text-area"`.
9
9
  */
10
10
  export declare class AITextArea extends TextArea {
11
- static type: string;
11
+ static readonly type: string;
12
12
  type: string;
13
13
  static fromJSON(value: TextAreaJSON): AITextArea;
14
14
  }
@@ -13,7 +13,8 @@ import { DateInput } from './date-input';
13
13
  import { SelectAssetKna } from './select-asset-kna';
14
14
  import { Slider } from './slider';
15
15
  import { ServiceInput } from './service-input';
16
- export { BitlyInput, TextFormat, TextInput, SelectInput, Switch, TextArea, AITextArea, Autocomplete, NumberInput, ColorPicker, DateInput, SelectAssetKna, Slider, ServiceInput, RedirectButton };
16
+ export { AITextArea } from './ai-text-area';
17
+ export { BitlyInput, TextFormat, TextInput, SelectInput, Switch, TextArea, Autocomplete, NumberInput, ColorPicker, DateInput, SelectAssetKna, Slider, ServiceInput, RedirectButton };
17
18
  export type AnyJson = boolean | number | string | null | JsonArray | JsonMap | undefined;
18
19
  export interface JsonMap {
19
20
  [key: string]: AnyJson | undefined;
@@ -22,6 +23,6 @@ export interface JsonArray extends Array<AnyJson> {
22
23
  }
23
24
  export type InputValue = AnyJson;
24
25
  export type InputComponent = TextInput | TextFormat | BitlyInput | SelectInput<string | number> | TextArea | AITextArea | Switch | Autocomplete<string | number> | NumberInput | ColorPicker | DateInput | SelectAssetKna | Slider | ServiceInput | RedirectButton;
25
- export declare const allInputs: (typeof TextInput | typeof BitlyInput | typeof TextFormat | typeof Autocomplete | typeof Switch | typeof NumberInput | typeof RedirectButton | typeof ColorPicker | typeof DateInput | typeof SelectAssetKna | typeof Slider | typeof ServiceInput)[];
26
+ export declare const allInputs: (typeof TextInput | typeof AITextArea | typeof BitlyInput | typeof TextFormat | typeof Autocomplete | typeof Switch | typeof NumberInput | typeof RedirectButton | typeof ColorPicker | typeof DateInput | typeof SelectAssetKna | typeof Slider | typeof ServiceInput)[];
26
27
  export declare const isInput: (arg: any) => arg is InputComponent;
27
28
  export declare const isInputInstance: <T>(arg: any, type: string | string[]) => arg is T;
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isInputInstance = exports.isInput = exports.allInputs = exports.RedirectButton = exports.ServiceInput = exports.Slider = exports.SelectAssetKna = exports.DateInput = exports.ColorPicker = exports.NumberInput = exports.Autocomplete = exports.AITextArea = exports.TextArea = exports.Switch = exports.SelectInput = exports.TextInput = exports.TextFormat = exports.BitlyInput = void 0;
3
+ exports.isInputInstance = exports.isInput = exports.allInputs = exports.RedirectButton = exports.ServiceInput = exports.Slider = exports.SelectAssetKna = exports.DateInput = exports.ColorPicker = exports.NumberInput = exports.Autocomplete = exports.TextArea = exports.Switch = exports.SelectInput = exports.TextInput = exports.TextFormat = exports.BitlyInput = exports.AITextArea = void 0;
4
4
  var text_area_1 = require("./text-area");
5
5
  Object.defineProperty(exports, "TextArea", { enumerable: true, get: function () { return text_area_1.TextArea; } });
6
6
  var ai_text_area_1 = require("./ai-text-area");
7
- Object.defineProperty(exports, "AITextArea", { enumerable: true, get: function () { return ai_text_area_1.AITextArea; } });
8
7
  var bitly_input_1 = require("./bitly-input");
9
8
  Object.defineProperty(exports, "BitlyInput", { enumerable: true, get: function () { return bitly_input_1.BitlyInput; } });
10
9
  var text_format_1 = require("./text-format");
@@ -31,6 +30,8 @@ var slider_1 = require("./slider");
31
30
  Object.defineProperty(exports, "Slider", { enumerable: true, get: function () { return slider_1.Slider; } });
32
31
  var service_input_1 = require("./service-input");
33
32
  Object.defineProperty(exports, "ServiceInput", { enumerable: true, get: function () { return service_input_1.ServiceInput; } });
33
+ var ai_text_area_2 = require("./ai-text-area");
34
+ Object.defineProperty(exports, "AITextArea", { enumerable: true, get: function () { return ai_text_area_2.AITextArea; } });
34
35
  exports.allInputs = [
35
36
  bitly_input_1.BitlyInput,
36
37
  text_format_1.TextFormat,
@@ -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' | 'EphemerisService' | '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' | 'AirQualityService';
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.26.0-dev.1",
3
+ "version": "2.26.0-dev.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",