@vixoniccom/birthdays 0.7.5-dev.0 → 0.7.5-dev.2
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 +11 -0
- package/build.zip +0 -0
- package/configuration/dataGroup/DataInputs.ts +13 -6
- package/configuration/utils.ts +4 -3
- package/configuration.json +17 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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.5-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.5-dev.1...v0.7.5-dev.2) (2026-01-08)
|
|
6
|
+
|
|
7
|
+
### [0.7.5-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.5-dev.0...v0.7.5-dev.1) (2025-10-09)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* Add Talana service to app ([96e9961](https://github.com/Vixonic/store-birthdays/commit/96e9961bbb018de41f0d5cb54b6fd6256e9ae93a))
|
|
13
|
+
* add Talana service to configuration ([c0803c7](https://github.com/Vixonic/store-birthdays/commit/c0803c7e8240558543eb2dc7f755e8d51373695d))
|
|
14
|
+
* CI/CD to birthday app was added with github actions ([c6d2971](https://github.com/Vixonic/store-birthdays/commit/c6d2971d3d88fed4c3cd9b844b3c7f3f461b5a8a))
|
|
15
|
+
|
|
5
16
|
### [0.7.5-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.4...v0.7.5-dev.0) (2025-08-18)
|
|
6
17
|
|
|
7
18
|
### [0.7.4](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.10...v0.7.4) (2025-07-28)
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -10,8 +10,9 @@ export const dataInputs = [
|
|
|
10
10
|
label: 'Selecciona la fuente de los cumpleaños',
|
|
11
11
|
items: [
|
|
12
12
|
{ label: 'Documento', value: 'BirthdayAppService' },
|
|
13
|
-
{ label: '
|
|
14
|
-
{ label: '
|
|
13
|
+
{ label: 'Rexmas', value: 'RexmasBirthdayService' },
|
|
14
|
+
{ label: 'Buk', value: 'BukBirthdayService' },
|
|
15
|
+
{ label: 'Talana', value: 'TalanaBirthdayService' }
|
|
15
16
|
],
|
|
16
17
|
defaultValue: 'BirthdayAppService',
|
|
17
18
|
description: 'Selecciona la fuente de los cumpleaños. Por defecto, Documento.'
|
|
@@ -22,6 +23,12 @@ export const dataInputs = [
|
|
|
22
23
|
serviceType: 'BirthdayAppService',
|
|
23
24
|
show: serviceEnabled.birthdayAppServiceEnabled
|
|
24
25
|
}),
|
|
26
|
+
new ServiceInput({
|
|
27
|
+
id: 'rexmasService',
|
|
28
|
+
label: 'Rexmas',
|
|
29
|
+
serviceType: 'RexmasBirthdayService',
|
|
30
|
+
show: serviceEnabled.rexmasServiceEnabled
|
|
31
|
+
}),
|
|
25
32
|
new ServiceInput({
|
|
26
33
|
id: 'bukService',
|
|
27
34
|
label: 'Buk',
|
|
@@ -29,10 +36,10 @@ export const dataInputs = [
|
|
|
29
36
|
show: serviceEnabled.bukServiceEnabled
|
|
30
37
|
}),
|
|
31
38
|
new ServiceInput({
|
|
32
|
-
id: '
|
|
33
|
-
label: '
|
|
34
|
-
serviceType: '
|
|
35
|
-
show: serviceEnabled.
|
|
39
|
+
id: 'talanaService',
|
|
40
|
+
label: 'Talana',
|
|
41
|
+
serviceType: 'TalanaBirthdayService',
|
|
42
|
+
show: serviceEnabled.talanaServiceEnabled
|
|
36
43
|
}),
|
|
37
44
|
new SelectAssetKna({
|
|
38
45
|
id: 'photosZip',
|
package/configuration/utils.ts
CHANGED
|
@@ -12,7 +12,8 @@ export const ShowValidations = {
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export const serviceEnabled = {
|
|
15
|
-
bukServiceEnabled: '{{displayService}} === "BukBirthdayService"',
|
|
16
|
-
rexmasServiceEnabled: '{{displayService}} === "RexmasBirthdayService"',
|
|
17
15
|
birthdayAppServiceEnabled: '{{displayService}} === "BirthdayAppService"',
|
|
18
|
-
}
|
|
16
|
+
rexmasServiceEnabled: '{{displayService}} === "RexmasBirthdayService"',
|
|
17
|
+
bukServiceEnabled: '{{displayService}} === "BukBirthdayService"',
|
|
18
|
+
talanaServiceEnabled: '{{displayService}} === "TalanaBirthdayService"',
|
|
19
|
+
}
|
package/configuration.json
CHANGED
|
@@ -19,13 +19,17 @@
|
|
|
19
19
|
"label": "Documento",
|
|
20
20
|
"value": "BirthdayAppService"
|
|
21
21
|
},
|
|
22
|
+
{
|
|
23
|
+
"label": "Rexmas",
|
|
24
|
+
"value": "RexmasBirthdayService"
|
|
25
|
+
},
|
|
22
26
|
{
|
|
23
27
|
"label": "Buk",
|
|
24
28
|
"value": "BukBirthdayService"
|
|
25
29
|
},
|
|
26
30
|
{
|
|
27
|
-
"label": "
|
|
28
|
-
"value": "
|
|
31
|
+
"label": "Talana",
|
|
32
|
+
"value": "TalanaBirthdayService"
|
|
29
33
|
}
|
|
30
34
|
],
|
|
31
35
|
"defaultValue": "BirthdayAppService"
|
|
@@ -37,6 +41,13 @@
|
|
|
37
41
|
"type": "service-input",
|
|
38
42
|
"serviceType": "BirthdayAppService"
|
|
39
43
|
},
|
|
44
|
+
{
|
|
45
|
+
"id": "rexmasService",
|
|
46
|
+
"label": "Rexmas",
|
|
47
|
+
"show": "{{displayService}} === \"RexmasBirthdayService\"",
|
|
48
|
+
"type": "service-input",
|
|
49
|
+
"serviceType": "RexmasBirthdayService"
|
|
50
|
+
},
|
|
40
51
|
{
|
|
41
52
|
"id": "bukService",
|
|
42
53
|
"label": "Buk",
|
|
@@ -45,11 +56,11 @@
|
|
|
45
56
|
"serviceType": "BukBirthdayService"
|
|
46
57
|
},
|
|
47
58
|
{
|
|
48
|
-
"id": "
|
|
49
|
-
"label": "
|
|
50
|
-
"show": "{{displayService}} === \"
|
|
59
|
+
"id": "talanaService",
|
|
60
|
+
"label": "Talana",
|
|
61
|
+
"show": "{{displayService}} === \"TalanaBirthdayService\"",
|
|
51
62
|
"type": "service-input",
|
|
52
|
-
"serviceType": "
|
|
63
|
+
"serviceType": "TalanaBirthdayService"
|
|
53
64
|
},
|
|
54
65
|
{
|
|
55
66
|
"id": "photosZip",
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Lorenzo Alfaro Bravo"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.7.5-dev.
|
|
11
|
+
"version": "0.7.5-dev.2",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublish": "vixonic-module-packager --mode=build",
|
|
14
14
|
"watch": "vixonic-module-packager --mode=watch",
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"prerelease-dev": "standard-version --prerelease dev"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@vixoniccom/modules": "^2.20.3-dev.0",
|
|
24
23
|
"animejs": "^3.2.2",
|
|
25
24
|
"react": "^18.3.1",
|
|
26
25
|
"react-dom": "^18.3.1"
|
|
@@ -31,6 +30,7 @@
|
|
|
31
30
|
"@types/react": "^18.3.23",
|
|
32
31
|
"@types/react-dom": "^18.3.7",
|
|
33
32
|
"@vixoniccom/module-packager": "2.12.0-dev.10",
|
|
33
|
+
"@vixoniccom/modules": "^2.24.0-dev.0",
|
|
34
34
|
"standard-version": "^9.5.0"
|
|
35
35
|
}
|
|
36
36
|
}
|