@shakerquiz/utilities 4.0.72 → 4.0.74
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/.github/workflows/publish.yml +2 -2
- package/package.json +1 -1
- package/source/entities/registration-cancellation.js +7 -0
- package/source/entities/registration-confirmation.js +10 -0
- package/source/entities/registration-promotion.js +8 -0
- package/source/entities/registration-reservation.js +8 -0
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
ref: aquamarine
|
|
25
25
|
- uses: actions/setup-node@v6
|
|
26
26
|
with:
|
|
27
|
-
node-version:
|
|
27
|
+
node-version: lts/*
|
|
28
28
|
- uses: oven-sh/setup-bun@v2
|
|
29
29
|
- run: git config user.name "github-actions[bot]"
|
|
30
30
|
- run: git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
strategy:
|
|
40
40
|
fail-fast: false
|
|
41
41
|
matrix:
|
|
42
|
-
repo: [ url, contracts ]
|
|
42
|
+
repo: [ url, contracts, translations ]
|
|
43
43
|
steps:
|
|
44
44
|
- name: Update and Publish ${{ github.repository_owner }}/${{ matrix.repo }}
|
|
45
45
|
env:
|
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const RegistrationConfirmation = /** @type {const} */ ({
|
|
2
|
+
'Expired': 'Expired',
|
|
3
|
+
'Prohibited': 'Prohibited',
|
|
4
|
+
'Rejected': 'Rejected',
|
|
5
|
+
'Fulfilled': 'Fulfilled',
|
|
6
|
+
'Active': 'Active',
|
|
7
|
+
'Scheduled': 'Scheduled',
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
export const RegistrationConfirmations = Object.values(RegistrationConfirmation)
|