@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.
- package/LICENSE +201 -0
- package/README.md +21 -0
- package/dist/cjs/index.cjs +977 -0
- package/dist/esm/index.mjs +961 -0
- package/dist/types/dataTypes/gs1DataTypes.d.ts +10 -0
- package/dist/types/entities/gs1Location.d.ts +69 -0
- package/dist/types/identifiers/gs1Identifiers.d.ts +9 -0
- package/dist/types/index.d.ts +34 -0
- package/dist/types/models/epc/IEPCClassUri.d.ts +17 -0
- package/dist/types/models/epcis20/IAggregationEvent.d.ts +10 -0
- package/dist/types/models/epcis20/IAssociationEvent.d.ts +10 -0
- package/dist/types/models/epcis20/IBaseAggregationEvent.d.ts +19 -0
- package/dist/types/models/epcis20/IBizTransaction.d.ts +13 -0
- package/dist/types/models/epcis20/IDestination.d.ts +13 -0
- package/dist/types/models/epcis20/IEpcisDocument.d.ts +28 -0
- package/dist/types/models/epcis20/IEpcisEvent.d.ts +44 -0
- package/dist/types/models/epcis20/IEpcisEventDetails.d.ts +35 -0
- package/dist/types/models/epcis20/IEpcisQuery.d.ts +6 -0
- package/dist/types/models/epcis20/IEpcisQueryDocument.d.ts +54 -0
- package/dist/types/models/epcis20/IObjectEvent.d.ts +25 -0
- package/dist/types/models/epcis20/IQuantity.d.ts +13 -0
- package/dist/types/models/epcis20/ISensorElement.d.ts +15 -0
- package/dist/types/models/epcis20/ISensorMetadata.d.ts +21 -0
- package/dist/types/models/epcis20/ISensorReport.d.ts +17 -0
- package/dist/types/models/epcis20/ISimpleLocation.d.ts +9 -0
- package/dist/types/models/epcis20/ISource.d.ts +13 -0
- package/dist/types/models/epcis20/actionTypes.d.ts +21 -0
- package/dist/types/models/epcis20/bizStepTypes.d.ts +52 -0
- package/dist/types/models/epcis20/dispositionTypes.d.ts +44 -0
- package/dist/types/models/epcis20/epcisErrorTypes.d.ts +11 -0
- package/dist/types/models/epcis20/epcisEventUnionType.d.ts +7 -0
- package/dist/types/models/epcis20/eventTypes.d.ts +29 -0
- package/dist/types/models/gs1/gs1IdTypes.d.ts +89 -0
- package/dist/types/models/gs1/gs1IdentifierTypes.d.ts +25 -0
- package/dist/types/models/gs1/gs1Types.d.ts +13 -0
- package/dist/types/models/gs1/subSiteAttributes.d.ts +145 -0
- package/dist/types/models/gs1/subSiteTypes.d.ts +77 -0
- package/dist/types/utils/gs1IdentifiersValidation.d.ts +57 -0
- package/dist/types/utils/gs1Is.d.ts +17 -0
- package/dist/types/utils/gs1Validation.d.ts +16 -0
- package/docs/changelog.md +5 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/Gs1DataTypes.md +26 -0
- package/docs/reference/classes/Gs1Identifiers.md +25 -0
- package/docs/reference/classes/Gs1IdentifiersValidation.md +215 -0
- package/docs/reference/classes/Gs1Is.md +57 -0
- package/docs/reference/classes/Gs1Location.md +135 -0
- package/docs/reference/classes/Gs1Validation.md +53 -0
- package/docs/reference/index.md +57 -0
- package/docs/reference/interfaces/IAggregationEvent.md +223 -0
- package/docs/reference/interfaces/IAssociationEvent.md +223 -0
- package/docs/reference/interfaces/IBizTransaction.md +19 -0
- package/docs/reference/interfaces/IDestination.md +19 -0
- package/docs/reference/interfaces/IEPCClassUri.md +27 -0
- package/docs/reference/interfaces/IEpcisDocument.md +41 -0
- package/docs/reference/interfaces/IEpcisEvent.md +79 -0
- package/docs/reference/interfaces/IEpcisEventDetails.md +167 -0
- package/docs/reference/interfaces/IEpcisQuery.md +7 -0
- package/docs/reference/interfaces/IEpcisQueryDocument.md +81 -0
- package/docs/reference/interfaces/IObjectEvent.md +211 -0
- package/docs/reference/interfaces/IQuantity.md +19 -0
- package/docs/reference/interfaces/ISensorElement.md +19 -0
- package/docs/reference/interfaces/ISensorMetadata.md +35 -0
- package/docs/reference/interfaces/ISensorReport.md +27 -0
- package/docs/reference/interfaces/ISimpleLocation.md +11 -0
- package/docs/reference/interfaces/ISource.md +19 -0
- package/docs/reference/type-aliases/ActionTypes.md +5 -0
- package/docs/reference/type-aliases/BizStepTypes.md +5 -0
- package/docs/reference/type-aliases/DispositionTypes.md +5 -0
- package/docs/reference/type-aliases/EpcisErrorTypes.md +5 -0
- package/docs/reference/type-aliases/EpcisEventUnionType.md +5 -0
- package/docs/reference/type-aliases/EventTypes.md +5 -0
- package/docs/reference/type-aliases/Gs1IdTypes.md +5 -0
- package/docs/reference/type-aliases/Gs1IdentifierTypes.md +5 -0
- package/docs/reference/type-aliases/Gs1Types.md +5 -0
- package/docs/reference/type-aliases/SubSiteAttributes.md +7 -0
- package/docs/reference/type-aliases/SubSiteTypes.md +7 -0
- package/docs/reference/variables/ActionTypes.md +25 -0
- package/docs/reference/variables/BizStepTypes.md +173 -0
- package/docs/reference/variables/DispositionTypes.md +141 -0
- package/docs/reference/variables/EpcisErrorTypes.md +15 -0
- package/docs/reference/variables/EventTypes.md +37 -0
- package/docs/reference/variables/Gs1IdTypes.md +127 -0
- package/docs/reference/variables/Gs1IdentifierTypes.md +31 -0
- package/docs/reference/variables/Gs1Types.md +13 -0
- package/docs/reference/variables/SubSiteAttributes.md +207 -0
- package/docs/reference/variables/SubSiteTypes.md +105 -0
- package/locales/en.json +12 -0
- package/package.json +41 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# Interface: IObjectEvent
|
|
2
|
+
|
|
3
|
+
Defines an EPCIS 2.0 Object Event.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`IEpcisEventDetails`](IEpcisEventDetails.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### @context?
|
|
12
|
+
|
|
13
|
+
> `optional` **@context**: `IJsonLdContextDefinition`
|
|
14
|
+
|
|
15
|
+
JSON-LD @context.
|
|
16
|
+
|
|
17
|
+
#### Inherited from
|
|
18
|
+
|
|
19
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`@context`](IEpcisEventDetails.md#@context)
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### id?
|
|
24
|
+
|
|
25
|
+
> `optional` **id**: `string`
|
|
26
|
+
|
|
27
|
+
UUID of the event.
|
|
28
|
+
|
|
29
|
+
#### Inherited from
|
|
30
|
+
|
|
31
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`id`](IEpcisEventDetails.md#id)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### eventID?
|
|
36
|
+
|
|
37
|
+
> `optional` **eventID**: `string`
|
|
38
|
+
|
|
39
|
+
The id of the event. Marked here as optional as we usually won't store it on Tangle.
|
|
40
|
+
|
|
41
|
+
#### Inherited from
|
|
42
|
+
|
|
43
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`eventID`](IEpcisEventDetails.md#eventid)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### eventTime
|
|
48
|
+
|
|
49
|
+
> **eventTime**: `string`
|
|
50
|
+
|
|
51
|
+
Timestamp in UTC.
|
|
52
|
+
|
|
53
|
+
#### Inherited from
|
|
54
|
+
|
|
55
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`eventTime`](IEpcisEventDetails.md#eventtime)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### eventTimeZoneOffset
|
|
60
|
+
|
|
61
|
+
> **eventTimeZoneOffset**: `string`
|
|
62
|
+
|
|
63
|
+
Timezone offset. Useful if we want to represent timestamp in local timezone.
|
|
64
|
+
|
|
65
|
+
#### Inherited from
|
|
66
|
+
|
|
67
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`eventTimeZoneOffset`](IEpcisEventDetails.md#eventtimezoneoffset)
|
|
68
|
+
|
|
69
|
+
***
|
|
70
|
+
|
|
71
|
+
### recordTime?
|
|
72
|
+
|
|
73
|
+
> `optional` **recordTime**: `string`
|
|
74
|
+
|
|
75
|
+
When the event was recorded. It will be automatically generated.
|
|
76
|
+
|
|
77
|
+
#### Inherited from
|
|
78
|
+
|
|
79
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`recordTime`](IEpcisEventDetails.md#recordtime)
|
|
80
|
+
|
|
81
|
+
***
|
|
82
|
+
|
|
83
|
+
### sourceList?
|
|
84
|
+
|
|
85
|
+
> `optional` **sourceList**: [`ISource`](ISource.md)[]
|
|
86
|
+
|
|
87
|
+
Source list. Semantics according to EPCIS standard.
|
|
88
|
+
|
|
89
|
+
#### Inherited from
|
|
90
|
+
|
|
91
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`sourceList`](IEpcisEventDetails.md#sourcelist)
|
|
92
|
+
|
|
93
|
+
***
|
|
94
|
+
|
|
95
|
+
### destinationList?
|
|
96
|
+
|
|
97
|
+
> `optional` **destinationList**: [`IDestination`](IDestination.md)[]
|
|
98
|
+
|
|
99
|
+
Destination list. Semantics according to EPCIS standard.
|
|
100
|
+
|
|
101
|
+
#### Inherited from
|
|
102
|
+
|
|
103
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`destinationList`](IEpcisEventDetails.md#destinationlist)
|
|
104
|
+
|
|
105
|
+
***
|
|
106
|
+
|
|
107
|
+
### action
|
|
108
|
+
|
|
109
|
+
> **action**: [`ActionTypes`](../type-aliases/ActionTypes.md)
|
|
110
|
+
|
|
111
|
+
Action: ADD, OBSERVE, DELETE.
|
|
112
|
+
|
|
113
|
+
#### Inherited from
|
|
114
|
+
|
|
115
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`action`](IEpcisEventDetails.md#action)
|
|
116
|
+
|
|
117
|
+
***
|
|
118
|
+
|
|
119
|
+
### readPoint?
|
|
120
|
+
|
|
121
|
+
> `optional` **readPoint**: [`ISimpleLocation`](ISimpleLocation.md)
|
|
122
|
+
|
|
123
|
+
The location of reading point.
|
|
124
|
+
|
|
125
|
+
#### Inherited from
|
|
126
|
+
|
|
127
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`readPoint`](IEpcisEventDetails.md#readpoint)
|
|
128
|
+
|
|
129
|
+
***
|
|
130
|
+
|
|
131
|
+
### bizLocation?
|
|
132
|
+
|
|
133
|
+
> `optional` **bizLocation**: [`ISimpleLocation`](ISimpleLocation.md)
|
|
134
|
+
|
|
135
|
+
The biz location where the item ends up.
|
|
136
|
+
|
|
137
|
+
#### Inherited from
|
|
138
|
+
|
|
139
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`bizLocation`](IEpcisEventDetails.md#bizlocation)
|
|
140
|
+
|
|
141
|
+
***
|
|
142
|
+
|
|
143
|
+
### bizStep?
|
|
144
|
+
|
|
145
|
+
> `optional` **bizStep**: [`BizStepTypes`](../type-aliases/BizStepTypes.md)
|
|
146
|
+
|
|
147
|
+
The business step as per EPCIS.
|
|
148
|
+
|
|
149
|
+
#### Inherited from
|
|
150
|
+
|
|
151
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`bizStep`](IEpcisEventDetails.md#bizstep)
|
|
152
|
+
|
|
153
|
+
***
|
|
154
|
+
|
|
155
|
+
### disposition?
|
|
156
|
+
|
|
157
|
+
> `optional` **disposition**: [`DispositionTypes`](../type-aliases/DispositionTypes.md)
|
|
158
|
+
|
|
159
|
+
The disposition as per EPCIS.
|
|
160
|
+
|
|
161
|
+
#### Inherited from
|
|
162
|
+
|
|
163
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`disposition`](IEpcisEventDetails.md#disposition)
|
|
164
|
+
|
|
165
|
+
***
|
|
166
|
+
|
|
167
|
+
### bizTransactionList?
|
|
168
|
+
|
|
169
|
+
> `optional` **bizTransactionList**: [`IBizTransaction`](IBizTransaction.md)[]
|
|
170
|
+
|
|
171
|
+
The list of related business transactions.
|
|
172
|
+
|
|
173
|
+
#### Inherited from
|
|
174
|
+
|
|
175
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`bizTransactionList`](IEpcisEventDetails.md#biztransactionlist)
|
|
176
|
+
|
|
177
|
+
***
|
|
178
|
+
|
|
179
|
+
### type
|
|
180
|
+
|
|
181
|
+
> **type**: `"ObjectEvent"`
|
|
182
|
+
|
|
183
|
+
Fixed to ObjectEvent.
|
|
184
|
+
|
|
185
|
+
#### Overrides
|
|
186
|
+
|
|
187
|
+
[`IEpcisEventDetails`](IEpcisEventDetails.md).[`type`](IEpcisEventDetails.md#type)
|
|
188
|
+
|
|
189
|
+
***
|
|
190
|
+
|
|
191
|
+
### epcList
|
|
192
|
+
|
|
193
|
+
> **epcList**: `string`[]
|
|
194
|
+
|
|
195
|
+
List of EPCs involved.
|
|
196
|
+
|
|
197
|
+
***
|
|
198
|
+
|
|
199
|
+
### quantityList?
|
|
200
|
+
|
|
201
|
+
> `optional` **quantityList**: [`IQuantity`](IQuantity.md)[]
|
|
202
|
+
|
|
203
|
+
Quantity in case of class-level event visibility data.
|
|
204
|
+
|
|
205
|
+
***
|
|
206
|
+
|
|
207
|
+
### sensorElementList?
|
|
208
|
+
|
|
209
|
+
> `optional` **sensorElementList**: [`ISensorElement`](ISensorElement.md)[]
|
|
210
|
+
|
|
211
|
+
Sensor element list.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Interface: ISensorElement
|
|
2
|
+
|
|
3
|
+
EPCIS SensorElement.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### sensorMetadata?
|
|
8
|
+
|
|
9
|
+
> `optional` **sensorMetadata**: [`ISensorMetadata`](ISensorMetadata.md)
|
|
10
|
+
|
|
11
|
+
Sensor metadata.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### sensorReport
|
|
16
|
+
|
|
17
|
+
> **sensorReport**: [`ISensorReport`](ISensorReport.md)[]
|
|
18
|
+
|
|
19
|
+
Sensor report.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Interface: ISensorMetadata
|
|
2
|
+
|
|
3
|
+
EPCIS Sensor metadata.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### time
|
|
8
|
+
|
|
9
|
+
> **time**: `string`
|
|
10
|
+
|
|
11
|
+
Time.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### deviceID
|
|
16
|
+
|
|
17
|
+
> **deviceID**: `string`
|
|
18
|
+
|
|
19
|
+
Device ID.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### deviceMetadata
|
|
24
|
+
|
|
25
|
+
> **deviceMetadata**: `string`
|
|
26
|
+
|
|
27
|
+
Device Metadata.
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### rawData
|
|
32
|
+
|
|
33
|
+
> **rawData**: `string`
|
|
34
|
+
|
|
35
|
+
Raw data.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Interface: ISensorReport
|
|
2
|
+
|
|
3
|
+
EPCIS SensorReport.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### type
|
|
8
|
+
|
|
9
|
+
> **type**: `string`
|
|
10
|
+
|
|
11
|
+
Type.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### value
|
|
16
|
+
|
|
17
|
+
> **value**: `number`
|
|
18
|
+
|
|
19
|
+
Value.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### uom
|
|
24
|
+
|
|
25
|
+
> **uom**: `string`
|
|
26
|
+
|
|
27
|
+
Unit of measurement.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: EpcisEventUnionType
|
|
2
|
+
|
|
3
|
+
> **EpcisEventUnionType**: [`IObjectEvent`](../interfaces/IObjectEvent.md) \| [`IAssociationEvent`](../interfaces/IAssociationEvent.md) \| [`IAggregationEvent`](../interfaces/IAggregationEvent.md)
|
|
4
|
+
|
|
5
|
+
The type that subsumes an EPCIS Event.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: SubSiteAttributes
|
|
2
|
+
|
|
3
|
+
> **SubSiteAttributes**: *typeof* [`SubSiteAttributes`](../variables/SubSiteAttributes.md)\[keyof *typeof* [`SubSiteAttributes`](../variables/SubSiteAttributes.md)\]
|
|
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 .
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: SubSiteTypes
|
|
2
|
+
|
|
3
|
+
> **SubSiteTypes**: *typeof* [`SubSiteTypes`](../variables/SubSiteTypes.md)\[keyof *typeof* [`SubSiteTypes`](../variables/SubSiteTypes.md)\]
|
|
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 .
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Variable: ActionTypes
|
|
2
|
+
|
|
3
|
+
> `const` **ActionTypes**: `object`
|
|
4
|
+
|
|
5
|
+
EPCIS 2.0 action types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Add
|
|
10
|
+
|
|
11
|
+
> `readonly` **Add**: `"ADD"` = `"ADD"`
|
|
12
|
+
|
|
13
|
+
ADD action.
|
|
14
|
+
|
|
15
|
+
### Observe
|
|
16
|
+
|
|
17
|
+
> `readonly` **Observe**: `"OBSERVE"` = `"OBSERVE"`
|
|
18
|
+
|
|
19
|
+
OBSERVE action.
|
|
20
|
+
|
|
21
|
+
### Delete
|
|
22
|
+
|
|
23
|
+
> `readonly` **Delete**: `"DELETE"` = `"DELETE"`
|
|
24
|
+
|
|
25
|
+
DELETE action.
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# Variable: BizStepTypes
|
|
2
|
+
|
|
3
|
+
> `const` **BizStepTypes**: `object`
|
|
4
|
+
|
|
5
|
+
Supported EPCIS 2.0 bizStep.
|
|
6
|
+
|
|
7
|
+
See EPCIS CVB specification for details.
|
|
8
|
+
|
|
9
|
+
## Type declaration
|
|
10
|
+
|
|
11
|
+
### Accepting
|
|
12
|
+
|
|
13
|
+
> `readonly` **Accepting**: `"accepting"` = `"accepting"`
|
|
14
|
+
|
|
15
|
+
### Arriving
|
|
16
|
+
|
|
17
|
+
> `readonly` **Arriving**: `"arriving"` = `"arriving"`
|
|
18
|
+
|
|
19
|
+
### Assembling
|
|
20
|
+
|
|
21
|
+
> `readonly` **Assembling**: `"assembling"` = `"assembling"`
|
|
22
|
+
|
|
23
|
+
### Collecting
|
|
24
|
+
|
|
25
|
+
> `readonly` **Collecting**: `"collecting"` = `"collecting"`
|
|
26
|
+
|
|
27
|
+
### Commissioning
|
|
28
|
+
|
|
29
|
+
> `readonly` **Commissioning**: `"commissioning"` = `"commissioning"`
|
|
30
|
+
|
|
31
|
+
### Consigning
|
|
32
|
+
|
|
33
|
+
> `readonly` **Consigning**: `"consigning"` = `"consigning"`
|
|
34
|
+
|
|
35
|
+
### CreatingClassInstance
|
|
36
|
+
|
|
37
|
+
> `readonly` **CreatingClassInstance**: `"creating_class_instance"` = `"creating_class_instance"`
|
|
38
|
+
|
|
39
|
+
### CycleCounting
|
|
40
|
+
|
|
41
|
+
> `readonly` **CycleCounting**: `"cycle_counting"` = `"cycle_counting"`
|
|
42
|
+
|
|
43
|
+
### Decommissioning
|
|
44
|
+
|
|
45
|
+
> `readonly` **Decommissioning**: `"decommissioning"` = `"decommissioning"`
|
|
46
|
+
|
|
47
|
+
### Departing
|
|
48
|
+
|
|
49
|
+
> `readonly` **Departing**: `"departing"` = `"departing"`
|
|
50
|
+
|
|
51
|
+
### Destroying
|
|
52
|
+
|
|
53
|
+
> `readonly` **Destroying**: `"destroying"` = `"destroying"`
|
|
54
|
+
|
|
55
|
+
### Disassembling
|
|
56
|
+
|
|
57
|
+
> `readonly` **Disassembling**: `"disassembling"` = `"disassembling"`
|
|
58
|
+
|
|
59
|
+
### Dispensing
|
|
60
|
+
|
|
61
|
+
> `readonly` **Dispensing**: `"dispensing"` = `"dispensing"`
|
|
62
|
+
|
|
63
|
+
### Encoding
|
|
64
|
+
|
|
65
|
+
> `readonly` **Encoding**: `"encoding"` = `"encoding"`
|
|
66
|
+
|
|
67
|
+
### EnteringExiting
|
|
68
|
+
|
|
69
|
+
> `readonly` **EnteringExiting**: `"entering_exiting"` = `"entering_exiting"`
|
|
70
|
+
|
|
71
|
+
### Holding
|
|
72
|
+
|
|
73
|
+
> `readonly` **Holding**: `"holding"` = `"holding"`
|
|
74
|
+
|
|
75
|
+
### Inspecting
|
|
76
|
+
|
|
77
|
+
> `readonly` **Inspecting**: `"inspecting"` = `"inspecting"`
|
|
78
|
+
|
|
79
|
+
### Installing
|
|
80
|
+
|
|
81
|
+
> `readonly` **Installing**: `"installing"` = `"installing"`
|
|
82
|
+
|
|
83
|
+
### Killing
|
|
84
|
+
|
|
85
|
+
> `readonly` **Killing**: `"killing"` = `"killing"`
|
|
86
|
+
|
|
87
|
+
### Loading
|
|
88
|
+
|
|
89
|
+
> `readonly` **Loading**: `"loading"` = `"loading"`
|
|
90
|
+
|
|
91
|
+
### Other
|
|
92
|
+
|
|
93
|
+
> `readonly` **Other**: `"other"` = `"other"`
|
|
94
|
+
|
|
95
|
+
### Packing
|
|
96
|
+
|
|
97
|
+
> `readonly` **Packing**: `"packing"` = `"packing"`
|
|
98
|
+
|
|
99
|
+
### Picking
|
|
100
|
+
|
|
101
|
+
> `readonly` **Picking**: `"picking"` = `"picking"`
|
|
102
|
+
|
|
103
|
+
### Receiving
|
|
104
|
+
|
|
105
|
+
> `readonly` **Receiving**: `"receiving"` = `"receiving"`
|
|
106
|
+
|
|
107
|
+
### Removing
|
|
108
|
+
|
|
109
|
+
> `readonly` **Removing**: `"removing"` = `"removing"`
|
|
110
|
+
|
|
111
|
+
### Repackaging
|
|
112
|
+
|
|
113
|
+
> `readonly` **Repackaging**: `"repackaging"` = `"repackaging"`
|
|
114
|
+
|
|
115
|
+
### Repairing
|
|
116
|
+
|
|
117
|
+
> `readonly` **Repairing**: `"repairing"` = `"repairing"`
|
|
118
|
+
|
|
119
|
+
### Replacing
|
|
120
|
+
|
|
121
|
+
> `readonly` **Replacing**: `"replacing"` = `"replacing"`
|
|
122
|
+
|
|
123
|
+
### Reserving
|
|
124
|
+
|
|
125
|
+
> `readonly` **Reserving**: `"reserving"` = `"reserving"`
|
|
126
|
+
|
|
127
|
+
### RetailSelling
|
|
128
|
+
|
|
129
|
+
> `readonly` **RetailSelling**: `"retail_selling"` = `"retail_selling"`
|
|
130
|
+
|
|
131
|
+
### Shipping
|
|
132
|
+
|
|
133
|
+
> `readonly` **Shipping**: `"shipping"` = `"shipping"`
|
|
134
|
+
|
|
135
|
+
### StagingOutbound
|
|
136
|
+
|
|
137
|
+
> `readonly` **StagingOutbound**: `"staging_outbound"` = `"staging_outbound"`
|
|
138
|
+
|
|
139
|
+
### StockTaking
|
|
140
|
+
|
|
141
|
+
> `readonly` **StockTaking**: `"stock_taking"` = `"stock_taking"`
|
|
142
|
+
|
|
143
|
+
### Stocking
|
|
144
|
+
|
|
145
|
+
> `readonly` **Stocking**: `"stocking"` = `"stocking"`
|
|
146
|
+
|
|
147
|
+
### Storing
|
|
148
|
+
|
|
149
|
+
> `readonly` **Storing**: `"storing"` = `"storing"`
|
|
150
|
+
|
|
151
|
+
### Transporting
|
|
152
|
+
|
|
153
|
+
> `readonly` **Transporting**: `"transporting"` = `"transporting"`
|
|
154
|
+
|
|
155
|
+
### Unloading
|
|
156
|
+
|
|
157
|
+
> `readonly` **Unloading**: `"unloading"` = `"unloading"`
|
|
158
|
+
|
|
159
|
+
### Unpacking
|
|
160
|
+
|
|
161
|
+
> `readonly` **Unpacking**: `"unpacking"` = `"unpacking"`
|
|
162
|
+
|
|
163
|
+
### VoidShipping
|
|
164
|
+
|
|
165
|
+
> `readonly` **VoidShipping**: `"void_shipping"` = `"void_shipping"`
|
|
166
|
+
|
|
167
|
+
### SensorReporting
|
|
168
|
+
|
|
169
|
+
> `readonly` **SensorReporting**: `"sensor_reporting"` = `"sensor_reporting"`
|
|
170
|
+
|
|
171
|
+
### Sampling
|
|
172
|
+
|
|
173
|
+
> `readonly` **Sampling**: `"sampling"` = `"sampling"`
|