@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.
@@ -24,7 +24,7 @@ jobs:
24
24
  ref: aquamarine
25
25
  - uses: actions/setup-node@v6
26
26
  with:
27
- node-version: latest
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "4.0.72",
4
+ "version": "4.0.74",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -0,0 +1,7 @@
1
+ export const RegistrationCancellation = /** @type {const} */ ({
2
+ 'Expired': 'Expired',
3
+ 'Fulfilled': 'Fulfilled',
4
+ 'Active': 'Active',
5
+ })
6
+
7
+ export const RegistrationCancellations = Object.values(RegistrationCancellation)
@@ -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)
@@ -0,0 +1,8 @@
1
+ export const RegistrationPromotion = /** @type {const} */ ({
2
+ 'Expired': 'Expired',
3
+ 'Fulfilled': 'Fulfilled',
4
+ 'Rejected': 'Rejected',
5
+ 'Active': 'Active',
6
+ })
7
+
8
+ export const RegistrationPromotions = Object.values(RegistrationPromotion)
@@ -0,0 +1,8 @@
1
+ export const RegistrationReservation = /** @type {const} */ ({
2
+ 'Expired': 'Expired',
3
+ 'Fulfilled': 'Fulfilled',
4
+ 'Rejected': 'Rejected',
5
+ 'Active': 'Active',
6
+ })
7
+
8
+ export const RegistrationReservations = Object.values(RegistrationReservation)