@twin.org/standards-gs1 0.0.2-next.2 → 0.0.2-next.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/dist/cjs/index.cjs +0 -1
- package/dist/esm/index.mjs +0 -1
- package/docs/changelog.md +14 -0
- package/docs/reference/variables/ActionTypes.md +1 -1
- package/docs/reference/variables/BizStepTypes.md +1 -1
- package/docs/reference/variables/DispositionTypes.md +1 -1
- package/docs/reference/variables/EpcisErrorTypes.md +1 -1
- package/docs/reference/variables/EventTypes.md +1 -1
- package/docs/reference/variables/GS1Contexts.md +1 -1
- package/docs/reference/variables/Gs1IdTypes.md +1 -1
- package/docs/reference/variables/Gs1IdentifierTypes.md +1 -1
- package/docs/reference/variables/Gs1Types.md +1 -1
- package/docs/reference/variables/SubSiteAttributes.md +1 -1
- package/docs/reference/variables/SubSiteTypes.md +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -647,7 +647,6 @@ class Gs1IdentifiersValidation {
|
|
|
647
647
|
else {
|
|
648
648
|
const isValid = core.Validation.arrayOneOf(propertyName, specificParts[1], Object.values(Gs1IdTypes), failures);
|
|
649
649
|
if (isValid) {
|
|
650
|
-
// eslint-disable-next-line default-case
|
|
651
650
|
switch (specificParts[1]) {
|
|
652
651
|
case Gs1IdTypes.Gtin:
|
|
653
652
|
Gs1IdentifiersValidation.epcIdGtin(propertyName, urn, failures);
|
package/dist/esm/index.mjs
CHANGED
|
@@ -645,7 +645,6 @@ class Gs1IdentifiersValidation {
|
|
|
645
645
|
else {
|
|
646
646
|
const isValid = Validation.arrayOneOf(propertyName, specificParts[1], Object.values(Gs1IdTypes), failures);
|
|
647
647
|
if (isValid) {
|
|
648
|
-
// eslint-disable-next-line default-case
|
|
649
648
|
switch (specificParts[1]) {
|
|
650
649
|
case Gs1IdTypes.Gtin:
|
|
651
650
|
Gs1IdentifiersValidation.epcIdGtin(propertyName, urn, failures);
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/standards-gs1 - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.4](https://github.com/twinfoundation/standards/compare/standards-gs1-v0.0.2-next.3...standards-gs1-v0.0.2-next.4) (2025-09-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-gs1:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.2-next.3](https://github.com/twinfoundation/standards/compare/standards-gs1-v0.0.2-next.2...standards-gs1-v0.0.2-next.3) (2025-08-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* eslint migration to flat config ([648c1a1](https://github.com/twinfoundation/standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
16
|
+
|
|
3
17
|
## [0.0.2-next.2](https://github.com/twinfoundation/standards/compare/standards-gs1-v0.0.2-next.1...standards-gs1-v0.0.2-next.2) (2025-08-19)
|
|
4
18
|
|
|
5
19
|
|