@vixoniccom/birthdays 0.7.10-dev.6 → 0.7.10-dev.8
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 +9 -0
- package/build.zip +0 -0
- package/configuration/dataGroup/DataInputs.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
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.8](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.7...v0.7.10-dev.8) (2026-04-27)
|
|
6
|
+
|
|
7
|
+
### [0.7.10-dev.7](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.6...v0.7.10-dev.7) (2026-04-24)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* VXD-911 handle API errors and fix error where the default message for empty data is not displayed ([eeb5bab](https://github.com/Vixonic/store-birthdays/commit/eeb5bab0991070a461c2341a11da1ebd8acd2dc7))
|
|
13
|
+
|
|
5
14
|
### [0.7.10-dev.6](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.5...v0.7.10-dev.6) (2026-04-24)
|
|
6
15
|
|
|
7
16
|
### [0.7.10-dev.5](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.4...v0.7.10-dev.5) (2026-04-24)
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -52,7 +52,7 @@ export const dataInputs = [
|
|
|
52
52
|
id: 'photosZip',
|
|
53
53
|
label: 'Archivo Zip para fotos',
|
|
54
54
|
extensions: ['zip'],
|
|
55
|
-
show: serviceEnabled.birthdayAppServiceEnabled
|
|
55
|
+
show: `${serviceEnabled.birthdayAppServiceEnabled} || ${serviceEnabled.localAppSheetsServiceEnabled}`
|
|
56
56
|
}),
|
|
57
57
|
new Label({ label: 'Funcionamiento' }),
|
|
58
58
|
new TextInput({ id: 'defaultMessage', label: 'Sin cumpleaños' }),
|
package/package.json
CHANGED