@twin.org/standards-gs1 0.0.1-next.21

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.
Files changed (89) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +21 -0
  3. package/dist/cjs/index.cjs +977 -0
  4. package/dist/esm/index.mjs +961 -0
  5. package/dist/types/dataTypes/gs1DataTypes.d.ts +10 -0
  6. package/dist/types/entities/gs1Location.d.ts +69 -0
  7. package/dist/types/identifiers/gs1Identifiers.d.ts +9 -0
  8. package/dist/types/index.d.ts +34 -0
  9. package/dist/types/models/epc/IEPCClassUri.d.ts +17 -0
  10. package/dist/types/models/epcis20/IAggregationEvent.d.ts +10 -0
  11. package/dist/types/models/epcis20/IAssociationEvent.d.ts +10 -0
  12. package/dist/types/models/epcis20/IBaseAggregationEvent.d.ts +19 -0
  13. package/dist/types/models/epcis20/IBizTransaction.d.ts +13 -0
  14. package/dist/types/models/epcis20/IDestination.d.ts +13 -0
  15. package/dist/types/models/epcis20/IEpcisDocument.d.ts +28 -0
  16. package/dist/types/models/epcis20/IEpcisEvent.d.ts +44 -0
  17. package/dist/types/models/epcis20/IEpcisEventDetails.d.ts +35 -0
  18. package/dist/types/models/epcis20/IEpcisQuery.d.ts +6 -0
  19. package/dist/types/models/epcis20/IEpcisQueryDocument.d.ts +54 -0
  20. package/dist/types/models/epcis20/IObjectEvent.d.ts +25 -0
  21. package/dist/types/models/epcis20/IQuantity.d.ts +13 -0
  22. package/dist/types/models/epcis20/ISensorElement.d.ts +15 -0
  23. package/dist/types/models/epcis20/ISensorMetadata.d.ts +21 -0
  24. package/dist/types/models/epcis20/ISensorReport.d.ts +17 -0
  25. package/dist/types/models/epcis20/ISimpleLocation.d.ts +9 -0
  26. package/dist/types/models/epcis20/ISource.d.ts +13 -0
  27. package/dist/types/models/epcis20/actionTypes.d.ts +21 -0
  28. package/dist/types/models/epcis20/bizStepTypes.d.ts +52 -0
  29. package/dist/types/models/epcis20/dispositionTypes.d.ts +44 -0
  30. package/dist/types/models/epcis20/epcisErrorTypes.d.ts +11 -0
  31. package/dist/types/models/epcis20/epcisEventUnionType.d.ts +7 -0
  32. package/dist/types/models/epcis20/eventTypes.d.ts +29 -0
  33. package/dist/types/models/gs1/gs1IdTypes.d.ts +89 -0
  34. package/dist/types/models/gs1/gs1IdentifierTypes.d.ts +25 -0
  35. package/dist/types/models/gs1/gs1Types.d.ts +13 -0
  36. package/dist/types/models/gs1/subSiteAttributes.d.ts +145 -0
  37. package/dist/types/models/gs1/subSiteTypes.d.ts +77 -0
  38. package/dist/types/utils/gs1IdentifiersValidation.d.ts +57 -0
  39. package/dist/types/utils/gs1Is.d.ts +17 -0
  40. package/dist/types/utils/gs1Validation.d.ts +16 -0
  41. package/docs/changelog.md +5 -0
  42. package/docs/examples.md +1 -0
  43. package/docs/reference/classes/Gs1DataTypes.md +26 -0
  44. package/docs/reference/classes/Gs1Identifiers.md +25 -0
  45. package/docs/reference/classes/Gs1IdentifiersValidation.md +215 -0
  46. package/docs/reference/classes/Gs1Is.md +57 -0
  47. package/docs/reference/classes/Gs1Location.md +135 -0
  48. package/docs/reference/classes/Gs1Validation.md +53 -0
  49. package/docs/reference/index.md +57 -0
  50. package/docs/reference/interfaces/IAggregationEvent.md +223 -0
  51. package/docs/reference/interfaces/IAssociationEvent.md +223 -0
  52. package/docs/reference/interfaces/IBizTransaction.md +19 -0
  53. package/docs/reference/interfaces/IDestination.md +19 -0
  54. package/docs/reference/interfaces/IEPCClassUri.md +27 -0
  55. package/docs/reference/interfaces/IEpcisDocument.md +41 -0
  56. package/docs/reference/interfaces/IEpcisEvent.md +79 -0
  57. package/docs/reference/interfaces/IEpcisEventDetails.md +167 -0
  58. package/docs/reference/interfaces/IEpcisQuery.md +7 -0
  59. package/docs/reference/interfaces/IEpcisQueryDocument.md +81 -0
  60. package/docs/reference/interfaces/IObjectEvent.md +211 -0
  61. package/docs/reference/interfaces/IQuantity.md +19 -0
  62. package/docs/reference/interfaces/ISensorElement.md +19 -0
  63. package/docs/reference/interfaces/ISensorMetadata.md +35 -0
  64. package/docs/reference/interfaces/ISensorReport.md +27 -0
  65. package/docs/reference/interfaces/ISimpleLocation.md +11 -0
  66. package/docs/reference/interfaces/ISource.md +19 -0
  67. package/docs/reference/type-aliases/ActionTypes.md +5 -0
  68. package/docs/reference/type-aliases/BizStepTypes.md +5 -0
  69. package/docs/reference/type-aliases/DispositionTypes.md +5 -0
  70. package/docs/reference/type-aliases/EpcisErrorTypes.md +5 -0
  71. package/docs/reference/type-aliases/EpcisEventUnionType.md +5 -0
  72. package/docs/reference/type-aliases/EventTypes.md +5 -0
  73. package/docs/reference/type-aliases/Gs1IdTypes.md +5 -0
  74. package/docs/reference/type-aliases/Gs1IdentifierTypes.md +5 -0
  75. package/docs/reference/type-aliases/Gs1Types.md +5 -0
  76. package/docs/reference/type-aliases/SubSiteAttributes.md +7 -0
  77. package/docs/reference/type-aliases/SubSiteTypes.md +7 -0
  78. package/docs/reference/variables/ActionTypes.md +25 -0
  79. package/docs/reference/variables/BizStepTypes.md +173 -0
  80. package/docs/reference/variables/DispositionTypes.md +141 -0
  81. package/docs/reference/variables/EpcisErrorTypes.md +15 -0
  82. package/docs/reference/variables/EventTypes.md +37 -0
  83. package/docs/reference/variables/Gs1IdTypes.md +127 -0
  84. package/docs/reference/variables/Gs1IdentifierTypes.md +31 -0
  85. package/docs/reference/variables/Gs1Types.md +13 -0
  86. package/docs/reference/variables/SubSiteAttributes.md +207 -0
  87. package/docs/reference/variables/SubSiteTypes.md +105 -0
  88. package/locales/en.json +12 -0
  89. package/package.json +41 -0
