@aidc-toolkit/app-extension 1.0.49 → 1.0.50
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/{character-set-proxy-BOW94WCe.d.cts → character-set-proxy-CQCOcqR3.d.cts} +92 -92
- package/dist/{character-set-proxy-BOW94WCe.d.ts → character-set-proxy-CQCOcqR3.d.ts} +92 -92
- package/dist/chunk-46ONQV2V.js +1 -0
- package/dist/chunk-4BTJEN4N.js +1 -0
- package/dist/chunk-WLXID4YR.js +1 -0
- package/dist/{descriptor-D6tZH-vc.d.cts → descriptor-Df-lif4q.d.cts} +1 -1
- package/dist/{descriptor-D6tZH-vc.d.ts → descriptor-Df-lif4q.d.ts} +1 -1
- package/dist/generator/index.cjs +1 -1
- package/dist/generator/index.d.cts +2 -18
- package/dist/generator/index.d.ts +2 -18
- package/dist/generator/index.js +1 -1
- package/dist/gs1/index.cjs +1 -1
- package/dist/gs1/index.d.cts +106 -106
- package/dist/gs1/index.d.ts +106 -106
- package/dist/gs1/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +16 -31
- package/dist/index.d.ts +16 -31
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/app-extension-options.ts +61 -0
- package/src/app-extension.ts +22 -32
- package/src/app-helper-proxy.ts +21 -33
- package/src/generator/functions-generator.ts +14 -45
- package/src/generator/generator.ts +28 -18
- package/src/generator/locale-resources-generator.ts +79 -52
- package/src/gs1/character-set-proxy.ts +6 -7
- package/src/gs1/check-proxy.ts +8 -8
- package/src/gs1/gcp-length-proxy.ts +8 -8
- package/src/gs1/gtin-creator-proxy.ts +4 -4
- package/src/gs1/gtin-validator-proxy.ts +12 -12
- package/src/gs1/identifier-creator-proxy.ts +14 -14
- package/src/gs1/identifier-validator-proxy.ts +10 -10
- package/src/gs1/non-gtin-creator-proxy.ts +22 -23
- package/src/gs1/non-gtin-validator-proxy.ts +22 -23
- package/src/gs1/prefix-manager-proxy.ts +2 -2
- package/src/gs1/variable-measure-proxy.ts +4 -4
- package/src/gs1/verified-by-gs1-proxy.ts +5 -11
- package/src/index.ts +1 -0
- package/src/lib-proxy.ts +27 -43
- package/src/locale/en/locale-resources.ts +1 -1
- package/src/proxy.ts +12 -15
- package/src/streaming.ts +3 -3
- package/src/type.ts +3 -22
- package/src/utility/character-set-proxy.ts +17 -16
- package/src/utility/reg-exp-proxy.ts +2 -2
- package/src/utility/string-proxy.ts +2 -2
- package/src/utility/transformer-proxy.ts +6 -5
- package/src/version.ts +1 -1
- package/tsconfig-src.tsbuildinfo +1 -1
- package/dist/chunk-22IRLVWO.js +0 -1
- package/dist/chunk-MR63TJ3B.js +0 -1
- package/dist/chunk-TWX7TPRC.js +0 -1
package/dist/gs1/index.d.cts
CHANGED
|
@@ -1,185 +1,185 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { C as CharacterSetCreatorProxy, e as AppExtension, h as CharacterSetValidatorProxy, L as LibProxy, M as Matrix, a as MatrixResult, m as SingletonResult, b as StringProxy } from '../character-set-proxy-CQCOcqR3.cjs';
|
|
2
2
|
import { Nullishable } from '@aidc-toolkit/core';
|
|
3
|
-
import {
|
|
3
|
+
import { IdentifierType, IdentifierTypeValidator, NonNumericIdentifierType, NonNumericIdentifierValidation, NonGTINNumericIdentifierType, NumericIdentifierType, SerializableNumericIdentifierType, NonSerializableNumericIdentifierType, GTINType, GTINLevel, PrefixType, IdentifierValidation, IdentifierCreator, PrefixManager, NonNumericIdentifierCreator, NonGTINNumericIdentifierCreator, NumericIdentifierCreator, NumericIdentifierValidation, SerializableNumericIdentifierCreator, GTINCreator } from '@aidc-toolkit/gs1';
|
|
4
4
|
import '@aidc-toolkit/utility';
|
|
5
5
|
import 'tslog';
|
|
6
6
|
|
|
7
|
-
declare class AI82Proxy
|
|
8
|
-
constructor(appExtension: AppExtension
|
|
7
|
+
declare class AI82Proxy extends CharacterSetCreatorProxy {
|
|
8
|
+
constructor(appExtension: AppExtension);
|
|
9
9
|
}
|
|
10
|
-
declare class AI39Proxy
|
|
11
|
-
constructor(appExtension: AppExtension
|
|
10
|
+
declare class AI39Proxy extends CharacterSetCreatorProxy {
|
|
11
|
+
constructor(appExtension: AppExtension);
|
|
12
12
|
}
|
|
13
|
-
declare class AI64Proxy
|
|
14
|
-
constructor(appExtension: AppExtension
|
|
13
|
+
declare class AI64Proxy extends CharacterSetValidatorProxy {
|
|
14
|
+
constructor(appExtension: AppExtension);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
declare class CheckProxy
|
|
18
|
-
checkDigit(matrixSs: Matrix<string>): MatrixResult<string
|
|
19
|
-
hasValidCheckDigit(matrixSs: Matrix<string>): MatrixResult<boolean
|
|
20
|
-
priceOrWeightCheckDigit(matrixSs: Matrix<string>): MatrixResult<string
|
|
21
|
-
isValidPriceOrWeightCheckDigit(s: string, checkDigit: string): SingletonResult<boolean
|
|
22
|
-
checkCharacterPair(matrixSs: Matrix<string>): MatrixResult<string
|
|
23
|
-
hasValidCheckCharacterPair(matrixSs: Matrix<string>): MatrixResult<boolean
|
|
17
|
+
declare class CheckProxy extends LibProxy {
|
|
18
|
+
checkDigit(matrixSs: Matrix<string>): MatrixResult<string>;
|
|
19
|
+
hasValidCheckDigit(matrixSs: Matrix<string>): MatrixResult<boolean>;
|
|
20
|
+
priceOrWeightCheckDigit(matrixSs: Matrix<string>): MatrixResult<string>;
|
|
21
|
+
isValidPriceOrWeightCheckDigit(s: string, checkDigit: string): SingletonResult<boolean>;
|
|
22
|
+
checkCharacterPair(matrixSs: Matrix<string>): MatrixResult<string>;
|
|
23
|
+
hasValidCheckCharacterPair(matrixSs: Matrix<string>): MatrixResult<boolean>;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
declare abstract class IdentifierValidatorProxy<
|
|
26
|
+
declare abstract class IdentifierValidatorProxy<TIdentifierType extends IdentifierType> extends StringProxy {
|
|
27
27
|
#private;
|
|
28
|
-
constructor(appExtension: AppExtension
|
|
28
|
+
constructor(appExtension: AppExtension, validator: IdentifierTypeValidator<TIdentifierType>);
|
|
29
29
|
protected get validator(): IdentifierTypeValidator<TIdentifierType>;
|
|
30
30
|
}
|
|
31
|
-
declare abstract class NumericIdentifierValidatorProxy<
|
|
31
|
+
declare abstract class NumericIdentifierValidatorProxy<TNumericIdentifierType extends NumericIdentifierType> extends IdentifierValidatorProxy<TNumericIdentifierType> {
|
|
32
32
|
validate(matrixIdentifiers: Matrix<string>): Matrix<string>;
|
|
33
33
|
isValid(matrixIdentifiers: Matrix<string>): Matrix<boolean>;
|
|
34
34
|
}
|
|
35
|
-
declare abstract class GTINValidatorProxy
|
|
35
|
+
declare abstract class GTINValidatorProxy extends NumericIdentifierValidatorProxy<GTINType> {
|
|
36
36
|
}
|
|
37
|
-
declare abstract class NonGTINNumericIdentifierValidatorProxy<
|
|
37
|
+
declare abstract class NonGTINNumericIdentifierValidatorProxy<TNonGTINNumericIdentifierType extends NonGTINNumericIdentifierType = NonGTINNumericIdentifierType> extends NumericIdentifierValidatorProxy<TNonGTINNumericIdentifierType> {
|
|
38
38
|
}
|
|
39
|
-
declare abstract class NonSerializableNumericIdentifierValidatorProxy
|
|
39
|
+
declare abstract class NonSerializableNumericIdentifierValidatorProxy extends NonGTINNumericIdentifierValidatorProxy<NonSerializableNumericIdentifierType> {
|
|
40
40
|
}
|
|
41
|
-
declare abstract class SerializableNumericIdentifierValidatorProxy
|
|
42
|
-
split(matrixIdentifiers: Matrix<string>): MatrixResult<string
|
|
41
|
+
declare abstract class SerializableNumericIdentifierValidatorProxy extends NonGTINNumericIdentifierValidatorProxy<SerializableNumericIdentifierType> {
|
|
42
|
+
split(matrixIdentifiers: Matrix<string>): MatrixResult<string>;
|
|
43
43
|
}
|
|
44
|
-
declare abstract class NonNumericIdentifierValidatorProxy
|
|
44
|
+
declare abstract class NonNumericIdentifierValidatorProxy extends IdentifierValidatorProxy<NonNumericIdentifierType> {
|
|
45
45
|
validate(matrixIdentifiers: Matrix<string>, exclusion: Nullishable<NonNumericIdentifierValidation["exclusion"]>): Matrix<string>;
|
|
46
46
|
isValid(matrixIdentifiers: Matrix<string>, exclusion: Nullishable<NonNumericIdentifierValidation["exclusion"]>): Matrix<boolean>;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
declare class GTIN13ValidatorProxy
|
|
50
|
-
constructor(appExtension: AppExtension
|
|
49
|
+
declare class GTIN13ValidatorProxy extends GTINValidatorProxy {
|
|
50
|
+
constructor(appExtension: AppExtension);
|
|
51
51
|
}
|
|
52
|
-
declare class GTIN12ValidatorProxy
|
|
53
|
-
constructor(appExtension: AppExtension
|
|
52
|
+
declare class GTIN12ValidatorProxy extends GTINValidatorProxy {
|
|
53
|
+
constructor(appExtension: AppExtension);
|
|
54
54
|
}
|
|
55
|
-
declare class GTIN8ValidatorProxy
|
|
56
|
-
constructor(appExtension: AppExtension
|
|
55
|
+
declare class GTIN8ValidatorProxy extends GTINValidatorProxy {
|
|
56
|
+
constructor(appExtension: AppExtension);
|
|
57
57
|
}
|
|
58
|
-
declare class GTINValidatorStaticProxy
|
|
59
|
-
zeroSuppressGTIN12(matrixGTIN12s: Matrix<string>): MatrixResult<string
|
|
60
|
-
zeroExpandGTIN12(matrixZeroSuppressedGTIN12s: Matrix<string>): MatrixResult<string
|
|
61
|
-
convertToGTIN14(indicatorDigit: string, matrixGTINs: Matrix<string>): MatrixResult<string
|
|
62
|
-
normalizeGTIN(matrixGTINs: Matrix<string>): MatrixResult<string
|
|
58
|
+
declare class GTINValidatorStaticProxy extends LibProxy {
|
|
59
|
+
zeroSuppressGTIN12(matrixGTIN12s: Matrix<string>): MatrixResult<string>;
|
|
60
|
+
zeroExpandGTIN12(matrixZeroSuppressedGTIN12s: Matrix<string>): MatrixResult<string>;
|
|
61
|
+
convertToGTIN14(indicatorDigit: string, matrixGTINs: Matrix<string>): MatrixResult<string>;
|
|
62
|
+
normalizeGTIN(matrixGTINs: Matrix<string>): MatrixResult<string>;
|
|
63
63
|
validateGTIN(matrixGTINs: Matrix<string>, gtinLevel: Nullishable<GTINLevel>): Matrix<string>;
|
|
64
64
|
isValidGTIN(matrixGTINs: Matrix<string>, gtinLevel: Nullishable<GTINLevel>): Matrix<boolean>;
|
|
65
65
|
validateGTIN14(matrixGTIN14s: Matrix<string>): Matrix<string>;
|
|
66
66
|
isValidGTIN14(matrixGTIN14s: Matrix<string>): Matrix<boolean>;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
declare class GLNValidatorProxy
|
|
70
|
-
constructor(appExtension: AppExtension
|
|
69
|
+
declare class GLNValidatorProxy extends NonSerializableNumericIdentifierValidatorProxy {
|
|
70
|
+
constructor(appExtension: AppExtension);
|
|
71
71
|
}
|
|
72
|
-
declare class SSCCValidatorProxy
|
|
73
|
-
constructor(appExtension: AppExtension
|
|
72
|
+
declare class SSCCValidatorProxy extends NonSerializableNumericIdentifierValidatorProxy {
|
|
73
|
+
constructor(appExtension: AppExtension);
|
|
74
74
|
}
|
|
75
|
-
declare class GRAIValidatorProxy
|
|
76
|
-
constructor(appExtension: AppExtension
|
|
75
|
+
declare class GRAIValidatorProxy extends SerializableNumericIdentifierValidatorProxy {
|
|
76
|
+
constructor(appExtension: AppExtension);
|
|
77
77
|
}
|
|
78
|
-
declare class GIAIValidatorProxy
|
|
79
|
-
constructor(appExtension: AppExtension
|
|
78
|
+
declare class GIAIValidatorProxy extends NonNumericIdentifierValidatorProxy {
|
|
79
|
+
constructor(appExtension: AppExtension);
|
|
80
80
|
}
|
|
81
|
-
declare class GSRNValidatorProxy
|
|
82
|
-
constructor(appExtension: AppExtension
|
|
81
|
+
declare class GSRNValidatorProxy extends NonSerializableNumericIdentifierValidatorProxy {
|
|
82
|
+
constructor(appExtension: AppExtension);
|
|
83
83
|
}
|
|
84
|
-
declare class GDTIValidatorProxy
|
|
85
|
-
constructor(appExtension: AppExtension
|
|
84
|
+
declare class GDTIValidatorProxy extends SerializableNumericIdentifierValidatorProxy {
|
|
85
|
+
constructor(appExtension: AppExtension);
|
|
86
86
|
}
|
|
87
|
-
declare class GINCValidatorProxy
|
|
88
|
-
constructor(appExtension: AppExtension
|
|
87
|
+
declare class GINCValidatorProxy extends NonNumericIdentifierValidatorProxy {
|
|
88
|
+
constructor(appExtension: AppExtension);
|
|
89
89
|
}
|
|
90
|
-
declare class GSINValidatorProxy
|
|
91
|
-
constructor(appExtension: AppExtension
|
|
90
|
+
declare class GSINValidatorProxy extends NonSerializableNumericIdentifierValidatorProxy {
|
|
91
|
+
constructor(appExtension: AppExtension);
|
|
92
92
|
}
|
|
93
|
-
declare class GCNValidatorProxy
|
|
94
|
-
constructor(appExtension: AppExtension
|
|
93
|
+
declare class GCNValidatorProxy extends SerializableNumericIdentifierValidatorProxy {
|
|
94
|
+
constructor(appExtension: AppExtension);
|
|
95
95
|
}
|
|
96
|
-
declare class CPIDValidatorProxy
|
|
97
|
-
constructor(appExtension: AppExtension
|
|
96
|
+
declare class CPIDValidatorProxy extends NonNumericIdentifierValidatorProxy {
|
|
97
|
+
constructor(appExtension: AppExtension);
|
|
98
98
|
}
|
|
99
|
-
declare class GMNValidatorProxy
|
|
100
|
-
constructor(appExtension: AppExtension
|
|
99
|
+
declare class GMNValidatorProxy extends NonNumericIdentifierValidatorProxy {
|
|
100
|
+
constructor(appExtension: AppExtension);
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
declare class PrefixManagerProxy
|
|
103
|
+
declare class PrefixManagerProxy extends LibProxy {
|
|
104
104
|
definePrefix(prefix: string, prefixType: Nullishable<PrefixType>, tweakFactor: Nullishable<number>): Matrix<unknown>;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
declare abstract class IdentifierCreatorProxy<
|
|
107
|
+
declare abstract class IdentifierCreatorProxy<TIdentifierType extends IdentifierType, TIdentifierValidation extends IdentifierValidation, TIdentifierCreator extends IdentifierCreator<TIdentifierType, TIdentifierValidation>> extends LibProxy {
|
|
108
108
|
#private;
|
|
109
|
-
constructor(appExtension: AppExtension
|
|
109
|
+
constructor(appExtension: AppExtension, getCreator: (prefixManager: PrefixManager) => TIdentifierCreator);
|
|
110
110
|
protected getCreator(prefixDefinition: Matrix<unknown>): TIdentifierCreator;
|
|
111
111
|
}
|
|
112
|
-
declare abstract class NumericIdentifierCreatorProxy<
|
|
113
|
-
create(prefixDefinition: Matrix<unknown>, matrixValues: Matrix<number | bigint>, sparse: Nullishable<boolean>): MatrixResult<string
|
|
114
|
-
createSequence(prefixDefinition: Matrix<unknown>, startValue: number, count: number, sparse: Nullishable<boolean>): MatrixResult<string
|
|
115
|
-
createAll(prefixDefinition: Matrix<unknown>): MatrixResult<string
|
|
112
|
+
declare abstract class NumericIdentifierCreatorProxy<TNumericIdentifierType extends NumericIdentifierType, TNumericIdentifierCreator extends NumericIdentifierCreator<TNumericIdentifierType>> extends IdentifierCreatorProxy<TNumericIdentifierType, NumericIdentifierValidation, TNumericIdentifierCreator> {
|
|
113
|
+
create(prefixDefinition: Matrix<unknown>, matrixValues: Matrix<number | bigint>, sparse: Nullishable<boolean>): MatrixResult<string>;
|
|
114
|
+
createSequence(prefixDefinition: Matrix<unknown>, startValue: number, count: number, sparse: Nullishable<boolean>): MatrixResult<string>;
|
|
115
|
+
createAll(prefixDefinition: Matrix<unknown>): MatrixResult<string>;
|
|
116
116
|
}
|
|
117
|
-
declare abstract class NonGTINNumericIdentifierCreatorProxy<
|
|
117
|
+
declare abstract class NonGTINNumericIdentifierCreatorProxy<TNonGTINNumericIdentifierType extends NonGTINNumericIdentifierType, TNonGTINNumericIdentifierCreator extends NonGTINNumericIdentifierCreator> extends NumericIdentifierCreatorProxy<TNonGTINNumericIdentifierType, TNonGTINNumericIdentifierCreator> {
|
|
118
118
|
}
|
|
119
|
-
declare abstract class NonSerializableNumericIdentifierCreatorProxy<
|
|
119
|
+
declare abstract class NonSerializableNumericIdentifierCreatorProxy<TNonSerializableNumericIdentifierType extends NonSerializableNumericIdentifierType, TNonGTINNumericIdentifierCreator extends NonGTINNumericIdentifierCreator> extends NonGTINNumericIdentifierCreatorProxy<TNonSerializableNumericIdentifierType, TNonGTINNumericIdentifierCreator> {
|
|
120
120
|
}
|
|
121
|
-
declare abstract class SerializableNumericIdentifierCreatorProxy
|
|
122
|
-
createSerialized(prefixDefinition: Matrix<unknown>, value: number, matrixSerialComponents: Matrix<string>, sparse: Nullishable<boolean>): MatrixResult<string
|
|
123
|
-
concatenate(baseIdentifier: string, matrixSerialComponents: Matrix<string>): MatrixResult<string
|
|
121
|
+
declare abstract class SerializableNumericIdentifierCreatorProxy extends NonGTINNumericIdentifierCreatorProxy<SerializableNumericIdentifierType, SerializableNumericIdentifierCreator> {
|
|
122
|
+
createSerialized(prefixDefinition: Matrix<unknown>, value: number | bigint, matrixSerialComponents: Matrix<string>, sparse: Nullishable<boolean>): MatrixResult<string>;
|
|
123
|
+
concatenate(baseIdentifier: string, matrixSerialComponents: Matrix<string>): MatrixResult<string>;
|
|
124
124
|
}
|
|
125
|
-
declare abstract class NonNumericIdentifierCreatorProxy
|
|
126
|
-
create(prefixDefinition: Matrix<unknown>, matrixReferences: Matrix<string>): MatrixResult<string
|
|
125
|
+
declare abstract class NonNumericIdentifierCreatorProxy extends IdentifierCreatorProxy<NonNumericIdentifierType, NonNumericIdentifierValidation, NonNumericIdentifierCreator> {
|
|
126
|
+
create(prefixDefinition: Matrix<unknown>, matrixReferences: Matrix<string>): MatrixResult<string>;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
declare class GTINCreatorProxy
|
|
130
|
-
constructor(appExtension: AppExtension
|
|
131
|
-
createGTIN14(indicatorDigit: string, prefixDefinition: Matrix<unknown>, matrixValues: Matrix<number | bigint>, sparse: Nullishable<boolean>): MatrixResult<string
|
|
129
|
+
declare class GTINCreatorProxy extends NumericIdentifierCreatorProxy<GTINType, GTINCreator> {
|
|
130
|
+
constructor(appExtension: AppExtension);
|
|
131
|
+
createGTIN14(indicatorDigit: string, prefixDefinition: Matrix<unknown>, matrixValues: Matrix<number | bigint>, sparse: Nullishable<boolean>): MatrixResult<string>;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
declare class GLNCreatorProxy
|
|
135
|
-
constructor(appExtension: AppExtension
|
|
134
|
+
declare class GLNCreatorProxy extends NonSerializableNumericIdentifierCreatorProxy<NonSerializableNumericIdentifierType, NonGTINNumericIdentifierCreator> {
|
|
135
|
+
constructor(appExtension: AppExtension);
|
|
136
136
|
}
|
|
137
|
-
declare class SSCCCreatorProxy
|
|
138
|
-
constructor(appExtension: AppExtension
|
|
137
|
+
declare class SSCCCreatorProxy extends NonSerializableNumericIdentifierCreatorProxy<NonSerializableNumericIdentifierType, NonGTINNumericIdentifierCreator> {
|
|
138
|
+
constructor(appExtension: AppExtension);
|
|
139
139
|
}
|
|
140
|
-
declare class GRAICreatorProxy
|
|
141
|
-
constructor(appExtension: AppExtension
|
|
140
|
+
declare class GRAICreatorProxy extends SerializableNumericIdentifierCreatorProxy {
|
|
141
|
+
constructor(appExtension: AppExtension);
|
|
142
142
|
}
|
|
143
|
-
declare class GIAICreatorProxy
|
|
144
|
-
constructor(appExtension: AppExtension
|
|
143
|
+
declare class GIAICreatorProxy extends NonNumericIdentifierCreatorProxy {
|
|
144
|
+
constructor(appExtension: AppExtension);
|
|
145
145
|
}
|
|
146
|
-
declare class GSRNCreatorProxy
|
|
147
|
-
constructor(appExtension: AppExtension
|
|
146
|
+
declare class GSRNCreatorProxy extends NonSerializableNumericIdentifierCreatorProxy<NonSerializableNumericIdentifierType, NonGTINNumericIdentifierCreator> {
|
|
147
|
+
constructor(appExtension: AppExtension);
|
|
148
148
|
}
|
|
149
|
-
declare class GDTICreatorProxy
|
|
150
|
-
constructor(appExtension: AppExtension
|
|
149
|
+
declare class GDTICreatorProxy extends SerializableNumericIdentifierCreatorProxy {
|
|
150
|
+
constructor(appExtension: AppExtension);
|
|
151
151
|
}
|
|
152
|
-
declare class GINCCreatorProxy
|
|
153
|
-
constructor(appExtension: AppExtension
|
|
152
|
+
declare class GINCCreatorProxy extends NonNumericIdentifierCreatorProxy {
|
|
153
|
+
constructor(appExtension: AppExtension);
|
|
154
154
|
}
|
|
155
|
-
declare class GSINCreatorProxy
|
|
156
|
-
constructor(appExtension: AppExtension
|
|
155
|
+
declare class GSINCreatorProxy extends NonSerializableNumericIdentifierCreatorProxy<NonSerializableNumericIdentifierType, NonGTINNumericIdentifierCreator> {
|
|
156
|
+
constructor(appExtension: AppExtension);
|
|
157
157
|
}
|
|
158
|
-
declare class GCNCreatorProxy
|
|
159
|
-
constructor(appExtension: AppExtension
|
|
158
|
+
declare class GCNCreatorProxy extends SerializableNumericIdentifierCreatorProxy {
|
|
159
|
+
constructor(appExtension: AppExtension);
|
|
160
160
|
}
|
|
161
|
-
declare class CPIDCreatorProxy
|
|
162
|
-
constructor(appExtension: AppExtension
|
|
161
|
+
declare class CPIDCreatorProxy extends NonNumericIdentifierCreatorProxy {
|
|
162
|
+
constructor(appExtension: AppExtension);
|
|
163
163
|
}
|
|
164
|
-
declare class GMNCreatorProxy
|
|
165
|
-
constructor(appExtension: AppExtension
|
|
164
|
+
declare class GMNCreatorProxy extends NonNumericIdentifierCreatorProxy {
|
|
165
|
+
constructor(appExtension: AppExtension);
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
declare class VariableMeasureProxy
|
|
169
|
-
parseVariableMeasureRCN(format: string, matrixRCNs: Matrix<string>): MatrixResult<number
|
|
170
|
-
createVariableMeasureRCN(format: string, itemReference: number, matrixPricesOrWeights: Matrix<number>): MatrixResult<string
|
|
168
|
+
declare class VariableMeasureProxy extends LibProxy {
|
|
169
|
+
parseVariableMeasureRCN(format: string, matrixRCNs: Matrix<string>): MatrixResult<number>;
|
|
170
|
+
createVariableMeasureRCN(format: string, itemReference: number, matrixPricesOrWeights: Matrix<number>): MatrixResult<string>;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
declare class VerifiedByGS1Proxy
|
|
174
|
-
verifiedByGS1(identifierType: string, matrixIdentifiers: Matrix<string>, text: Nullishable<string>, details: Nullishable<string
|
|
173
|
+
declare class VerifiedByGS1Proxy extends LibProxy {
|
|
174
|
+
verifiedByGS1(identifierType: string, matrixIdentifiers: Matrix<string>, text: Nullishable<string>, details: Nullishable<string>): Promise<MatrixResult<unknown>>;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
declare class GCPLengthProxy
|
|
177
|
+
declare class GCPLengthProxy extends LibProxy {
|
|
178
178
|
#private;
|
|
179
|
-
constructor(appExtension: AppExtension
|
|
180
|
-
gcpLengthOf(identifierType: string, matrixIdentifiers: Matrix<string>): Promise<MatrixResult<number
|
|
181
|
-
gcpLengthDateTime(): Promise<SingletonResult<string
|
|
182
|
-
gcpLengthDisclaimer(): Promise<SingletonResult<string
|
|
179
|
+
constructor(appExtension: AppExtension);
|
|
180
|
+
gcpLengthOf(identifierType: string, matrixIdentifiers: Matrix<string>): Promise<MatrixResult<number>>;
|
|
181
|
+
gcpLengthDateTime(): Promise<SingletonResult<string>>;
|
|
182
|
+
gcpLengthDisclaimer(): Promise<SingletonResult<string>>;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
export { AI39Proxy, AI64Proxy, AI82Proxy, CPIDCreatorProxy, CPIDValidatorProxy, CheckProxy, GCNCreatorProxy, GCNValidatorProxy, GCPLengthProxy, GDTICreatorProxy, GDTIValidatorProxy, GIAICreatorProxy, GIAIValidatorProxy, GINCCreatorProxy, GINCValidatorProxy, GLNCreatorProxy, GLNValidatorProxy, GMNCreatorProxy, GMNValidatorProxy, GRAICreatorProxy, GRAIValidatorProxy, GSINCreatorProxy, GSINValidatorProxy, GSRNCreatorProxy, GSRNValidatorProxy, GTIN12ValidatorProxy, GTIN13ValidatorProxy, GTIN8ValidatorProxy, GTINCreatorProxy, GTINValidatorStaticProxy, PrefixManagerProxy, SSCCCreatorProxy, SSCCValidatorProxy, VariableMeasureProxy, VerifiedByGS1Proxy };
|