@vixoniccom/birthdays 0.7.4-dev.12 → 0.7.4-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 CHANGED
@@ -2,28 +2,14 @@
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.4-dev.12](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.11...v0.7.4-dev.12) (2025-07-24)
5
+ ### [0.7.4-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.1...v0.7.4-dev.2) (2025-07-09)
6
6
 
7
- ### [0.7.4-dev.11](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.10...v0.7.4-dev.11) (2025-07-24)
8
-
9
- ### [0.7.4-dev.10](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.9...v0.7.4-dev.10) (2025-07-24)
10
-
11
- ### [0.7.4-dev.9](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.7...v0.7.4-dev.9) (2025-07-24)
12
-
13
- ### [0.7.4-dev.8](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.7...v0.7.4-dev.8) (2025-07-24)
14
-
15
- ### [0.7.4-dev.7](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.6...v0.7.4-dev.7) (2025-07-14)
16
-
17
- ### [0.7.4-dev.6](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.5...v0.7.4-dev.6) (2025-07-14)
7
+ ### [0.7.4-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.1) (2025-07-09)
18
8
 
19
9
 
20
10
  ### Features
21
11
 
22
- * added sonarque propertie ([63e2d7b](https://github.com/Vixonic/store-birthdays/commit/63e2d7b297d83ed9e16f7f54372d5289eb67658b))
23
-
24
- ### [0.7.4-dev.5](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.5) (2025-07-09)
25
-
26
- ### [0.7.4-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.1) (2025-07-09)
12
+ * Add redirect button for document access and update parameters for document ID ([75969b6](https://github.com/Vixonic/store-birthdays/commit/75969b63e1f146ea8411939b19712a3e90311f2c))
27
13
 
28
14
  ### [0.7.4-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.3...v0.7.4-dev.0) (2025-06-25)
29
15
 
package/build.zip CHANGED
Binary file
@@ -1,8 +1,6 @@
1
- import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
1
+ import { Label, RedirectButton, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
2
2
  import { serviceEnabled } from '../utils'
3
3
 
4
-
5
-
6
4
  export const dataInputs = [
7
5
  new Label({ label: 'Datos' }),
8
6
  new SelectInput({
@@ -34,6 +32,7 @@ export const dataInputs = [
34
32
  serviceType: 'RexmasBirthdayService',
35
33
  show: serviceEnabled.rexmasServiceEnabled
36
34
  }),
35
+ new RedirectButton({id: 'documentService', label: 'Ir al documento', show: serviceEnabled.birthdayAppServiceEnabled}),
37
36
  new SelectAssetKna({
38
37
  id: 'photosZip',
39
38
  label: 'Archivo Zip para fotos',
@@ -1,8 +1,18 @@
1
- import { Group } from '@vixoniccom/modules'
1
+ import { Group, RedirectButton } from '@vixoniccom/modules'
2
2
  import { dataInputs } from './DataInputs'
3
+ import { serviceEnabled } from '../utils'
3
4
 
4
5
  export const dataGroup = new Group({
5
6
  id: 'dataGroup',
6
7
  label: 'Configuración',
7
8
  items: [...dataInputs],
8
9
  })
10
+
11
+ export const documentTab = new Group({
12
+ id: 'documentTab',
13
+ label: 'Documento',
14
+ items: [
15
+ new RedirectButton({id: 'documentService', label: 'Ir al documento', show: serviceEnabled.birthdayAppServiceEnabled}),
16
+ ],
17
+ show: serviceEnabled.birthdayAppServiceEnabled,
18
+ })
@@ -2,7 +2,8 @@ import { Configuration } from '@vixoniccom/modules'
2
2
  import { dataGroup } from './dataGroup'
3
3
  import { appearanceGroup } from './appearanceGroup'
4
4
  import { standardGroup } from './standardGroup'
5
+ import { documentTab } from './dataGroup/index';
5
6
 
6
7
  export const configuration = new Configuration({
7
- schema: [dataGroup, appearanceGroup, standardGroup],
8
+ schema: [documentTab, dataGroup, appearanceGroup, standardGroup],
8
9
  })
@@ -1,5 +1,19 @@
1
1
  {
2
2
  "schema": [
3
+ {
4
+ "id": "documentTab",
5
+ "label": "Documento",
6
+ "show": "{{displayService}} === \"BirthdayAppService\"",
7
+ "type": "group",
8
+ "items": [
9
+ {
10
+ "id": "documentService",
11
+ "label": "Ir al documento",
12
+ "show": "{{displayService}} === \"BirthdayAppService\"",
13
+ "type": "redirect-button"
14
+ }
15
+ ]
16
+ },
3
17
  {
4
18
  "id": "dataGroup",
5
19
  "label": "Configuración",
@@ -51,6 +65,12 @@
51
65
  "type": "service-input",
52
66
  "serviceType": "RexmasBirthdayService"
53
67
  },
68
+ {
69
+ "id": "documentService",
70
+ "label": "Ir al documento",
71
+ "show": "{{displayService}} === \"BirthdayAppService\"",
72
+ "type": "redirect-button"
73
+ },
54
74
  {
55
75
  "id": "photosZip",
56
76
  "label": "Archivo Zip para fotos",
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": "Lorenzo Alfaro Bravo"
10
10
  },
11
- "version": "0.7.4-dev.12",
11
+ "version": "0.7.4-dev.2",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",
@@ -1,30 +0,0 @@
1
- name: Sonarqube Analysis
2
-
3
- on:
4
- push:
5
- branches:
6
- - development
7
- pull_request:
8
- types: [opened, synchronize, reopened]
9
-
10
- jobs:
11
- sonarqube:
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v4
15
- with:
16
- # Disabling shallow clone is recommended for improving relevancy of reporting.
17
- fetch-depth: 0
18
-
19
- - name: SonarQube Scan
20
- uses: sonarsource/sonarqube-scan-action@master
21
- env:
22
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
23
- SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
24
-
25
- - name: SonarQube Quality Gate Check
26
- uses: sonarsource/sonarqube-quality-gate-action@master
27
- timeout-minutes: 5
28
- env:
29
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
30
- SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
@@ -1 +0,0 @@
1
- sonar.projectKey=Vixonic_store-birthdays_7769e3be-dc9d-4ca7-bf1a-4bfa182a053c