@@ -0,0 +1,141 @@
1
+ # Variable: DispositionTypes
2
+
3
+ > `const` **DispositionTypes**: `object`
4
+
5
+ EPCIS 2.0 disposition types.
6
+
7
+ See EPCIS CVB for more details.
8
+
9
+ ## Type declaration
10
+
11
+ ### Active
12
+
13
+ > `readonly` **Active**: `"active"` = `"active"`
14
+
15
+ ### ContainerClosed
16
+
17
+ > `readonly` **ContainerClosed**: `"container_closed"` = `"container_closed"`
18
+
19
+ ### Damaged
20
+
21
+ > `readonly` **Damaged**: `"damaged"` = `"damaged"`
22
+
23
+ ### Destroyed
24
+
25
+ > `readonly` **Destroyed**: `"destroyed"` = `"destroyed"`
26
+
27
+ ### Dispensed
28
+
29
+ > `readonly` **Dispensed**: `"dispensed"` = `"dispensed"`
30
+
31
+ ### Disposed
32
+
33
+ > `readonly` **Disposed**: `"disposed"` = `"disposed"`
34
+
35
+ ### Encoded
36
+
37
+ > `readonly` **Encoded**: `"encoded"` = `"encoded"`
38
+
39
+ ### Expired
40
+
41
+ > `readonly` **Expired**: `"expired"` = `"expired"`
42
+
43
+ ### InProgress
44
+
45
+ > `readonly` **InProgress**: `"in_progress"` = `"in_progress"`
46
+
47
+ ### InTransit
48
+
49
+ > `readonly` **InTransit**: `"in_transit"` = `"in_transit"`
50
+
51
+ ### Inactive
52
+
53
+ > `readonly` **Inactive**: `"inactive"` = `"inactive"`
54
+
55
+ ### NoPedigreeMatch
56
+
57
+ > `readonly` **NoPedigreeMatch**: `"no_pedigree_match"` = `"no_pedigree_match"`
58
+
59
+ ### NonSellableOther
60
+
61
+ > `readonly` **NonSellableOther**: `"non_sellable_other"` = `"non_sellable_other"`
62
+
63
+ ### PartiallyDispensed
64
+
65
+ > `readonly` **PartiallyDispensed**: `"partially_dispensed"` = `"partially_dispensed"`
66
+
67
+ ### Recalled
68
+
69
+ > `readonly` **Recalled**: `"recalled"` = `"recalled"`
70
+
71
+ ### Reserved
72
+
73
+ > `readonly` **Reserved**: `"reserved"` = `"reserved"`
74
+
75
+ ### RetailSold
76
+
77
+ > `readonly` **RetailSold**: `"retail_sold"` = `"retail_sold"`
78
+
79
+ ### Returned
80
+
81
+ > `readonly` **Returned**: `"returned"` = `"returned"`
82
+
83
+ ### SellableAccessible
84
+
85
+ > `readonly` **SellableAccessible**: `"sellable_accessible"` = `"sellable_accessible"`
86
+
87
+ ### SellableNotAccessible
88
+
89
+ > `readonly` **SellableNotAccessible**: `"sellable_not_accessible"` = `"sellable_not_accessible"`
90
+
91
+ ### Stolen
92
+
93
+ > `readonly` **Stolen**: `"stolen"` = `"stolen"`
94
+
95
+ ### Unknown
96
+
97
+ > `readonly` **Unknown**: `"unknown"` = `"unknown"`
98
+
99
+ ### Available
100
+
101
+ > `readonly` **Available**: `"available"` = `"available"`
102
+
103
+ ### CompletenessVerified
104
+
105
+ > `readonly` **CompletenessVerified**: `"completeness_verified"` = `"completeness_verified"`
106
+
107
+ ### CompletenessInferred
108
+
109
+ > `readonly` **CompletenessInferred**: `"completeness_inferred"` = `"completeness_inferred"`
110
+
111
+ ### Conformant
112
+
113
+ > `readonly` **Conformant**: `"conformant"` = `"conformant"`
114
+
115
+ ### ContainerOpen
116
+
117
+ > `readonly` **ContainerOpen**: `"container_open"` = `"container_open"`
118
+
119
+ ### MismatchInstance
120
+
121
+ > `readonly` **MismatchInstance**: `"mismatch_instance"` = `"mismatch_instance"`
122
+
123
+ ### MismatchClass
124
+
125
+ > `readonly` **MismatchClass**: `"mismatch_class"` = `"mismatch_class"`
126
+
127
+ ### MismatchQuantity
128
+
129
+ > `readonly` **MismatchQuantity**: `"mismatch_quantity"` = `"mismatch_quantity"`
130
+
131
+ ### NeedsReplacement
132
+
133
+ > `readonly` **NeedsReplacement**: `"needs_replacement"` = `"needs_replacement"`
134
+
135
+ ### NonConformant
136
+
137
+ > `readonly` **NonConformant**: `"non_conformant"` = `"non_conformant"`
138
+
139
+ ### Unavailable
140
+
141
+ > `readonly` **Unavailable**: `"unavailable"` = `"unavailable"`
@@ -0,0 +1,15 @@
1
+ # Variable: EpcisErrorTypes
2
+
3
+ > `const` **EpcisErrorTypes**: `object`
4
+
5
+ EPCIS Error types.
6
+
7
+ ## Type declaration
8
+
9
+ ### ValidationFailed
10
+
11
+ > `readonly` **ValidationFailed**: `"epcisException:ValidationException"` = `"epcisException:ValidationException"`
12
+
13
+ ### NoSuchResource
14
+
15
+ > `readonly` **NoSuchResource**: `"epcisException:NoSuchResourceException"` = `"epcisException:NoSuchResourceException"`
@@ -0,0 +1,37 @@
1
+ # Variable: EventTypes
2
+
3
+ > `const` **EventTypes**: `object`
4
+
5
+ EPCIS 2.0 event types.
6
+
7
+ ## Type declaration
8
+
9
+ ### ObjectEvent
10
+
11
+ > `readonly` **ObjectEvent**: `"ObjectEvent"` = `"ObjectEvent"`
12
+
13
+ ObjectEvent.
14
+
15
+ ### AggregationEvent
16
+
17
+ > `readonly` **AggregationEvent**: `"AggregationEvent"` = `"AggregationEvent"`
18
+
19
+ Aggregation Event.
20
+
21
+ ### AssociationEvent
22
+
23
+ > `readonly` **AssociationEvent**: `"AssociationEvent"` = `"AssociationEvent"`
24
+
25
+ Association Event.
26
+
27
+ ### TransformationEvent
28
+
29
+ > `readonly` **TransformationEvent**: `"TransformationEvent"` = `"TransformationEvent"`
30
+
31
+ Transformation Event.
32
+
33
+ ### TransactionEvent
34
+
35
+ > `readonly` **TransactionEvent**: `"TransactionEvent"` = `"TransactionEvent"`
36
+
37
+ Transaction Event.
@@ -0,0 +1,127 @@
1
+ # Variable: Gs1IdTypes
2
+
3
+ > `const` **Gs1IdTypes**: `object`
4
+
5
+ GS1 EPC Identifiers.
6
+
7
+ ## Type declaration
8
+
9
+ ### Gtin
10
+
11
+ > `readonly` **Gtin**: `"sgtin"` = `"sgtin"`
12
+
13
+ GTIN - Trade Item.
14
+
15
+ ### Sscc
16
+
17
+ > `readonly` **Sscc**: `"sscc"` = `"sscc"`
18
+
19
+ SSCC - Logistics Unit.
20
+
21
+ ### Gln
22
+
23
+ > `readonly` **Gln**: `"sgln"` = `"sgln"`
24
+
25
+ GLN - Location.
26
+
27
+ ### Grai
28
+
29
+ > `readonly` **Grai**: `"grai"` = `"grai"`
30
+
31
+ GRAI - Returnable Asset.
32
+
33
+ ### Giai
34
+
35
+ > `readonly` **Giai**: `"giai"` = `"giai"`
36
+
37
+ GIAI - Fixed Asset.
38
+
39
+ ### GsrnRecipient
40
+
41
+ > `readonly` **GsrnRecipient**: `"gsrn"` = `"gsrn"`
42
+
43
+ GSRN - Recipient - Hospital Admission or Club Membership.
44
+
45
+ ### GsrnProvider
46
+
47
+ > `readonly` **GsrnProvider**: `"gsrnp"` = `"gsrnp"`
48
+
49
+ GSRN - Provider - Medical Caregiver or Loyalty Club.
50
+
51
+ ### Gtdi
52
+
53
+ > `readonly` **Gtdi**: `"gtdi"` = `"gtdi"`
54
+
55
+ GDTI - Document.
56
+
57
+ ### None
58
+
59
+ > `readonly` **None**: `"cpi"` = `"cpi"`
60
+
61
+ Technical Industries for unique identification of parts and components.
62
+
63
+ ### Gcn
64
+
65
+ > `readonly` **Gcn**: `"sgcn"` = `"sgcn"`
66
+
67
+ GCN - Coupon.
68
+
69
+ ### Ginc
70
+
71
+ > `readonly` **Ginc**: `"ginc"` = `"ginc"`
72
+
73
+ Logical grouping of goods intended for transport as a whole assigned by a freight forwarder.
74
+
75
+ ### Gsin
76
+
77
+ > `readonly` **Gsin**: `"gsin"` = `"gsin"`
78
+
79
+ Logical grouping of logistic units travelling under one dispatch advice and/or bill of lading.
80
+
81
+ ### Ai
82
+
83
+ > `readonly` **Ai**: `"itip"` = `"itip"`
84
+
85
+ One of multiple pieces comprising, and subordinate to, a whole.
86
+
87
+ ### GtinTpx
88
+
89
+ > `readonly` **GtinTpx**: `"upui"` = `"upui"`
90
+
91
+ Pack identification to combat illicit trade.
92
+
93
+ ### GlnAi
94
+
95
+ > `readonly` **GlnAi**: `"pgln"` = `"pgln"`
96
+
97
+ Identification of Economic Operator, Owning party or processing party in CoC/CoO.
98
+
99
+ ### Unspecified
100
+
101
+ > `readonly` **Unspecified**: `"gid"` = `"gid"`
102
+
103
+ Unspecified.
104
+
105
+ ### UsDod
106
+
107
+ > `readonly` **UsDod**: `"usdod"` = `"usdod"`
108
+
109
+ US Dept of Defense supply chain.
110
+
111
+ ### AerospaceDefence
112
+
113
+ > `readonly` **AerospaceDefence**: `"adi"` = `"adi"`
114
+
115
+ Aerospace and Defense sector for unique identification of aircraft and other parts and items.
116
+
117
+ ### Intermodal
118
+
119
+ > `readonly` **Intermodal**: `"bic"` = `"bic"`
120
+
121
+ Intermodal shipping containers.
122
+
123
+ ### Vessel
124
+
125
+ > `readonly` **Vessel**: `"imovn"` = `"imovn"`
126
+
127
+ Vessel Identification.
@@ -0,0 +1,31 @@
1
+ # Variable: Gs1IdentifierTypes
2
+
3
+ > `const` **Gs1IdentifierTypes**: `object`
4
+
5
+ The types of GS1 Identifier data.
6
+
7
+ ## Type declaration
8
+
9
+ ### EpcId
10
+
11
+ > `readonly` **EpcId**: `"epc:id"` = `"epc:id"`
12
+
13
+ Identifier epc id namespace.
14
+
15
+ ### EpcIdGtin
16
+
17
+ > `readonly` **EpcIdGtin**: `"epc:id:sgtin"`
18
+
19
+ Identifier epc:id:gtin namespace.
20
+
21
+ ### EpcIdGln
22
+
23
+ > `readonly` **EpcIdGln**: `"epc:id:sgln"`
24
+
25
+ Identifier epc:id:sgln namespace.
26
+
27
+ ### EpcClass
28
+
29
+ > `readonly` **EpcClass**: `"epc:class"` = `"epc:class"`
30
+
31
+ Identifier epc id namespace.
@@ -0,0 +1,13 @@
1
+ # Variable: Gs1Types
2
+
3
+ > `const` **Gs1Types**: `object`
4
+
5
+ The types of GS1 data.
6
+
7
+ ## Type declaration
8
+
9
+ ### LocationMasterData
10
+
11
+ > `readonly` **LocationMasterData**: `"gs1_location_masterdata"` = `"gs1_location_masterdata"`
12
+
13
+ Represents Location Master Data.
@@ -0,0 +1,207 @@
1
+ # Variable: SubSiteAttributes
2
+
3
+ > `const` **SubSiteAttributes**: `object`
4
+
5
+ Sub Site Attributes.
6
+ Spec https://www.gs1.org/sites/default/files/docs/epc/CBV-Standard-1-2-1-r-2017-05-05.pdf .
7
+ Section 10.3.2 .
8
+
9
+ ## Type declaration
10
+
11
+ ### Electronics
12
+
13
+ > `readonly` **Electronics**: `"401"` = `"401"`
14
+
15
+ Electronics.
16
+
17
+ ### ColdStorage
18
+
19
+ > `readonly` **ColdStorage**: `"402"` = `"402"`
20
+
21
+ Cold Storage.
22
+
23
+ ### Shelf
24
+
25
+ > `readonly` **Shelf**: `"403"` = `"403"`
26
+
27
+ Shelf.
28
+
29
+ ### Frozen
30
+
31
+ > `readonly` **Frozen**: `"404"` = `"404"`
32
+
33
+ Frozen.
34
+
35
+ ### Fresh
36
+
37
+ > `readonly` **Fresh**: `"405"` = `"405"`
38
+
39
+ Fresh.
40
+
41
+ ### Promotion
42
+
43
+ > `readonly` **Promotion**: `"406"` = `"406"`
44
+
45
+ Promotion.
46
+
47
+ ### EndCap
48
+
49
+ > `readonly` **EndCap**: `"407"` = `"407"`
50
+
51
+ End Cap.
52
+
53
+ ### PointOfSale
54
+
55
+ > `readonly` **PointOfSale**: `"408"` = `"408"`
56
+
57
+ Point of Sale.
58
+
59
+ ### Security
60
+
61
+ > `readonly` **Security**: `"409"` = `"409"`
62
+
63
+ Security.
64
+
65
+ ### GeneralMdse
66
+
67
+ > `readonly` **GeneralMdse**: `"411"` = `"411"`
68
+
69
+ General Mdse.
70
+
71
+ ### Grocery
72
+
73
+ > `readonly` **Grocery**: `"412"` = `"412"`
74
+
75
+ Grocery.
76
+
77
+ ### BoxCrusher
78
+
79
+ > `readonly` **BoxCrusher**: `"413"` = `"413"`
80
+
81
+ Box crusher.
82
+
83
+ ### DockDoor
84
+
85
+ > `readonly` **DockDoor**: `"414"` = `"414"`
86
+
87
+ Dock/Door.
88
+
89
+ ### ConveyorBelt
90
+
91
+ > `readonly` **ConveyorBelt**: `"415"` = `"415"`
92
+
93
+ Conveyor Belt.
94
+
95
+ ### PalletWrapper
96
+
97
+ > `readonly` **PalletWrapper**: `"416"` = `"416"`
98
+
99
+ Pallet Wrapper.
100
+
101
+ ### FixedReader
102
+
103
+ > `readonly` **FixedReader**: `"417"` = `"417"`
104
+
105
+ Fixed Reader.
106
+
107
+ ### MobileReader
108
+
109
+ > `readonly` **MobileReader**: `"418"` = `"418"`
110
+
111
+ Mobile Reader.
112
+
113
+ ### ShelfStorage
114
+
115
+ > `readonly` **ShelfStorage**: `"419"` = `"419"`
116
+
117
+ Shelf Storage.
118
+
119
+ ### Returns
120
+
121
+ > `readonly` **Returns**: `"420"` = `"420"`
122
+
123
+ Returns.
124
+
125
+ ### Staging
126
+
127
+ > `readonly` **Staging**: `"421"` = `"421"`
128
+
129
+ Staging.
130
+
131
+ ### Assembly
132
+
133
+ > `readonly` **Assembly**: `"422"` = `"422"`
134
+
135
+ Assembly.
136
+
137
+ ### LayAway
138
+
139
+ > `readonly` **LayAway**: `"423"` = `"423"`
140
+
141
+ Lay-Away.
142
+
143
+ ### Dispenser
144
+
145
+ > `readonly` **Dispenser**: `"424"` = `"424"`
146
+
147
+ Dispenser.
148
+
149
+ ### Quarantine
150
+
151
+ > `readonly` **Quarantine**: `"425"` = `"425"`
152
+
153
+ Quarantine.
154
+
155
+ ### ControlledSubstance
156
+
157
+ > `readonly` **ControlledSubstance**: `"426"` = `"426"`
158
+
159
+ Controlled Substance.
160
+
161
+ ### RecalledProduct
162
+
163
+ > `readonly` **RecalledProduct**: `"427"` = `"427"`
164
+
165
+ Recalled Product.
166
+
167
+ ### QualityControl
168
+
169
+ > `readonly` **QualityControl**: `"428"` = `"428"`
170
+
171
+ Quality Control.
172
+
173
+ ### PrintingRoom
174
+
175
+ > `readonly` **PrintingRoom**: `"429"` = `"429"`
176
+
177
+ Printing Room.
178
+
179
+ ### LoadingDock
180
+
181
+ > `readonly` **LoadingDock**: `"420"` = `"420"`
182
+
183
+ Loading Dock.
184
+
185
+ ### EntranceGate
186
+
187
+ > `readonly` **EntranceGate**: `"431"` = `"431"`
188
+
189
+ Entrance Gate.
190
+
191
+ ### ExitGate
192
+
193
+ > `readonly` **ExitGate**: `"432"` = `"432"`
194
+
195
+ Exit Gate.
196
+
197
+ ### Gate
198
+
199
+ > `readonly` **Gate**: `"433"` = `"433"`
200
+
201
+ Gate.
202
+
203
+ ### ReadPointVerificationSpot
204
+
205
+ > `readonly` **ReadPointVerificationSpot**: `"434"` = `"434"`
206
+
207
+ Read Point Verification Spot.
@@ -0,0 +1,105 @@
1
+ # Variable: SubSiteTypes
2
+
3
+ > `const` **SubSiteTypes**: `object`
4
+
5
+ Sub Site Identifier Types.
6
+ Spec https://www.gs1.org/sites/default/files/docs/epc/CBV-Standard-1-2-1-r-2017-05-05.pdf .
7
+ Section 10.3.1 .
8
+
9
+ ## Type declaration
10
+
11
+ ### Backroom
12
+
13
+ > `readonly` **Backroom**: `"201"` = `"201"`
14
+
15
+ The Backroom.
16
+
17
+ ### StorageArea
18
+
19
+ > `readonly` **StorageArea**: `"202"` = `"202"`
20
+
21
+ The Storage Area.
22
+
23
+ ### SalesFloor
24
+
25
+ > `readonly` **SalesFloor**: `"203"` = `"203"`
26
+
27
+ The Sales Floor.
28
+
29
+ ### ReturnsArea
30
+
31
+ > `readonly` **ReturnsArea**: `"207"` = `"207"`
32
+
33
+ The Returns Area.
34
+
35
+ ### ProductionArea
36
+
37
+ > `readonly` **ProductionArea**: `"208"` = `"208"`
38
+
39
+ The Production Area.
40
+
41
+ ### ReceivingArea
42
+
43
+ > `readonly` **ReceivingArea**: `"209"` = `"209"`
44
+
45
+ The Receiving Area.
46
+
47
+ ### ShippingArea
48
+
49
+ > `readonly` **ShippingArea**: `"210"` = `"210"`
50
+
51
+ The Shipping Area.
52
+
53
+ ### SalesFloorTransitionArea
54
+
55
+ > `readonly` **SalesFloorTransitionArea**: `"211"` = `"211"`
56
+
57
+ The Sales Floor Transition Area.
58
+
59
+ ### CustomerPickupArea
60
+
61
+ > `readonly` **CustomerPickupArea**: `"212"` = `"212"`
62
+
63
+ The Customer Pick-Up Area.
64
+
65
+ ### Yard
66
+
67
+ > `readonly` **Yard**: `"213"` = `"213"`
68
+
69
+ The Yard.
70
+
71
+ ### ContainerDeck
72
+
73
+ > `readonly` **ContainerDeck**: `"214"` = `"214"`
74
+
75
+ The Container Deck.
76
+
77
+ ### CargoTerminal
78
+
79
+ > `readonly` **CargoTerminal**: `"215"` = `"215"`
80
+
81
+ The Cargo Terminal.
82
+
83
+ ### PackagingArea
84
+
85
+ > `readonly` **PackagingArea**: `"251"` = `"251"`
86
+
87
+ The Packaging Area.
88
+
89
+ ### PickingArea
90
+
91
+ > `readonly` **PickingArea**: `"252"` = `"252"`
92
+
93
+ The Picking Area.
94
+
95
+ ### PharmacyArea
96
+
97
+ > `readonly` **PharmacyArea**: `"253"` = `"253"`
98
+
99
+ The Pharmacy Area.
100
+
101
+ ### Undefined
102
+
103
+ > `readonly` **Undefined**: `"299"` = `"299"`
104
+
105
+ Undefined.
@@ -0,0 +1,12 @@
1
+ {
2
+ "error": {
3
+ "validation": {
4
+ "gs1SegmentMissing": "The GS1 EPC for should contain \"{segment}\"",
5
+ "gs1IncorrectSegmentCount": "The GS1 EPC has an incorrect segment count",
6
+ "gs1ValueIncorrect": "The GS1 EPC value segment is not in the correct format",
7
+ "gs1EpcClassIncorrect": "The GS1 EPC class uri is not in the correct format",
8
+ "geoCoordinatesLatitude": "The Master data latitude is not in the correct format",
9
+ "geoCoordinatesLongitude": "The Master data longitude is not in the correct format"
10
+ }
11
+ }
12
+ }