@vixoniccom/birthdays 0.7.7-dev.19 → 0.7.7-dev.20

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
+ ### [0.7.7-dev.20](https://github.com/Vixonic/store-birthdays/compare/v0.7.7-dev.19...v0.7.7-dev.20) (2026-03-17)
6
+
5
7
  ### [0.7.7-dev.19](https://github.com/Vixonic/store-birthdays/compare/v0.7.7-dev.18...v0.7.7-dev.19) (2026-03-17)
6
8
 
7
9
  ### [0.7.7-dev.18](https://github.com/Vixonic/store-birthdays/compare/v0.7.7-dev.17...v0.7.7-dev.18) (2026-03-17)
package/build.zip CHANGED
Binary file
@@ -10,6 +10,7 @@ export const dataInputs = [
10
10
  label: 'Selecciona la fuente de los cumpleaños',
11
11
  items: [
12
12
  { label: 'Documento', value: 'BirthdayAppService' },
13
+ { label: 'Administración local', value: 'LocalBirthdayAppService' },
13
14
  { label: 'Rexmas', value: 'RexmasBirthdayService' },
14
15
  { label: 'Buk', value: 'BukBirthdayService' },
15
16
  { label: 'Talana', value: 'TalanaBirthdayService' }
@@ -23,6 +24,12 @@ export const dataInputs = [
23
24
  serviceType: 'BirthdayAppService',
24
25
  show: serviceEnabled.birthdayAppServiceEnabled
25
26
  }),
27
+ new ServiceInput({
28
+ id: 'localService',
29
+ label: 'Administración local',
30
+ serviceType: 'LocalBirthdayAppService',
31
+ show: serviceEnabled.localBirthdayAppServiceEnabled
32
+ }),
26
33
  new ServiceInput({
27
34
  id: 'rexmasService',
28
35
  label: 'Rexmas',
@@ -13,6 +13,7 @@ export const ShowValidations = {
13
13
 
14
14
  export const serviceEnabled = {
15
15
  birthdayAppServiceEnabled: '{{displayService}} === "BirthdayAppService"',
16
+ localBirthdayAppServiceEnabled: '{{displayService}} === "LocalBirthdayAppService"',
16
17
  rexmasServiceEnabled: '{{displayService}} === "RexmasBirthdayService"',
17
18
  bukServiceEnabled: '{{displayService}} === "BukBirthdayService"',
18
19
  talanaServiceEnabled: '{{displayService}} === "TalanaBirthdayService"',
@@ -19,6 +19,10 @@
19
19
  "label": "Documento",
20
20
  "value": "BirthdayAppService"
21
21
  },
22
+ {
23
+ "label": "Administración local",
24
+ "value": "LocalBirthdayAppService"
25
+ },
22
26
  {
23
27
  "label": "Rexmas",
24
28
  "value": "RexmasBirthdayService"
@@ -41,6 +45,13 @@
41
45
  "type": "service-input",
42
46
  "serviceType": "BirthdayAppService"
43
47
  },
48
+ {
49
+ "id": "localService",
50
+ "label": "Administración local",
51
+ "show": "{{displayService}} === \"LocalBirthdayAppService\"",
52
+ "type": "service-input",
53
+ "serviceType": "LocalBirthdayAppService"
54
+ },
44
55
  {
45
56
  "id": "rexmasService",
46
57
  "label": "Rexmas",
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": "Lorenzo Alfaro Bravo"
10
10
  },
11
- "version": "0.7.7-dev.19",
11
+ "version": "0.7.7-dev.20",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",
@@ -30,7 +30,7 @@
30
30
  "@types/react": "^18.3.23",
31
31
  "@types/react-dom": "^18.3.7",
32
32
  "@vixoniccom/module-packager": "2.12.0-dev.10",
33
- "@vixoniccom/modules": "^2.25.0-dev.1",
33
+ "@vixoniccom/modules": "^2.25.0-dev.5",
34
34
  "standard-version": "^9.5.0"
35
35
  }
36
36
  }