@vixoniccom/birthdays 0.7.10-dev.2 → 0.7.10-dev.4
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 +8 -4
- package/build.zip +0 -0
- package/configuration/dataGroup/DataInputs.ts +0 -15
- package/configuration.json +0 -37
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +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.10-dev.
|
|
5
|
+
### [0.7.10-dev.4](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.3...v0.7.10-dev.4) (2026-04-23)
|
|
6
6
|
|
|
7
|
-
### [0.7.
|
|
7
|
+
### [0.7.10-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.1...v0.7.10-dev.3) (2026-04-23)
|
|
8
8
|
|
|
9
|
-
### [0.7.
|
|
9
|
+
### [0.7.10-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.1...v0.7.10-dev.2) (2026-04-23)
|
|
10
10
|
|
|
11
|
-
### [0.7.
|
|
11
|
+
### [0.7.10-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.9...v0.7.10-dev.1) (2026-04-23)
|
|
12
|
+
|
|
13
|
+
### [0.7.10-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.9...v0.7.10-dev.0) (2026-04-23)
|
|
14
|
+
|
|
15
|
+
### [0.7.9](https://github.com/Vixonic/store-birthdays/compare/v0.7.8...v0.7.9) (2026-04-23)
|
|
12
16
|
|
|
13
17
|
|
|
14
18
|
### Bug Fixes
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -55,21 +55,6 @@ export const dataInputs = [
|
|
|
55
55
|
show: serviceEnabled.birthdayAppServiceEnabled
|
|
56
56
|
}),
|
|
57
57
|
new Label({ label: 'Funcionamiento' }),
|
|
58
|
-
new SelectInput({
|
|
59
|
-
id: 'updateTime',
|
|
60
|
-
label: 'Actualización',
|
|
61
|
-
items: [
|
|
62
|
-
{ label: '10 minutos', value: 600000 },
|
|
63
|
-
{ label: '30 minutos', value: 1800000 },
|
|
64
|
-
{ label: '1 hora', value: 3600000 },
|
|
65
|
-
{ label: '6 horas', value: 21600000 },
|
|
66
|
-
{ label: '12 horas', value: 43200000 },
|
|
67
|
-
{ label: 'Diario', value: 86400000 },
|
|
68
|
-
{ label: 'Semanal', value: 604800000 },
|
|
69
|
-
],
|
|
70
|
-
defaultValue: 86400000,
|
|
71
|
-
description: 'Tiempo de actualización de los datos. Por defecto, diario.',
|
|
72
|
-
}),
|
|
73
58
|
new TextInput({ id: 'defaultMessage', label: 'Sin cumpleaños' }),
|
|
74
59
|
new TextFormat({ id: 'defaultMessageFormat', label: 'Formato Mensaje sin cumpleaños' }),
|
|
75
60
|
]
|
package/configuration.json
CHANGED
|
@@ -87,43 +87,6 @@
|
|
|
87
87
|
"type": "label",
|
|
88
88
|
"label": "Funcionamiento"
|
|
89
89
|
},
|
|
90
|
-
{
|
|
91
|
-
"id": "updateTime",
|
|
92
|
-
"label": "Actualización",
|
|
93
|
-
"type": "select-input",
|
|
94
|
-
"description": "Tiempo de actualización de los datos. Por defecto, diario.",
|
|
95
|
-
"items": [
|
|
96
|
-
{
|
|
97
|
-
"label": "10 minutos",
|
|
98
|
-
"value": 600000
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"label": "30 minutos",
|
|
102
|
-
"value": 1800000
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"label": "1 hora",
|
|
106
|
-
"value": 3600000
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"label": "6 horas",
|
|
110
|
-
"value": 21600000
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"label": "12 horas",
|
|
114
|
-
"value": 43200000
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"label": "Diario",
|
|
118
|
-
"value": 86400000
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"label": "Semanal",
|
|
122
|
-
"value": 604800000
|
|
123
|
-
}
|
|
124
|
-
],
|
|
125
|
-
"defaultValue": 86400000
|
|
126
|
-
},
|
|
127
90
|
{
|
|
128
91
|
"id": "defaultMessage",
|
|
129
92
|
"label": "Sin cumpleaños",
|
package/package.json
CHANGED