@ripwords/myinvois-client 0.1.6 → 0.1.7
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/package.json +5 -8
- package/.prettierrc +0 -8
- package/CHANGELOG.md +0 -152
- package/bun.lock +0 -460
- package/myinvois-cert.conf.template +0 -23
- package/scripts/gen-cert.sh +0 -159
- package/src/api/platform/platformLogin.ts +0 -34
- package/src/index.ts +0 -530
- package/src/types/classification-codes.d.ts +0 -115
- package/src/types/country-code.d.ts +0 -790
- package/src/types/currencies.d.ts +0 -383
- package/src/types/documents.d.ts +0 -869
- package/src/types/e-invoice.d.ts +0 -41
- package/src/types/index.d.ts +0 -24
- package/src/types/msic/0X.d.ts +0 -408
- package/src/types/msic/1X.d.ts +0 -210
- package/src/types/msic/2X.d.ts +0 -266
- package/src/types/msic/3X.d.ts +0 -114
- package/src/types/msic/4X.d.ts +0 -520
- package/src/types/msic/5X.d.ts +0 -144
- package/src/types/msic/6X.d.ts +0 -200
- package/src/types/msic/7X.d.ts +0 -132
- package/src/types/msic/8X.d.ts +0 -210
- package/src/types/msic/9X.d.ts +0 -186
- package/src/types/msic-codes.d.ts +0 -31
- package/src/types/payment-modes.d.ts +0 -41
- package/src/types/signatures.d.ts +0 -169
- package/src/types/state-codes.d.ts +0 -59
- package/src/types/tax-types.d.ts +0 -39
- package/src/types/unit/1X.d.ts +0 -16
- package/src/types/unit/2X.d.ts +0 -62
- package/src/types/unit/3X.d.ts +0 -17
- package/src/types/unit/4X.d.ts +0 -44
- package/src/types/unit/5X.d.ts +0 -26
- package/src/types/unit/6X.d.ts +0 -12
- package/src/types/unit/7X.d.ts +0 -12
- package/src/types/unit/8X.d.ts +0 -15
- package/src/types/unit/9X.d.ts +0 -11
- package/src/types/unit/AX.d.ts +0 -202
- package/src/types/unit/BX.d.ts +0 -212
- package/src/types/unit/CX.d.ts +0 -238
- package/src/types/unit/DX.d.ts +0 -212
- package/src/types/unit/EX.d.ts +0 -196
- package/src/types/unit/FX.d.ts +0 -236
- package/src/types/unit/GX.d.ts +0 -254
- package/src/types/unit/HX.d.ts +0 -234
- package/src/types/unit/IX.d.ts +0 -28
- package/src/types/unit/JX.d.ts +0 -190
- package/src/types/unit/KX.d.ts +0 -284
- package/src/types/unit/LX.d.ts +0 -228
- package/src/types/unit/MX.d.ts +0 -288
- package/src/types/unit/NX.d.ts +0 -226
- package/src/types/unit/OX.d.ts +0 -34
- package/src/types/unit/PX.d.ts +0 -224
- package/src/types/unit/QX.d.ts +0 -94
- package/src/types/unit/RX.d.ts +0 -28
- package/src/types/unit/SX.d.ts +0 -56
- package/src/types/unit/TX.d.ts +0 -44
- package/src/types/unit/UX.d.ts +0 -14
- package/src/types/unit/VX.d.ts +0 -13
- package/src/types/unit/WX.d.ts +0 -34
- package/src/types/unit/XX.d.ts +0 -825
- package/src/types/unit/YX.d.ts +0 -17
- package/src/types/unit/ZX.d.ts +0 -19
- package/src/types/unit-types.d.ts +0 -86
- package/src/utils/base64.ts +0 -7
- package/src/utils/certificate.ts +0 -60
- package/src/utils/document.ts +0 -852
- package/src/utils/getBaseUrl.ts +0 -5
- package/src/utils/helpers.ts +0 -552
- package/src/utils/signature-diagnostics.ts +0 -583
- package/src/utils/validation.ts +0 -268
- package/test/MyInvoiClientWithRealData.test.ts +0 -40
- package/test/MyInvoisClient.test.ts +0 -204
- package/test/base64.test.ts +0 -43
- package/test/dynamicInvoiceFeatures.test.ts +0 -451
- package/test/signAndSubmitInvoice.test.ts +0 -452
- package/test/signature-diagnostics.test.ts +0 -130
- package/tsconfig.json +0 -39
- package/tsdown.config.ts +0 -31
- package/vitest.config.ts +0 -8
package/src/types/unit/6X.d.ts
DELETED
package/src/types/unit/7X.d.ts
DELETED
package/src/types/unit/8X.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Unit type codes starting with '8'.
|
|
3
|
-
*/
|
|
4
|
-
export type UnitTypeCode_8X = '80' | '81' | '85' | '87' | '89'
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Enum representing unit type codes starting with '8'.
|
|
8
|
-
*/
|
|
9
|
-
export enum UnitTypeCodeEnum_8X {
|
|
10
|
-
PoundPerSquareInchAbsolute = '80',
|
|
11
|
-
Henry = '81',
|
|
12
|
-
FootPoundForce = '85',
|
|
13
|
-
PoundPerCubicFoot = '87',
|
|
14
|
-
Poise = '89',
|
|
15
|
-
}
|
package/src/types/unit/9X.d.ts
DELETED
package/src/types/unit/AX.d.ts
DELETED
|
@@ -1,202 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Unit type codes starting with 'A'.
|
|
3
|
-
*/
|
|
4
|
-
export type UnitTypeCode_AX =
|
|
5
|
-
| 'A10'
|
|
6
|
-
| 'A11'
|
|
7
|
-
| 'A12'
|
|
8
|
-
| 'A13'
|
|
9
|
-
| 'A14'
|
|
10
|
-
| 'A15'
|
|
11
|
-
| 'A16'
|
|
12
|
-
| 'A17'
|
|
13
|
-
| 'A18'
|
|
14
|
-
| 'A19'
|
|
15
|
-
| 'A2'
|
|
16
|
-
| 'A20'
|
|
17
|
-
| 'A21'
|
|
18
|
-
| 'A22'
|
|
19
|
-
| 'A23'
|
|
20
|
-
| 'A24'
|
|
21
|
-
| 'A26'
|
|
22
|
-
| 'A27'
|
|
23
|
-
| 'A28'
|
|
24
|
-
| 'A29'
|
|
25
|
-
| 'A3'
|
|
26
|
-
| 'A30'
|
|
27
|
-
| 'A31'
|
|
28
|
-
| 'A32'
|
|
29
|
-
| 'A33'
|
|
30
|
-
| 'A34'
|
|
31
|
-
| 'A35'
|
|
32
|
-
| 'A36'
|
|
33
|
-
| 'A37'
|
|
34
|
-
| 'A38'
|
|
35
|
-
| 'A39'
|
|
36
|
-
| 'A4'
|
|
37
|
-
| 'A40'
|
|
38
|
-
| 'A41'
|
|
39
|
-
| 'A42'
|
|
40
|
-
| 'A43'
|
|
41
|
-
| 'A44'
|
|
42
|
-
| 'A45'
|
|
43
|
-
| 'A47'
|
|
44
|
-
| 'A48'
|
|
45
|
-
| 'A49'
|
|
46
|
-
| 'A5'
|
|
47
|
-
| 'A53'
|
|
48
|
-
| 'A54'
|
|
49
|
-
| 'A55'
|
|
50
|
-
| 'A56'
|
|
51
|
-
| 'A59'
|
|
52
|
-
| 'A6'
|
|
53
|
-
| 'A68'
|
|
54
|
-
| 'A69'
|
|
55
|
-
| 'A7'
|
|
56
|
-
| 'A70'
|
|
57
|
-
| 'A71'
|
|
58
|
-
| 'A73'
|
|
59
|
-
| 'A74'
|
|
60
|
-
| 'A75'
|
|
61
|
-
| 'A76'
|
|
62
|
-
| 'A8'
|
|
63
|
-
| 'A84'
|
|
64
|
-
| 'A85'
|
|
65
|
-
| 'A86'
|
|
66
|
-
| 'A87'
|
|
67
|
-
| 'A88'
|
|
68
|
-
| 'A89'
|
|
69
|
-
| 'A9'
|
|
70
|
-
| 'A90'
|
|
71
|
-
| 'A91'
|
|
72
|
-
| 'A93'
|
|
73
|
-
| 'A94'
|
|
74
|
-
| 'A95'
|
|
75
|
-
| 'A96'
|
|
76
|
-
| 'A97'
|
|
77
|
-
| 'A98'
|
|
78
|
-
| 'A99'
|
|
79
|
-
| 'AA'
|
|
80
|
-
| 'AB'
|
|
81
|
-
| 'ACR'
|
|
82
|
-
| 'ACT'
|
|
83
|
-
| 'AD'
|
|
84
|
-
| 'AE'
|
|
85
|
-
| 'AH'
|
|
86
|
-
| 'AI'
|
|
87
|
-
| 'AK'
|
|
88
|
-
| 'AL'
|
|
89
|
-
| 'AMH'
|
|
90
|
-
| 'AMP'
|
|
91
|
-
| 'ANN'
|
|
92
|
-
| 'APZ'
|
|
93
|
-
| 'AQ'
|
|
94
|
-
| 'AS'
|
|
95
|
-
| 'ASM'
|
|
96
|
-
| 'ASU'
|
|
97
|
-
| 'ATM'
|
|
98
|
-
| 'AWG'
|
|
99
|
-
| 'AY'
|
|
100
|
-
| 'AZ'
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Enum representing unit type codes starting with 'A'.
|
|
104
|
-
*/
|
|
105
|
-
export enum UnitTypeCodeEnum_AX {
|
|
106
|
-
AmpereSquareMetrePerJouleSecond = 'A10',
|
|
107
|
-
Angstrom = 'A11',
|
|
108
|
-
AstronomicalUnit = 'A12',
|
|
109
|
-
Attojoule = 'A13',
|
|
110
|
-
Barn = 'A14',
|
|
111
|
-
BarnPerElectronvolt = 'A15',
|
|
112
|
-
BarnPerSteradianElectronvolt = 'A16',
|
|
113
|
-
BarnPerSteradian = 'A17',
|
|
114
|
-
BecquerelPerKilogram = 'A18',
|
|
115
|
-
BecquerelPerCubicMetre = 'A19',
|
|
116
|
-
AmperePerCentimetre = 'A2',
|
|
117
|
-
BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine = 'A20',
|
|
118
|
-
BritishThermalUnitInternationalTablePerPoundDegreeRankine = 'A21',
|
|
119
|
-
BritishThermalUnitInternationalTablePerSecondFootDegreeRankine = 'A22',
|
|
120
|
-
BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine = 'A23',
|
|
121
|
-
CandelaPerSquareMetre = 'A24',
|
|
122
|
-
CoulombMetre = 'A26',
|
|
123
|
-
CoulombMetreSquaredPerVolt = 'A27',
|
|
124
|
-
CoulombPerCubicCentimetre = 'A28',
|
|
125
|
-
CoulombPerCubicMetre = 'A29',
|
|
126
|
-
AmperePerMillimetre = 'A3',
|
|
127
|
-
CoulombPerCubicMillimetre = 'A30',
|
|
128
|
-
CoulombPerKilogramSecond = 'A31',
|
|
129
|
-
CoulombPerMole = 'A32',
|
|
130
|
-
CoulombPerSquareCentimetre = 'A33',
|
|
131
|
-
CoulombPerSquareMetre = 'A34',
|
|
132
|
-
CoulombPerSquareMillimetre = 'A35',
|
|
133
|
-
CubicCentimetrePerMole = 'A36',
|
|
134
|
-
CubicDecimetrePerMole = 'A37',
|
|
135
|
-
CubicMetrePerCoulomb = 'A38',
|
|
136
|
-
CubicMetrePerKilogram = 'A39',
|
|
137
|
-
AmperePerSquareCentimetre = 'A4',
|
|
138
|
-
CubicMetrePerMole = 'A40',
|
|
139
|
-
AmperePerSquareMetre = 'A41',
|
|
140
|
-
CuriePerKilogram = 'A42',
|
|
141
|
-
DeadweightTonnage = 'A43',
|
|
142
|
-
Decalitre = 'A44',
|
|
143
|
-
Decametre = 'A45',
|
|
144
|
-
Decitex = 'A47',
|
|
145
|
-
DegreeRankine = 'A48',
|
|
146
|
-
Denier = 'A49',
|
|
147
|
-
AmpereSquareMetre = 'A5',
|
|
148
|
-
Electronvolt = 'A53',
|
|
149
|
-
ElectronvoltPerMetre = 'A54',
|
|
150
|
-
ElectronvoltSquareMetre = 'A55',
|
|
151
|
-
ElectronvoltSquareMetrePerKilogram = 'A56',
|
|
152
|
-
_8PartCloudCover = 'A59', // Enum member names cannot start with a number
|
|
153
|
-
AmperePerSquareMetreKelvinSquared = 'A6',
|
|
154
|
-
Exajoule = 'A68',
|
|
155
|
-
FaradPerMetre = 'A69',
|
|
156
|
-
AmperePerSquareMillimetre = 'A7',
|
|
157
|
-
Femtojoule = 'A70',
|
|
158
|
-
Femtometre = 'A71',
|
|
159
|
-
FootPerSecondSquared = 'A73',
|
|
160
|
-
FootPoundForcePerSecond = 'A74',
|
|
161
|
-
FreightTon = 'A75',
|
|
162
|
-
Gal = 'A76',
|
|
163
|
-
AmpereSecond = 'A8',
|
|
164
|
-
GigacoulombPerCubicMetre = 'A84',
|
|
165
|
-
Gigaelectronvolt = 'A85',
|
|
166
|
-
Gigahertz = 'A86',
|
|
167
|
-
Gigaohm = 'A87',
|
|
168
|
-
GigaohmMetre = 'A88',
|
|
169
|
-
Gigapascal = 'A89',
|
|
170
|
-
Rate = 'A9',
|
|
171
|
-
Gigawatt = 'A90',
|
|
172
|
-
Gon = 'A91',
|
|
173
|
-
GramPerCubicMetre = 'A93',
|
|
174
|
-
GramPerMole = 'A94',
|
|
175
|
-
Gray = 'A95',
|
|
176
|
-
GrayPerSecond = 'A96',
|
|
177
|
-
Hectopascal = 'A97',
|
|
178
|
-
HenryPerMetre = 'A98',
|
|
179
|
-
Bit = 'A99',
|
|
180
|
-
Ball = 'AA',
|
|
181
|
-
BulkPack = 'AB',
|
|
182
|
-
Acre = 'ACR',
|
|
183
|
-
Activity = 'ACT',
|
|
184
|
-
Byte = 'AD',
|
|
185
|
-
AmperePerMetre = 'AE',
|
|
186
|
-
AdditionalMinute = 'AH',
|
|
187
|
-
AverageMinutePerCall = 'AI',
|
|
188
|
-
Fathom = 'AK',
|
|
189
|
-
AccessLine = 'AL',
|
|
190
|
-
AmpereHour = 'AMH',
|
|
191
|
-
Ampere = 'AMP',
|
|
192
|
-
Year = 'ANN',
|
|
193
|
-
TroyOunceOrApothecaryOunce = 'APZ',
|
|
194
|
-
AntiHemophilicFactorAHFUnit = 'AQ',
|
|
195
|
-
Assortment = 'AS',
|
|
196
|
-
AlcoholicStrengthByMass = 'ASM',
|
|
197
|
-
AlcoholicStrengthByVolume = 'ASU',
|
|
198
|
-
StandardAtmosphere = 'ATM',
|
|
199
|
-
AmericanWireGauge = 'AWG',
|
|
200
|
-
Assembly = 'AY',
|
|
201
|
-
BritishThermalUnitInternationalTablePerPound = 'AZ',
|
|
202
|
-
}
|
package/src/types/unit/BX.d.ts
DELETED
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Unit type codes starting with 'B'.
|
|
3
|
-
*/
|
|
4
|
-
export type UnitTypeCode_BX =
|
|
5
|
-
| 'B1'
|
|
6
|
-
| 'B10'
|
|
7
|
-
| 'B11'
|
|
8
|
-
| 'B12'
|
|
9
|
-
| 'B13'
|
|
10
|
-
| 'B14'
|
|
11
|
-
| 'B15'
|
|
12
|
-
| 'B16'
|
|
13
|
-
| 'B17'
|
|
14
|
-
| 'B18'
|
|
15
|
-
| 'B19'
|
|
16
|
-
| 'B20'
|
|
17
|
-
| 'B21'
|
|
18
|
-
| 'B22'
|
|
19
|
-
| 'B23'
|
|
20
|
-
| 'B24'
|
|
21
|
-
| 'B25'
|
|
22
|
-
| 'B26'
|
|
23
|
-
| 'B27'
|
|
24
|
-
| 'B28'
|
|
25
|
-
| 'B29'
|
|
26
|
-
| 'B3'
|
|
27
|
-
| 'B30'
|
|
28
|
-
| 'B31'
|
|
29
|
-
| 'B32'
|
|
30
|
-
| 'B33'
|
|
31
|
-
| 'B34'
|
|
32
|
-
| 'B35'
|
|
33
|
-
| 'B4'
|
|
34
|
-
| 'B41'
|
|
35
|
-
| 'B42'
|
|
36
|
-
| 'B43'
|
|
37
|
-
| 'B44'
|
|
38
|
-
| 'B45'
|
|
39
|
-
| 'B46'
|
|
40
|
-
| 'B47'
|
|
41
|
-
| 'B48'
|
|
42
|
-
| 'B49'
|
|
43
|
-
| 'B50'
|
|
44
|
-
| 'B52'
|
|
45
|
-
| 'B53'
|
|
46
|
-
| 'B54'
|
|
47
|
-
| 'B55'
|
|
48
|
-
| 'B56'
|
|
49
|
-
| 'B57'
|
|
50
|
-
| 'B58'
|
|
51
|
-
| 'B59'
|
|
52
|
-
| 'B60'
|
|
53
|
-
| 'B61'
|
|
54
|
-
| 'B62'
|
|
55
|
-
| 'B63'
|
|
56
|
-
| 'B64'
|
|
57
|
-
| 'B66'
|
|
58
|
-
| 'B67'
|
|
59
|
-
| 'B68'
|
|
60
|
-
| 'B69'
|
|
61
|
-
| 'B7'
|
|
62
|
-
| 'B70'
|
|
63
|
-
| 'B71'
|
|
64
|
-
| 'B72'
|
|
65
|
-
| 'B73'
|
|
66
|
-
| 'B74'
|
|
67
|
-
| 'B75'
|
|
68
|
-
| 'B76'
|
|
69
|
-
| 'B77'
|
|
70
|
-
| 'B78'
|
|
71
|
-
| 'B79'
|
|
72
|
-
| 'B8'
|
|
73
|
-
| 'B80'
|
|
74
|
-
| 'B81'
|
|
75
|
-
| 'B82'
|
|
76
|
-
| 'B83'
|
|
77
|
-
| 'B84'
|
|
78
|
-
| 'B85'
|
|
79
|
-
| 'B86'
|
|
80
|
-
| 'B87'
|
|
81
|
-
| 'B88'
|
|
82
|
-
| 'B89'
|
|
83
|
-
| 'B90'
|
|
84
|
-
| 'B91'
|
|
85
|
-
| 'B92'
|
|
86
|
-
| 'B93'
|
|
87
|
-
| 'B94'
|
|
88
|
-
| 'B95'
|
|
89
|
-
| 'B96'
|
|
90
|
-
| 'B97'
|
|
91
|
-
| 'B98'
|
|
92
|
-
| 'B99'
|
|
93
|
-
| 'BAR'
|
|
94
|
-
| 'BB'
|
|
95
|
-
| 'BFT'
|
|
96
|
-
| 'BHP'
|
|
97
|
-
| 'BIL'
|
|
98
|
-
| 'BLD'
|
|
99
|
-
| 'BLL'
|
|
100
|
-
| 'BP'
|
|
101
|
-
| 'BPM'
|
|
102
|
-
| 'BQL'
|
|
103
|
-
| 'BTU'
|
|
104
|
-
| 'BUA'
|
|
105
|
-
| 'BUI'
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Enum representing unit type codes starting with 'B'.
|
|
109
|
-
*/
|
|
110
|
-
export enum UnitTypeCodeEnum_BX {
|
|
111
|
-
BarrelUSPerDay = 'B1',
|
|
112
|
-
BitPerSecond = 'B10',
|
|
113
|
-
JoulePerKilogramKelvin = 'B11',
|
|
114
|
-
JoulePerMetre = 'B12',
|
|
115
|
-
JoulePerSquareMetre = 'B13',
|
|
116
|
-
JoulePerMetreToTheFourthPower = 'B14',
|
|
117
|
-
JoulePerMole = 'B15',
|
|
118
|
-
JoulePerMoleKelvin = 'B16',
|
|
119
|
-
Credit = 'B17',
|
|
120
|
-
JouleSecond = 'B18',
|
|
121
|
-
Digit = 'B19',
|
|
122
|
-
JouleSquareMetrePerKilogram = 'B20',
|
|
123
|
-
KelvinPerWatt = 'B21',
|
|
124
|
-
Kiloampere = 'B22',
|
|
125
|
-
KiloamperePerSquareMetre = 'B23',
|
|
126
|
-
KiloamperePerMetre = 'B24',
|
|
127
|
-
KilobecquerelPerKilogram = 'B25',
|
|
128
|
-
Kilocoulomb = 'B26',
|
|
129
|
-
KilocoulombPerCubicMetre = 'B27',
|
|
130
|
-
KilocoulombPerSquareMetre = 'B28',
|
|
131
|
-
Kiloelectronvolt = 'B29',
|
|
132
|
-
BattingPound = 'B3',
|
|
133
|
-
Gibibit = 'B30',
|
|
134
|
-
KilogramMetrePerSecond = 'B31',
|
|
135
|
-
KilogramMetreSquared = 'B32',
|
|
136
|
-
KilogramMetreSquaredPerSecond = 'B33',
|
|
137
|
-
KilogramPerCubicDecimetre = 'B34',
|
|
138
|
-
KilogramPerLitre = 'B35',
|
|
139
|
-
BarrelImperial = 'B4',
|
|
140
|
-
KilojoulePerKelvin = 'B41',
|
|
141
|
-
KilojoulePerKilogram = 'B42',
|
|
142
|
-
KilojoulePerKilogramKelvin = 'B43',
|
|
143
|
-
KilojoulePerMole = 'B44',
|
|
144
|
-
Kilomole = 'B45',
|
|
145
|
-
KilomolePerCubicMetre = 'B46',
|
|
146
|
-
Kilonewton = 'B47',
|
|
147
|
-
KilonewtonMetre = 'B48',
|
|
148
|
-
Kiloohm = 'B49',
|
|
149
|
-
KiloohmMetre = 'B50',
|
|
150
|
-
Kilosecond = 'B52',
|
|
151
|
-
Kilosiemens = 'B53',
|
|
152
|
-
KilosiemensPerMetre = 'B54',
|
|
153
|
-
KilovoltPerMetre = 'B55',
|
|
154
|
-
KiloweberPerMetre = 'B56',
|
|
155
|
-
LightYear = 'B57',
|
|
156
|
-
LitrePerMole = 'B58',
|
|
157
|
-
LumenHour = 'B59',
|
|
158
|
-
LumenPerSquareMetre = 'B60',
|
|
159
|
-
LumenPerWatt = 'B61',
|
|
160
|
-
LumenSecond = 'B62',
|
|
161
|
-
LuxHour = 'B63',
|
|
162
|
-
LuxSecond = 'B64',
|
|
163
|
-
MegaamperePerSquareMetre = 'B66',
|
|
164
|
-
MegabecquerelPerKilogram = 'B67',
|
|
165
|
-
Gigabit = 'B68',
|
|
166
|
-
MegacoulombPerCubicMetre = 'B69',
|
|
167
|
-
Cycle = 'B7',
|
|
168
|
-
MegacoulombPerSquareMetre = 'B70',
|
|
169
|
-
Megaelectronvolt = 'B71',
|
|
170
|
-
MegagramPerCubicMetre = 'B72',
|
|
171
|
-
Meganewton = 'B73',
|
|
172
|
-
MeganewtonMetre = 'B74',
|
|
173
|
-
Megaohm = 'B75',
|
|
174
|
-
MegaohmMetre = 'B76',
|
|
175
|
-
MegasiemensPerMetre = 'B77',
|
|
176
|
-
Megavolt = 'B78',
|
|
177
|
-
MegavoltPerMetre = 'B79',
|
|
178
|
-
JoulePerCubicMetre = 'B8',
|
|
179
|
-
GigabitPerSecond = 'B80',
|
|
180
|
-
ReciprocalMetreSquaredReciprocalSecond = 'B81',
|
|
181
|
-
InchPerLinearFoot = 'B82',
|
|
182
|
-
MetreToTheFourthPower = 'B83',
|
|
183
|
-
Microampere = 'B84',
|
|
184
|
-
Microbar = 'B85',
|
|
185
|
-
Microcoulomb = 'B86',
|
|
186
|
-
MicrocoulombPerCubicMetre = 'B87',
|
|
187
|
-
MicrocoulombPerSquareMetre = 'B88',
|
|
188
|
-
MicrofaradPerMetre = 'B89',
|
|
189
|
-
Microhenry = 'B90',
|
|
190
|
-
MicrohenryPerMetre = 'B91',
|
|
191
|
-
Micronewton = 'B92',
|
|
192
|
-
MicronewtonMetre = 'B93',
|
|
193
|
-
Microohm = 'B94',
|
|
194
|
-
MicroohmMetre = 'B95',
|
|
195
|
-
Micropascal = 'B96',
|
|
196
|
-
Microradian = 'B97',
|
|
197
|
-
Microsecond = 'B98',
|
|
198
|
-
Microsiemens = 'B99',
|
|
199
|
-
Bar = 'BAR',
|
|
200
|
-
BaseBox = 'BB',
|
|
201
|
-
BoardFoot = 'BFT',
|
|
202
|
-
BrakeHorsePower = 'BHP',
|
|
203
|
-
BillionEUR = 'BIL',
|
|
204
|
-
DryBarrelUS = 'BLD',
|
|
205
|
-
BarrelUS = 'BLL',
|
|
206
|
-
HundredBoardFoot = 'BP',
|
|
207
|
-
BeatsPerMinute = 'BPM',
|
|
208
|
-
Becquerel = 'BQL',
|
|
209
|
-
BritishThermalUnit = 'BTU',
|
|
210
|
-
BushelUS = 'BUA',
|
|
211
|
-
BushelUK = 'BUI',
|
|
212
|
-
}
|
package/src/types/unit/CX.d.ts
DELETED
|
@@ -1,238 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Unit type codes starting with 'C'.
|
|
3
|
-
*/
|
|
4
|
-
export type UnitTypeCode_CX =
|
|
5
|
-
| 'C0'
|
|
6
|
-
| 'C10'
|
|
7
|
-
| 'C11'
|
|
8
|
-
| 'C12'
|
|
9
|
-
| 'C13'
|
|
10
|
-
| 'C14'
|
|
11
|
-
| 'C15'
|
|
12
|
-
| 'C16'
|
|
13
|
-
| 'C17'
|
|
14
|
-
| 'C18'
|
|
15
|
-
| 'C19'
|
|
16
|
-
| 'C20'
|
|
17
|
-
| 'C21'
|
|
18
|
-
| 'C22'
|
|
19
|
-
| 'C23'
|
|
20
|
-
| 'C24'
|
|
21
|
-
| 'C25'
|
|
22
|
-
| 'C26'
|
|
23
|
-
| 'C27'
|
|
24
|
-
| 'C28'
|
|
25
|
-
| 'C29'
|
|
26
|
-
| 'C3'
|
|
27
|
-
| 'C30'
|
|
28
|
-
| 'C31'
|
|
29
|
-
| 'C32'
|
|
30
|
-
| 'C33'
|
|
31
|
-
| 'C34'
|
|
32
|
-
| 'C35'
|
|
33
|
-
| 'C36'
|
|
34
|
-
| 'C37'
|
|
35
|
-
| 'C38'
|
|
36
|
-
| 'C39'
|
|
37
|
-
| 'C40'
|
|
38
|
-
| 'C41'
|
|
39
|
-
| 'C42'
|
|
40
|
-
| 'C43'
|
|
41
|
-
| 'C44'
|
|
42
|
-
| 'C45'
|
|
43
|
-
| 'C46'
|
|
44
|
-
| 'C47'
|
|
45
|
-
| 'C48'
|
|
46
|
-
| 'C49'
|
|
47
|
-
| 'C50'
|
|
48
|
-
| 'C51'
|
|
49
|
-
| 'C52'
|
|
50
|
-
| 'C53'
|
|
51
|
-
| 'C54'
|
|
52
|
-
| 'C55'
|
|
53
|
-
| 'C56'
|
|
54
|
-
| 'C57'
|
|
55
|
-
| 'C58'
|
|
56
|
-
| 'C59'
|
|
57
|
-
| 'C60'
|
|
58
|
-
| 'C61'
|
|
59
|
-
| 'C62'
|
|
60
|
-
| 'C63'
|
|
61
|
-
| 'C64'
|
|
62
|
-
| 'C65'
|
|
63
|
-
| 'C66'
|
|
64
|
-
| 'C67'
|
|
65
|
-
| 'C68'
|
|
66
|
-
| 'C69'
|
|
67
|
-
| 'C7'
|
|
68
|
-
| 'C70'
|
|
69
|
-
| 'C71'
|
|
70
|
-
| 'C72'
|
|
71
|
-
| 'C73'
|
|
72
|
-
| 'C74'
|
|
73
|
-
| 'C75'
|
|
74
|
-
| 'C76'
|
|
75
|
-
| 'C78'
|
|
76
|
-
| 'C79'
|
|
77
|
-
| 'C8'
|
|
78
|
-
| 'C80'
|
|
79
|
-
| 'C81'
|
|
80
|
-
| 'C82'
|
|
81
|
-
| 'C83'
|
|
82
|
-
| 'C84'
|
|
83
|
-
| 'C85'
|
|
84
|
-
| 'C86'
|
|
85
|
-
| 'C87'
|
|
86
|
-
| 'C88'
|
|
87
|
-
| 'C89'
|
|
88
|
-
| 'C9'
|
|
89
|
-
| 'C90'
|
|
90
|
-
| 'C91'
|
|
91
|
-
| 'C92'
|
|
92
|
-
| 'C93'
|
|
93
|
-
| 'C94'
|
|
94
|
-
| 'C95'
|
|
95
|
-
| 'C96'
|
|
96
|
-
| 'C97'
|
|
97
|
-
| 'C99'
|
|
98
|
-
| 'CCT'
|
|
99
|
-
| 'CDL'
|
|
100
|
-
| 'CEL'
|
|
101
|
-
| 'CEN'
|
|
102
|
-
| 'CG'
|
|
103
|
-
| 'CGM'
|
|
104
|
-
| 'CKG'
|
|
105
|
-
| 'CLF'
|
|
106
|
-
| 'CLT'
|
|
107
|
-
| 'CMK'
|
|
108
|
-
| 'CMQ'
|
|
109
|
-
| 'CMT'
|
|
110
|
-
| 'CNP'
|
|
111
|
-
| 'CNT'
|
|
112
|
-
| 'COU'
|
|
113
|
-
| 'CTG'
|
|
114
|
-
| 'CTM'
|
|
115
|
-
| 'CTN'
|
|
116
|
-
| 'CUR'
|
|
117
|
-
| 'CWA'
|
|
118
|
-
| 'CWI'
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Enum representing unit type codes starting with 'C'.
|
|
122
|
-
*/
|
|
123
|
-
export enum UnitTypeCodeEnum_CX {
|
|
124
|
-
Call = 'C0',
|
|
125
|
-
Millifarad = 'C10',
|
|
126
|
-
Milligal = 'C11',
|
|
127
|
-
MilligramPerMetre = 'C12',
|
|
128
|
-
Milligray = 'C13',
|
|
129
|
-
Millihenry = 'C14',
|
|
130
|
-
Millijoule = 'C15',
|
|
131
|
-
MillimetrePerSecond = 'C16',
|
|
132
|
-
MillimetreSquaredPerSecond = 'C17',
|
|
133
|
-
Millimole = 'C18',
|
|
134
|
-
MolePerKilogram = 'C19',
|
|
135
|
-
Millinewton = 'C20',
|
|
136
|
-
Kibibit = 'C21',
|
|
137
|
-
MillinewtonPerMetre = 'C22',
|
|
138
|
-
MilliohmMetre = 'C23',
|
|
139
|
-
MillipascalSecond = 'C24',
|
|
140
|
-
Milliradian = 'C25',
|
|
141
|
-
Millisecond = 'C26',
|
|
142
|
-
Millisiemens = 'C27',
|
|
143
|
-
Millisievert = 'C28',
|
|
144
|
-
Millitesla = 'C29',
|
|
145
|
-
MicrovoltPerMetre = 'C3',
|
|
146
|
-
MillivoltPerMetre = 'C30',
|
|
147
|
-
Milliwatt = 'C31',
|
|
148
|
-
MilliwattPerSquareMetre = 'C32',
|
|
149
|
-
Milliweber = 'C33',
|
|
150
|
-
Mole = 'C34',
|
|
151
|
-
MolePerCubicDecimetre = 'C35',
|
|
152
|
-
MolePerCubicMetre = 'C36',
|
|
153
|
-
Kilobit = 'C37',
|
|
154
|
-
MolePerLitre = 'C38',
|
|
155
|
-
Nanoampere = 'C39',
|
|
156
|
-
Nanocoulomb = 'C40',
|
|
157
|
-
Nanofarad = 'C41',
|
|
158
|
-
NanofaradPerMetre = 'C42',
|
|
159
|
-
Nanohenry = 'C43',
|
|
160
|
-
NanohenryPerMetre = 'C44',
|
|
161
|
-
Nanometre = 'C45',
|
|
162
|
-
NanoohmMetre = 'C46',
|
|
163
|
-
Nanosecond = 'C47',
|
|
164
|
-
Nanotesla = 'C48',
|
|
165
|
-
Nanowatt = 'C49',
|
|
166
|
-
Neper = 'C50',
|
|
167
|
-
NeperPerSecond = 'C51',
|
|
168
|
-
Picometre = 'C52',
|
|
169
|
-
NewtonMetreSecond = 'C53',
|
|
170
|
-
NewtonMetreSquaredPerKilogramSquared = 'C54',
|
|
171
|
-
NewtonPerSquareMetre = 'C55',
|
|
172
|
-
NewtonPerSquareMillimetre = 'C56',
|
|
173
|
-
NewtonSecond = 'C57',
|
|
174
|
-
NewtonSecondPerMetre = 'C58',
|
|
175
|
-
Octave = 'C59',
|
|
176
|
-
OhmCentimetre = 'C60',
|
|
177
|
-
OhmMetre = 'C61',
|
|
178
|
-
One = 'C62',
|
|
179
|
-
Parsec = 'C63',
|
|
180
|
-
PascalPerKelvin = 'C64',
|
|
181
|
-
PascalSecond = 'C65',
|
|
182
|
-
PascalSecondPerCubicMetre = 'C66',
|
|
183
|
-
PascalSecondPerMetre = 'C67',
|
|
184
|
-
Petajoule = 'C68',
|
|
185
|
-
Phon = 'C69',
|
|
186
|
-
Centipoise = 'C7',
|
|
187
|
-
Picoampere = 'C70',
|
|
188
|
-
Picocoulomb = 'C71',
|
|
189
|
-
PicofaradPerMetre = 'C72',
|
|
190
|
-
Picohenry = 'C73',
|
|
191
|
-
KilobitPerSecond = 'C74',
|
|
192
|
-
Picowatt = 'C75',
|
|
193
|
-
PicowattPerSquareMetre = 'C76',
|
|
194
|
-
PoundForce = 'C78',
|
|
195
|
-
KilovoltAmpereHour = 'C79',
|
|
196
|
-
MillicoulombPerKilogram = 'C8',
|
|
197
|
-
Rad = 'C80',
|
|
198
|
-
Radian = 'C81',
|
|
199
|
-
RadianSquareMetrePerMole = 'C82',
|
|
200
|
-
RadianSquareMetrePerKilogram = 'C83',
|
|
201
|
-
RadianPerMetre = 'C84',
|
|
202
|
-
ReciprocalAngstrom = 'C85',
|
|
203
|
-
ReciprocalCubicMetre = 'C86',
|
|
204
|
-
ReciprocalCubicMetrePerSecond = 'C87',
|
|
205
|
-
ReciprocalElectronVoltPerCubicMetre = 'C88',
|
|
206
|
-
ReciprocalHenry = 'C89',
|
|
207
|
-
CoilGroup = 'C9',
|
|
208
|
-
ReciprocalJoulePerCubicMetre = 'C90',
|
|
209
|
-
ReciprocalKelvin = 'C91',
|
|
210
|
-
ReciprocalMetre = 'C92',
|
|
211
|
-
ReciprocalSquareMetre = 'C93',
|
|
212
|
-
ReciprocalMinute = 'C94',
|
|
213
|
-
ReciprocalMole = 'C95',
|
|
214
|
-
ReciprocalPascal = 'C96',
|
|
215
|
-
ReciprocalSecond = 'C97',
|
|
216
|
-
ReciprocalSecondPerMetreSquared = 'C99',
|
|
217
|
-
CarryingCapacityInMetricTon = 'CCT',
|
|
218
|
-
Candela = 'CDL',
|
|
219
|
-
DegreeCelsius = 'CEL',
|
|
220
|
-
Hundred = 'CEN',
|
|
221
|
-
Card = 'CG',
|
|
222
|
-
Centigram = 'CGM',
|
|
223
|
-
CoulombPerKilogram = 'CKG',
|
|
224
|
-
HundredLeave = 'CLF',
|
|
225
|
-
Centilitre = 'CLT',
|
|
226
|
-
SquareCentimetre = 'CMK',
|
|
227
|
-
CubicCentimetre = 'CMQ',
|
|
228
|
-
Centimetre = 'CMT',
|
|
229
|
-
HundredPack = 'CNP',
|
|
230
|
-
CentalUK = 'CNT',
|
|
231
|
-
Coulomb = 'COU',
|
|
232
|
-
ContentGram = 'CTG',
|
|
233
|
-
MetricCarat = 'CTM',
|
|
234
|
-
ContentTonMetric = 'CTN',
|
|
235
|
-
Curie = 'CUR',
|
|
236
|
-
HundredPoundCwt = 'CWA',
|
|
237
|
-
HundredWeightUK = 'CWI',
|
|
238
|
-
}
|