@aidc-toolkit/app-extension 0.9.19-beta
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 +174 -0
- package/README.md +17 -0
- package/app-extension.iml +9 -0
- package/dist/app-extension.d.ts +169 -0
- package/dist/app-extension.d.ts.map +1 -0
- package/dist/app-extension.js +148 -0
- package/dist/app-extension.js.map +1 -0
- package/dist/app-utility-proxy.d.ts +66 -0
- package/dist/app-utility-proxy.d.ts.map +1 -0
- package/dist/app-utility-proxy.js +233 -0
- package/dist/app-utility-proxy.js.map +1 -0
- package/dist/descriptor.d.ts +168 -0
- package/dist/descriptor.d.ts.map +1 -0
- package/dist/descriptor.js +175 -0
- package/dist/descriptor.js.map +1 -0
- package/dist/gs1/character-set-proxy.d.ts +10 -0
- package/dist/gs1/character-set-proxy.d.ts.map +1 -0
- package/dist/gs1/character-set-proxy.js +47 -0
- package/dist/gs1/character-set-proxy.js.map +1 -0
- package/dist/gs1/check-proxy.d.ts +11 -0
- package/dist/gs1/check-proxy.d.ts.map +1 -0
- package/dist/gs1/check-proxy.js +120 -0
- package/dist/gs1/check-proxy.js.map +1 -0
- package/dist/gs1/idkey-proxy.d.ts +135 -0
- package/dist/gs1/idkey-proxy.d.ts.map +1 -0
- package/dist/gs1/idkey-proxy.js +779 -0
- package/dist/gs1/idkey-proxy.js.map +1 -0
- package/dist/gs1/index.d.ts +4 -0
- package/dist/gs1/index.d.ts.map +1 -0
- package/dist/gs1/index.js +4 -0
- package/dist/gs1/index.js.map +1 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -0
- package/dist/lib-proxy.d.ts +135 -0
- package/dist/lib-proxy.d.ts.map +1 -0
- package/dist/lib-proxy.js +235 -0
- package/dist/lib-proxy.js.map +1 -0
- package/dist/locale/en/locale-strings.d.ts +616 -0
- package/dist/locale/en/locale-strings.d.ts.map +1 -0
- package/dist/locale/en/locale-strings.js +616 -0
- package/dist/locale/en/locale-strings.js.map +1 -0
- package/dist/locale/fr/locale-strings.d.ts +616 -0
- package/dist/locale/fr/locale-strings.d.ts.map +1 -0
- package/dist/locale/fr/locale-strings.js +616 -0
- package/dist/locale/fr/locale-strings.js.map +1 -0
- package/dist/locale/i18n.d.ts +27 -0
- package/dist/locale/i18n.d.ts.map +1 -0
- package/dist/locale/i18n.js +39 -0
- package/dist/locale/i18n.js.map +1 -0
- package/dist/types.d.ts +127 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +13 -0
- package/dist/types.js.map +1 -0
- package/dist/utility/character-set-descriptor.d.ts +6 -0
- package/dist/utility/character-set-descriptor.d.ts.map +1 -0
- package/dist/utility/character-set-descriptor.js +28 -0
- package/dist/utility/character-set-descriptor.js.map +1 -0
- package/dist/utility/character-set-proxy.d.ts +26 -0
- package/dist/utility/character-set-proxy.d.ts.map +1 -0
- package/dist/utility/character-set-proxy.js +167 -0
- package/dist/utility/character-set-proxy.js.map +1 -0
- package/dist/utility/index.d.ts +4 -0
- package/dist/utility/index.d.ts.map +1 -0
- package/dist/utility/index.js +4 -0
- package/dist/utility/index.js.map +1 -0
- package/dist/utility/reg-exp-proxy.d.ts +7 -0
- package/dist/utility/reg-exp-proxy.d.ts.map +1 -0
- package/dist/utility/reg-exp-proxy.js +61 -0
- package/dist/utility/reg-exp-proxy.js.map +1 -0
- package/dist/utility/string-descriptor.d.ts +4 -0
- package/dist/utility/string-descriptor.d.ts.map +1 -0
- package/dist/utility/string-descriptor.js +12 -0
- package/dist/utility/string-descriptor.js.map +1 -0
- package/dist/utility/string-proxy.d.ts +8 -0
- package/dist/utility/string-proxy.d.ts.map +1 -0
- package/dist/utility/string-proxy.js +12 -0
- package/dist/utility/string-proxy.js.map +1 -0
- package/dist/utility/transformer-descriptor.d.ts +6 -0
- package/dist/utility/transformer-descriptor.d.ts.map +1 -0
- package/dist/utility/transformer-descriptor.js +24 -0
- package/dist/utility/transformer-descriptor.js.map +1 -0
- package/dist/utility/transformer-proxy.d.ts +8 -0
- package/dist/utility/transformer-proxy.d.ts.map +1 -0
- package/dist/utility/transformer-proxy.js +74 -0
- package/dist/utility/transformer-proxy.js.map +1 -0
- package/eslint.config.ts +21 -0
- package/package.json +37 -0
- package/src/app-extension.ts +244 -0
- package/src/app-utility-proxy.ts +266 -0
- package/src/descriptor.ts +314 -0
- package/src/gs1/character-set-proxy.ts +41 -0
- package/src/gs1/check-proxy.ts +122 -0
- package/src/gs1/idkey-proxy.ts +815 -0
- package/src/gs1/index.ts +3 -0
- package/src/index.ts +24 -0
- package/src/lib-proxy.ts +256 -0
- package/src/locale/en/locale-strings.ts +615 -0
- package/src/locale/fr/locale-strings.ts +615 -0
- package/src/locale/i18n.ts +48 -0
- package/src/locale/i18next.d.ts +20 -0
- package/src/types.ts +144 -0
- package/src/utility/character-set-descriptor.ts +32 -0
- package/src/utility/character-set-proxy.ts +185 -0
- package/src/utility/index.ts +3 -0
- package/src/utility/reg-exp-proxy.ts +51 -0
- package/src/utility/string-descriptor.ts +13 -0
- package/src/utility/string-proxy.ts +15 -0
- package/src/utility/transformer-descriptor.ts +27 -0
- package/src/utility/transformer-proxy.ts +72 -0
- package/tsconfig.json +6 -0
|
@@ -0,0 +1,616 @@
|
|
|
1
|
+
export const localeStrings = {
|
|
2
|
+
AppExtension: {
|
|
3
|
+
sequenceCountMustBeLessThanOrEqualTo: "Sequence count {{sequenceCount, number}} must be less than or equal to {{maximumSequenceCount, number}}"
|
|
4
|
+
},
|
|
5
|
+
Proxy: {
|
|
6
|
+
vSpillMustBeHorizontalArray: "Input must be a horizontal array",
|
|
7
|
+
hSpillMustBeVerticalArray: "Input must be a vertical array",
|
|
8
|
+
matrixMustBeArray: "Input must be a one-dimensional array"
|
|
9
|
+
},
|
|
10
|
+
IdentificationKeyCreatorProxy: {
|
|
11
|
+
prefixDefinitionMustBeOneDimensional: "Prefix definition must be a one-dimensional matrix",
|
|
12
|
+
prefixDefinitionMustHaveMaximumThreeElements: "Prefix definition must have a maximum of 3 elements",
|
|
13
|
+
prefixMustBeString: "Prefix must be a string",
|
|
14
|
+
prefixTypeMustBeNumber: "Prefix type must be a number",
|
|
15
|
+
tweakFactorMustBeNumber: "Tweak factor must be a number"
|
|
16
|
+
},
|
|
17
|
+
Parameters: {
|
|
18
|
+
spillMatrix: {
|
|
19
|
+
name: "matrix",
|
|
20
|
+
description: "One-dimensional matrix to spill."
|
|
21
|
+
},
|
|
22
|
+
spillMaximumWidth: {
|
|
23
|
+
name: "maximumWidth",
|
|
24
|
+
description: "Maximum width into which to spill the matrix. If not provided, the remaining width is used."
|
|
25
|
+
},
|
|
26
|
+
spillMaximumHeight: {
|
|
27
|
+
name: "maximumHeight",
|
|
28
|
+
description: "Maximum height into which to spill the matrix. If not provided, the remaining height is used."
|
|
29
|
+
},
|
|
30
|
+
domain: {
|
|
31
|
+
name: "domain",
|
|
32
|
+
description: "Transformation domain. Valid input values are from zero to domain-1."
|
|
33
|
+
},
|
|
34
|
+
value: {
|
|
35
|
+
name: "value",
|
|
36
|
+
description: "Value to transform."
|
|
37
|
+
},
|
|
38
|
+
startValue: {
|
|
39
|
+
name: "startValue",
|
|
40
|
+
description: "Start value of a domain of values to transform."
|
|
41
|
+
},
|
|
42
|
+
count: {
|
|
43
|
+
name: "count",
|
|
44
|
+
description: "Count of values to transform. If positive, values transformed are startValue to startValue+count-1. If negative, values transformed are startValue down to startValue+count+1."
|
|
45
|
+
},
|
|
46
|
+
transformedValue: {
|
|
47
|
+
name: "transformedValue",
|
|
48
|
+
description: "Previous output value of a transformation."
|
|
49
|
+
},
|
|
50
|
+
tweak: {
|
|
51
|
+
name: "tweak",
|
|
52
|
+
description: "Value by which to tweak the transformation. If not provided or zero, the output is sequential. Otherwise, the output is encrypted in such a way as to appear random, masking the values used as inputs to the sequence."
|
|
53
|
+
},
|
|
54
|
+
regExp: {
|
|
55
|
+
name: "regExp",
|
|
56
|
+
description: "Regular expression against which to validate a string."
|
|
57
|
+
},
|
|
58
|
+
validateS: {
|
|
59
|
+
name: "s",
|
|
60
|
+
description: "String to validate."
|
|
61
|
+
},
|
|
62
|
+
valueForS: {
|
|
63
|
+
name: "s",
|
|
64
|
+
description: "String for which to determine the value."
|
|
65
|
+
},
|
|
66
|
+
errorMessage: {
|
|
67
|
+
name: "errorMessage",
|
|
68
|
+
description: "Custom error message to use if validation fails. If not provided, an internal error message is used."
|
|
69
|
+
},
|
|
70
|
+
exclusionNone: {
|
|
71
|
+
name: "exclusion",
|
|
72
|
+
description: "String values to exclude. The only valid value is 0 (no exclusions)."
|
|
73
|
+
},
|
|
74
|
+
exclusionFirstZero: {
|
|
75
|
+
name: "exclusion",
|
|
76
|
+
description: "String values to exclude. Valid values are 0 (no exclusions) and 1 (strings starting with 0 excluded)."
|
|
77
|
+
},
|
|
78
|
+
exclusionAllNumeric: {
|
|
79
|
+
name: "exclusion",
|
|
80
|
+
description: "String values to exclude. Valid values are 0 (no exclusions) and 2 (strings that are all numeric excluded)."
|
|
81
|
+
},
|
|
82
|
+
exclusionAny: {
|
|
83
|
+
name: "exclusion",
|
|
84
|
+
description: "String values to exclude. Valid values are 0 (no exclusions), 1 (strings starting with 0 excluded), and 2 (strings that are all numeric excluded)."
|
|
85
|
+
},
|
|
86
|
+
length: {
|
|
87
|
+
name: "length",
|
|
88
|
+
description: "Length of string to create."
|
|
89
|
+
},
|
|
90
|
+
numericS: {
|
|
91
|
+
name: "s",
|
|
92
|
+
description: "Numeric string."
|
|
93
|
+
},
|
|
94
|
+
numericSFourOrFiveDigits: {
|
|
95
|
+
name: "s",
|
|
96
|
+
description: "Four- or five-digit numeric string."
|
|
97
|
+
},
|
|
98
|
+
numericSWithCheckDigit: {
|
|
99
|
+
name: "s",
|
|
100
|
+
description: "Numeric string with check digit."
|
|
101
|
+
},
|
|
102
|
+
checkDigit: {
|
|
103
|
+
name: "checkDigit",
|
|
104
|
+
description: "Check digit."
|
|
105
|
+
},
|
|
106
|
+
ai82S: {
|
|
107
|
+
name: "s",
|
|
108
|
+
description: "GS1 AI encodable character set 82 string."
|
|
109
|
+
},
|
|
110
|
+
ai82SWithCheckCharacterPair: {
|
|
111
|
+
name: "s",
|
|
112
|
+
description: "GS1 AI encodable character set 82 string with check character pair."
|
|
113
|
+
},
|
|
114
|
+
validateIdentificationKey: {
|
|
115
|
+
name: "identificationKey",
|
|
116
|
+
description: "Identification key to validate."
|
|
117
|
+
},
|
|
118
|
+
zeroSuppressibleGTIN12: {
|
|
119
|
+
name: "gtin12",
|
|
120
|
+
description: "GTIN-12 for which to suppress zeros."
|
|
121
|
+
},
|
|
122
|
+
zeroSuppressedGTIN12: {
|
|
123
|
+
name: "zeroSuppressedGTIN12",
|
|
124
|
+
description: "Zero-suppressed GTIN-12 to expand."
|
|
125
|
+
},
|
|
126
|
+
convertGTIN: {
|
|
127
|
+
name: "gtin",
|
|
128
|
+
description: "GTIN to convert to GTIN-14."
|
|
129
|
+
},
|
|
130
|
+
normalizeGTIN: {
|
|
131
|
+
name: "gtin",
|
|
132
|
+
description: "GTIN to normalize."
|
|
133
|
+
},
|
|
134
|
+
validateGTIN: {
|
|
135
|
+
name: "gtin",
|
|
136
|
+
description: "GTIN to validate."
|
|
137
|
+
},
|
|
138
|
+
validateGTIN14: {
|
|
139
|
+
name: "gtin14",
|
|
140
|
+
description: "GTIN-14 to validate."
|
|
141
|
+
},
|
|
142
|
+
baseIdentificationKey: {
|
|
143
|
+
name: "baseIdentificationKey",
|
|
144
|
+
description: "Base identification key."
|
|
145
|
+
},
|
|
146
|
+
indicatorDigit: {
|
|
147
|
+
name: "indicatorDigit",
|
|
148
|
+
description: "Indicator digit."
|
|
149
|
+
},
|
|
150
|
+
gtinLevel: {
|
|
151
|
+
name: "level",
|
|
152
|
+
description: "Level at which to validate the GTIN. Valid values are 0 (any), 1 (retail consumer trade item), and 2 (other than retail consumer trade item level)."
|
|
153
|
+
},
|
|
154
|
+
rcnFormat: {
|
|
155
|
+
name: "format",
|
|
156
|
+
description: "Restricted Circulation Number format."
|
|
157
|
+
},
|
|
158
|
+
rcn: {
|
|
159
|
+
name: "rcn",
|
|
160
|
+
description: "Restricted Circulation Number to parse."
|
|
161
|
+
},
|
|
162
|
+
prefix: {
|
|
163
|
+
name: "prefix",
|
|
164
|
+
description: "Prefix."
|
|
165
|
+
},
|
|
166
|
+
prefixType: {
|
|
167
|
+
name: "prefixType",
|
|
168
|
+
description: "Prefix type. Valid values are 0 (GS1 Company Prefix), 1 (U.P.C. Company Prefix), and 2 (GS1 Prefix)."
|
|
169
|
+
},
|
|
170
|
+
tweakFactor: {
|
|
171
|
+
name: "tweakFactor",
|
|
172
|
+
description: "Tweak factor, used to support the creation of sparse identification keys. The default tweak factor is based on the GS1 Company Prefix, and is usually sufficient for obfuscation. This allows more control over the encryption when higher security is required."
|
|
173
|
+
},
|
|
174
|
+
prefixDefinitionAny: {
|
|
175
|
+
name: "prefixDefinition",
|
|
176
|
+
description: "Prefix definition, either a simple GS1 Company Prefix (as a string) or the result of a call to definePrefix. Any prefix type is supported."
|
|
177
|
+
},
|
|
178
|
+
prefixDefinitionGS1UPC: {
|
|
179
|
+
name: "prefixDefinition",
|
|
180
|
+
description: "Prefix definition, either a simple GS1 Company Prefix (as a string) or the result of a call to definePrefix. Only prefix types 0 (GS1 Company Prefix) and 1 (U.P.C. Company Prefix) are supported."
|
|
181
|
+
},
|
|
182
|
+
sparse: {
|
|
183
|
+
name: "sparse",
|
|
184
|
+
description: "If true, value is mapped to a sparse sequence resistant to discovery. Default is false."
|
|
185
|
+
},
|
|
186
|
+
rcnItemReference: {
|
|
187
|
+
name: "itemReference",
|
|
188
|
+
description: "Item reference."
|
|
189
|
+
},
|
|
190
|
+
rcnPriceOrWeight: {
|
|
191
|
+
name: "priceOrWeight",
|
|
192
|
+
description: "Price or weight (whole number only)."
|
|
193
|
+
},
|
|
194
|
+
serialComponent: {
|
|
195
|
+
name: "serialComponent",
|
|
196
|
+
description: "Serial component."
|
|
197
|
+
},
|
|
198
|
+
reference: {
|
|
199
|
+
name: "reference",
|
|
200
|
+
description: "Reference portion of identification key."
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
Functions: {
|
|
204
|
+
version: {
|
|
205
|
+
name: "version",
|
|
206
|
+
description: "Get the version of the AIDC Toolkit."
|
|
207
|
+
},
|
|
208
|
+
vSpill: {
|
|
209
|
+
name: "vSpill",
|
|
210
|
+
description: "Spill a horizontal array vertically to fit within a given maximum width and height."
|
|
211
|
+
},
|
|
212
|
+
hSpill: {
|
|
213
|
+
name: "hSpill",
|
|
214
|
+
description: "Spill a vertical array horizontally to fit within a given maximum height and width."
|
|
215
|
+
},
|
|
216
|
+
forwardTransform: {
|
|
217
|
+
name: "forwardTransform",
|
|
218
|
+
description: "Transform a value forward."
|
|
219
|
+
},
|
|
220
|
+
forwardTransformSequence: {
|
|
221
|
+
name: "forwardTransformSequence",
|
|
222
|
+
description: "Transform a sequence of values forward."
|
|
223
|
+
},
|
|
224
|
+
reverseTransform: {
|
|
225
|
+
name: "reverseTransform",
|
|
226
|
+
description: "Transform a value in reverse."
|
|
227
|
+
},
|
|
228
|
+
validateRegExp: {
|
|
229
|
+
name: "validateRegExp",
|
|
230
|
+
description: "Validate a string against a regular expression."
|
|
231
|
+
},
|
|
232
|
+
isValidRegExp: {
|
|
233
|
+
name: "isValidRegExp",
|
|
234
|
+
description: "Determine if a string is valid against a regular expression."
|
|
235
|
+
},
|
|
236
|
+
validateNumeric: {
|
|
237
|
+
name: "validateNumeric",
|
|
238
|
+
description: "Validate a numeric string."
|
|
239
|
+
},
|
|
240
|
+
isValidNumeric: {
|
|
241
|
+
name: "isValidNumeric",
|
|
242
|
+
description: "Determine if a string is numeric."
|
|
243
|
+
},
|
|
244
|
+
createNumeric: {
|
|
245
|
+
name: "createNumeric",
|
|
246
|
+
description: "Create a numeric string."
|
|
247
|
+
},
|
|
248
|
+
createNumericSequence: {
|
|
249
|
+
name: "createNumericSequence",
|
|
250
|
+
description: "Create a sequence of numeric strings."
|
|
251
|
+
},
|
|
252
|
+
valueForNumeric: {
|
|
253
|
+
name: "valueForNumeric",
|
|
254
|
+
description: "Get the value for a numeric string."
|
|
255
|
+
},
|
|
256
|
+
validateHexadecimal: {
|
|
257
|
+
name: "validateHexadecimal",
|
|
258
|
+
description: "Validate a hexadecimal string."
|
|
259
|
+
},
|
|
260
|
+
isValidHexadecimal: {
|
|
261
|
+
name: "isValidHexadecimal",
|
|
262
|
+
description: "Determine if a string is hexadecimal."
|
|
263
|
+
},
|
|
264
|
+
createHexadecimal: {
|
|
265
|
+
name: "createHexadecimal",
|
|
266
|
+
description: "Create a hexadecimal string."
|
|
267
|
+
},
|
|
268
|
+
createHexadecimalSequence: {
|
|
269
|
+
name: "createHexadecimalSequence",
|
|
270
|
+
description: "Create a sequence of hexadecimal strings."
|
|
271
|
+
},
|
|
272
|
+
valueForHexadecimal: {
|
|
273
|
+
name: "valueForHexadecimal",
|
|
274
|
+
description: "Get the value for a hexadecimal string."
|
|
275
|
+
},
|
|
276
|
+
validateAlphabetic: {
|
|
277
|
+
name: "validateAlphabetic",
|
|
278
|
+
description: "Validate an alphabetic string."
|
|
279
|
+
},
|
|
280
|
+
isValidAlphabetic: {
|
|
281
|
+
name: "isValidAlphabetic",
|
|
282
|
+
description: "Determine if a string is alphabetic."
|
|
283
|
+
},
|
|
284
|
+
createAlphabetic: {
|
|
285
|
+
name: "createAlphabetic",
|
|
286
|
+
description: "Create an alphabetic string."
|
|
287
|
+
},
|
|
288
|
+
createAlphabeticSequence: {
|
|
289
|
+
name: "createAlphabeticSequence",
|
|
290
|
+
description: "Create a sequence of alphabetic strings."
|
|
291
|
+
},
|
|
292
|
+
valueForAlphabetic: {
|
|
293
|
+
name: "valueForAlphabetic",
|
|
294
|
+
description: "Get the value for an alphabetic string."
|
|
295
|
+
},
|
|
296
|
+
validateAlphanumeric: {
|
|
297
|
+
name: "validateAlphanumeric",
|
|
298
|
+
description: "Validate an alphanumeric string."
|
|
299
|
+
},
|
|
300
|
+
isValidAlphanumeric: {
|
|
301
|
+
name: "isValidAlphanumeric",
|
|
302
|
+
description: "Determine if a string is alphanumeric."
|
|
303
|
+
},
|
|
304
|
+
createAlphanumeric: {
|
|
305
|
+
name: "createAlphanumeric",
|
|
306
|
+
description: "Create an alphanumeric string."
|
|
307
|
+
},
|
|
308
|
+
createAlphanumericSequence: {
|
|
309
|
+
name: "createAlphanumericSequence",
|
|
310
|
+
description: "Create a sequence of alphanumeric strings."
|
|
311
|
+
},
|
|
312
|
+
valueForAlphanumeric: {
|
|
313
|
+
name: "valueForAlphanumeric",
|
|
314
|
+
description: "Get the value for an alphanumeric string."
|
|
315
|
+
},
|
|
316
|
+
GS1: {
|
|
317
|
+
validateAI82: {
|
|
318
|
+
name: "validateAI82",
|
|
319
|
+
description: "Validate a GS1 AI 82 encodable character set string."
|
|
320
|
+
},
|
|
321
|
+
isValidAI82: {
|
|
322
|
+
name: "isValidAI82",
|
|
323
|
+
description: "Determine if a string is GS1 AI 82 encodable character set."
|
|
324
|
+
},
|
|
325
|
+
createAI82: {
|
|
326
|
+
name: "createAI82",
|
|
327
|
+
description: "Create a GS1 AI 82 encodable character set string."
|
|
328
|
+
},
|
|
329
|
+
createAI82Sequence: {
|
|
330
|
+
name: "createAI82Sequence",
|
|
331
|
+
description: "Create a sequence of GS1 AI 82 encodable character set strings."
|
|
332
|
+
},
|
|
333
|
+
valueForAI82: {
|
|
334
|
+
name: "valueForAI82",
|
|
335
|
+
description: "Get the value for a GS1 AI 82 encodable character set string."
|
|
336
|
+
},
|
|
337
|
+
validateAI39: {
|
|
338
|
+
name: "validateAI39",
|
|
339
|
+
description: "Validate a GS1 AI 39 encodable character set string."
|
|
340
|
+
},
|
|
341
|
+
isValidAI39: {
|
|
342
|
+
name: "isValidAI39",
|
|
343
|
+
description: "Determine if a string is GS1 AI 39 encodable character set."
|
|
344
|
+
},
|
|
345
|
+
createAI39: {
|
|
346
|
+
name: "createAI39",
|
|
347
|
+
description: "Create a GS1 AI 39 encodable character set string."
|
|
348
|
+
},
|
|
349
|
+
createAI39Sequence: {
|
|
350
|
+
name: "createAI39Sequence",
|
|
351
|
+
description: "Create a sequence of GS1 AI 39 encodable character set strings."
|
|
352
|
+
},
|
|
353
|
+
valueForAI39: {
|
|
354
|
+
name: "valueForAI39",
|
|
355
|
+
description: "Get the value for a GS1 AI 39 encodable character set string."
|
|
356
|
+
},
|
|
357
|
+
checkDigit: {
|
|
358
|
+
name: "checkDigit",
|
|
359
|
+
description: "Calculate the check digit for a numeric string."
|
|
360
|
+
},
|
|
361
|
+
hasValidCheckDigit: {
|
|
362
|
+
name: "hasValidCheckDigit",
|
|
363
|
+
description: "Determine if a string has a valid check digit."
|
|
364
|
+
},
|
|
365
|
+
priceOrWeightCheckDigit: {
|
|
366
|
+
name: "priceOrWeightCheckDigit",
|
|
367
|
+
description: "Calculate the check digit for a price or weight."
|
|
368
|
+
},
|
|
369
|
+
isValidPriceOrWeightCheckDigit: {
|
|
370
|
+
name: "isValidPriceOrWeightCheckDigit",
|
|
371
|
+
description: "Determine if a price or weight check digit is valid."
|
|
372
|
+
},
|
|
373
|
+
checkCharacterPair: {
|
|
374
|
+
name: "checkCharacterPair",
|
|
375
|
+
description: "Calculate the check character pair for a GS1 AI 82 encodable character set string."
|
|
376
|
+
},
|
|
377
|
+
hasValidCheckCharacterPair: {
|
|
378
|
+
name: "hasValidCheckCharacterPair",
|
|
379
|
+
description: "Determine if a GS1 AI 82 encodable character set string has a valid check character pair."
|
|
380
|
+
},
|
|
381
|
+
validateGTIN13: {
|
|
382
|
+
name: "validateGTIN13",
|
|
383
|
+
description: "Validate a GTIN-13."
|
|
384
|
+
},
|
|
385
|
+
validateGTIN12: {
|
|
386
|
+
name: "validateGTIN12",
|
|
387
|
+
description: "Validate a GTIN-12."
|
|
388
|
+
},
|
|
389
|
+
validateGTIN8: {
|
|
390
|
+
name: "validateGTIN8",
|
|
391
|
+
description: "Validate a GTIN-8."
|
|
392
|
+
},
|
|
393
|
+
zeroSuppressGTIN12: {
|
|
394
|
+
name: "zeroSuppressGTIN12",
|
|
395
|
+
description: "Zero-suppress a GTIN-12."
|
|
396
|
+
},
|
|
397
|
+
zeroExpandGTIN12: {
|
|
398
|
+
name: "zeroExpandGTIN12",
|
|
399
|
+
description: "Expand a zero-suppressed GTIN-12."
|
|
400
|
+
},
|
|
401
|
+
convertToGTIN14: {
|
|
402
|
+
name: "convertToGTIN14",
|
|
403
|
+
description: "Convert a GTIN to GTIN-14."
|
|
404
|
+
},
|
|
405
|
+
normalizeGTIN: {
|
|
406
|
+
name: "normalizeGTIN",
|
|
407
|
+
description: "Normalize a GTIN."
|
|
408
|
+
},
|
|
409
|
+
validateGTIN: {
|
|
410
|
+
name: "validateGTIN",
|
|
411
|
+
description: "Validate any GTIN."
|
|
412
|
+
},
|
|
413
|
+
validateGTIN14: {
|
|
414
|
+
name: "validateGTIN14",
|
|
415
|
+
description: "Validate a GTIN-14."
|
|
416
|
+
},
|
|
417
|
+
parseVariableMeasureRCN: {
|
|
418
|
+
name: "parseVariableMeasureRCN",
|
|
419
|
+
description: "Parse a Restricted Circulation Number (RCN) using a variable measure trade item format."
|
|
420
|
+
},
|
|
421
|
+
validateGLN: {
|
|
422
|
+
name: "validateGLN",
|
|
423
|
+
description: "Validate a GLN."
|
|
424
|
+
},
|
|
425
|
+
validateSSCC: {
|
|
426
|
+
name: "validateSSCC",
|
|
427
|
+
description: "Validate an SSCC."
|
|
428
|
+
},
|
|
429
|
+
validateGRAI: {
|
|
430
|
+
name: "validateGRAI",
|
|
431
|
+
description: "Validate a GRAI."
|
|
432
|
+
},
|
|
433
|
+
validateGIAI: {
|
|
434
|
+
name: "validateGIAI",
|
|
435
|
+
description: "Validate a GIAI."
|
|
436
|
+
},
|
|
437
|
+
validateGSRN: {
|
|
438
|
+
name: "validateGSRN",
|
|
439
|
+
description: "Validate a GSRN."
|
|
440
|
+
},
|
|
441
|
+
validateGDTI: {
|
|
442
|
+
name: "validateGDTI",
|
|
443
|
+
description: "Validate a GDTI."
|
|
444
|
+
},
|
|
445
|
+
validateGINC: {
|
|
446
|
+
name: "validateGINC",
|
|
447
|
+
description: "Validate a GINC."
|
|
448
|
+
},
|
|
449
|
+
validateGSIN: {
|
|
450
|
+
name: "validateGSIN",
|
|
451
|
+
description: "Validate a GSIN."
|
|
452
|
+
},
|
|
453
|
+
validateGCN: {
|
|
454
|
+
name: "validateGCN",
|
|
455
|
+
description: "Validate a GCN."
|
|
456
|
+
},
|
|
457
|
+
validateCPID: {
|
|
458
|
+
name: "validateCPID",
|
|
459
|
+
description: "Validate a CPID."
|
|
460
|
+
},
|
|
461
|
+
validateGMN: {
|
|
462
|
+
name: "validateGMN",
|
|
463
|
+
description: "Validate a GMN."
|
|
464
|
+
},
|
|
465
|
+
definePrefix: {
|
|
466
|
+
name: "definePrefix",
|
|
467
|
+
description: "Define a prefix for use in GS1 identification key creation functions."
|
|
468
|
+
},
|
|
469
|
+
createGTIN: {
|
|
470
|
+
name: "createGTIN",
|
|
471
|
+
description: "Create a GTIN."
|
|
472
|
+
},
|
|
473
|
+
createGTINSequence: {
|
|
474
|
+
name: "createGTINSequence",
|
|
475
|
+
description: "Create a sequence of GTINs."
|
|
476
|
+
},
|
|
477
|
+
createAllGTIN: {
|
|
478
|
+
name: "createAllGTIN",
|
|
479
|
+
description: "Create all GTINs for a prefix."
|
|
480
|
+
},
|
|
481
|
+
createGTIN14: {
|
|
482
|
+
name: "createGTIN14",
|
|
483
|
+
description: "Create a GTIN-14."
|
|
484
|
+
},
|
|
485
|
+
createVariableMeasureRCN: {
|
|
486
|
+
name: "createVariableMeasureRCN",
|
|
487
|
+
description: "Create a variable measure Restricted Circulation Number (RCN)."
|
|
488
|
+
},
|
|
489
|
+
createGLN: {
|
|
490
|
+
name: "createGLN",
|
|
491
|
+
description: "Create a GLN."
|
|
492
|
+
},
|
|
493
|
+
createGLNSequence: {
|
|
494
|
+
name: "createGLNSequence",
|
|
495
|
+
description: "Create a sequence of GLNs."
|
|
496
|
+
},
|
|
497
|
+
createAllGLN: {
|
|
498
|
+
name: "createAllGLN",
|
|
499
|
+
description: "Create all GLNs for a prefix."
|
|
500
|
+
},
|
|
501
|
+
createSSCC: {
|
|
502
|
+
name: "createSSCC",
|
|
503
|
+
description: "Create an SSCC."
|
|
504
|
+
},
|
|
505
|
+
createSSCCSequence: {
|
|
506
|
+
name: "createSSCCSequence",
|
|
507
|
+
description: "Create a sequence of SSCCs."
|
|
508
|
+
},
|
|
509
|
+
createAllSSCC: {
|
|
510
|
+
name: "createAllSSCC",
|
|
511
|
+
description: "Create all SSCCs for a prefix."
|
|
512
|
+
},
|
|
513
|
+
createGRAI: {
|
|
514
|
+
name: "createGRAI",
|
|
515
|
+
description: "Create a GRAI."
|
|
516
|
+
},
|
|
517
|
+
createGRAISequence: {
|
|
518
|
+
name: "createGRAISequence",
|
|
519
|
+
description: "Create a sequence of GRAIs."
|
|
520
|
+
},
|
|
521
|
+
createAllGRAI: {
|
|
522
|
+
name: "createAllGRAI",
|
|
523
|
+
description: "Create all GRAIs for a prefix."
|
|
524
|
+
},
|
|
525
|
+
createSerializedGRAI: {
|
|
526
|
+
name: "createSerializedGRAI",
|
|
527
|
+
description: "Create a serialized GRAI."
|
|
528
|
+
},
|
|
529
|
+
concatenateGRAI: {
|
|
530
|
+
name: "concatenateGRAI",
|
|
531
|
+
description: "Concatenate a base GRAI with a serial component."
|
|
532
|
+
},
|
|
533
|
+
createGIAI: {
|
|
534
|
+
name: "createGIAI",
|
|
535
|
+
description: "Create a GIAI."
|
|
536
|
+
},
|
|
537
|
+
createGSRN: {
|
|
538
|
+
name: "createGSRN",
|
|
539
|
+
description: "Create a GSRN."
|
|
540
|
+
},
|
|
541
|
+
createGSRNSequence: {
|
|
542
|
+
name: "createGSRNSequence",
|
|
543
|
+
description: "Create a sequence of GSRNs."
|
|
544
|
+
},
|
|
545
|
+
createAllGSRN: {
|
|
546
|
+
name: "createAllGSRN",
|
|
547
|
+
description: "Create all GSRNs for a prefix."
|
|
548
|
+
},
|
|
549
|
+
createGDTI: {
|
|
550
|
+
name: "createGDTI",
|
|
551
|
+
description: "Create a GDTI."
|
|
552
|
+
},
|
|
553
|
+
createGDTISequence: {
|
|
554
|
+
name: "createGDTISequence",
|
|
555
|
+
description: "Create a sequence of GDTIs."
|
|
556
|
+
},
|
|
557
|
+
createAllGDTI: {
|
|
558
|
+
name: "createAllGDTI",
|
|
559
|
+
description: "Create all GDTIs for a prefix."
|
|
560
|
+
},
|
|
561
|
+
createSerializedGDTI: {
|
|
562
|
+
name: "createSerializedGDTI",
|
|
563
|
+
description: "Create a serialized GDTI."
|
|
564
|
+
},
|
|
565
|
+
concatenateGDTI: {
|
|
566
|
+
name: "concatenateGDTI",
|
|
567
|
+
description: "Concatenate a base GDTI with a serial component."
|
|
568
|
+
},
|
|
569
|
+
createGINC: {
|
|
570
|
+
name: "createGINC",
|
|
571
|
+
description: "Create a GINC."
|
|
572
|
+
},
|
|
573
|
+
createGSIN: {
|
|
574
|
+
name: "createGSIN",
|
|
575
|
+
description: "Create a GSIN."
|
|
576
|
+
},
|
|
577
|
+
createGSINSequence: {
|
|
578
|
+
name: "createGSINSequence",
|
|
579
|
+
description: "Create a sequence of GSINs."
|
|
580
|
+
},
|
|
581
|
+
createAllGSIN: {
|
|
582
|
+
name: "createAllGSIN",
|
|
583
|
+
description: "Create all GSINs for a prefix."
|
|
584
|
+
},
|
|
585
|
+
createGCN: {
|
|
586
|
+
name: "createGCN",
|
|
587
|
+
description: "Create a GCN."
|
|
588
|
+
},
|
|
589
|
+
createGCNSequence: {
|
|
590
|
+
name: "createGCNSequence",
|
|
591
|
+
description: "Create a sequence of GCNs."
|
|
592
|
+
},
|
|
593
|
+
createAllGCN: {
|
|
594
|
+
name: "createAllGCN",
|
|
595
|
+
description: "Create all GCNs for a prefix."
|
|
596
|
+
},
|
|
597
|
+
createSerializedGCN: {
|
|
598
|
+
name: "createSerializedGCN",
|
|
599
|
+
description: "Create a serialized GCN."
|
|
600
|
+
},
|
|
601
|
+
concatenateGCN: {
|
|
602
|
+
name: "concatenateGCN",
|
|
603
|
+
description: "Concatenate a base GCN with a serial component."
|
|
604
|
+
},
|
|
605
|
+
createCPID: {
|
|
606
|
+
name: "createCPID",
|
|
607
|
+
description: "Create a CPID."
|
|
608
|
+
},
|
|
609
|
+
createGMN: {
|
|
610
|
+
name: "createGMN",
|
|
611
|
+
description: "Create a GMN."
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
};
|
|
616
|
+
//# sourceMappingURL=locale-strings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locale-strings.js","sourceRoot":"","sources":["../../../src/locale/en/locale-strings.ts"],"names":[],"mappings":"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"}
|