@przeslijmi/real-fake-data-playwright 1.7.0 → 1.10.0
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/README.md +59 -4
- package/dist/fake-data.d.ts +105 -1
- package/dist/fake-data.d.ts.map +1 -1
- package/dist/fake-data.js +104 -0
- package/dist/fake-data.js.map +1 -1
- package/dist/types.d.ts +494 -3
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -2
package/dist/types.d.ts
CHANGED
|
@@ -15,8 +15,8 @@ export type CountryCode = 'at' | 'be' | 'bg' | 'cy' | 'cz' | 'de' | 'dk' | 'ee'
|
|
|
15
15
|
export type PolishLegalForm = 'Sp. z o.o.' | 'Sp. z o.o. sp.k.' | 'P.S.A.' | 'S.A.' | 'Sp. j.' | 'Sp. k.' | 'S.C.';
|
|
16
16
|
/** Naming family the company-name generator drew from. */
|
|
17
17
|
export type CompanyNameStrategy = 'morpheme' | 'surname' | 'descriptive' | 'modern';
|
|
18
|
-
/** Kind of vehicle registration plate produced. */
|
|
19
|
-
export type VehicleRegistrationType = 'standard' | 'custom' | 'police' | 'military' | 'historic';
|
|
18
|
+
/** Kind of Polish vehicle registration plate produced. */
|
|
19
|
+
export type VehicleRegistrationType = 'standard' | 'custom' | 'police' | 'military' | 'historic' | 'motorcycle' | 'short';
|
|
20
20
|
/** Local-part shape the email generator can produce. */
|
|
21
21
|
export type EmailLocalPattern = 'first.last' | 'firstlast' | 'first_last' | 'first.last.number' | 'flast' | 'initial.last' | 'noun.number' | 'first.company' | 'company.first';
|
|
22
22
|
/** Domain category the email generator can draw from. */
|
|
@@ -56,11 +56,26 @@ export interface NipOptions extends RequestOptions {
|
|
|
56
56
|
export interface IbanOptions extends RequestOptions {
|
|
57
57
|
readonly format?: 'grouped' | 'compact';
|
|
58
58
|
readonly invalid?: boolean;
|
|
59
|
-
/**
|
|
59
|
+
/** Restrict output to valid edge-case IBANs from the rare corners of the format. */
|
|
60
|
+
readonly edge?: boolean;
|
|
61
|
+
/** Return a correct value wrapped in a hostile encoding (whitespace, invisible chars, BOM, bidi). */
|
|
62
|
+
readonly extreme?: boolean;
|
|
63
|
+
/** Pin the issuing bank by its country-specific code. Mutually exclusive with `bankName`. */
|
|
60
64
|
readonly bankCode?: string;
|
|
61
65
|
/** Pin the issuing bank by a case-insensitive name fragment. Mutually exclusive with `bankCode`. */
|
|
62
66
|
readonly bankName?: string;
|
|
63
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* The result shape of every country's IBAN generator. The output contract is
|
|
70
|
+
* uniform across the fleet (the electronic-format length and bank-code width
|
|
71
|
+
* differ per country, but the fields do not), so one type serves all 27.
|
|
72
|
+
*/
|
|
73
|
+
export interface IbanData {
|
|
74
|
+
readonly value: string;
|
|
75
|
+
readonly electronicFormat: string;
|
|
76
|
+
readonly bankCode: string;
|
|
77
|
+
readonly bankName: string;
|
|
78
|
+
}
|
|
64
79
|
export interface RegonOptions extends RequestOptions {
|
|
65
80
|
readonly variant?: 'short' | 'long' | 'any';
|
|
66
81
|
readonly invalid?: boolean;
|
|
@@ -71,6 +86,8 @@ export interface CompanyNameOptions extends RequestOptions {
|
|
|
71
86
|
readonly activityPrefix?: boolean;
|
|
72
87
|
/** Restrict output to edge-case names (punctuation-heavy families, long/rare forms). */
|
|
73
88
|
readonly edge?: boolean;
|
|
89
|
+
/** Present the company name in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); legal form and identifiers stay clean. */
|
|
90
|
+
readonly extreme?: boolean;
|
|
74
91
|
}
|
|
75
92
|
export interface CompanyOptions extends RequestOptions {
|
|
76
93
|
readonly strategy?: CompanyNameStrategy | 'any';
|
|
@@ -80,12 +97,340 @@ export interface CompanyOptions extends RequestOptions {
|
|
|
80
97
|
readonly invalid?: boolean;
|
|
81
98
|
/** Restrict output to edge-case values from the rare corners. */
|
|
82
99
|
readonly edge?: boolean;
|
|
100
|
+
/** Present the company name in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); legal form and identifiers stay clean. */
|
|
101
|
+
readonly extreme?: boolean;
|
|
83
102
|
}
|
|
84
103
|
export interface VehicleRegistrationOptions extends RequestOptions {
|
|
85
104
|
readonly type?: VehicleRegistrationType;
|
|
86
105
|
readonly voivodeship?: string;
|
|
87
106
|
readonly county?: string;
|
|
88
107
|
readonly format?: 'with-space' | 'compact';
|
|
108
|
+
/** Restrict output to edge-case plates from the rare corners of the format. */
|
|
109
|
+
readonly edge?: boolean;
|
|
110
|
+
/** Return a correct plate wrapped in a hostile-but-recoverable encoding. */
|
|
111
|
+
readonly extreme?: boolean;
|
|
112
|
+
}
|
|
113
|
+
export interface AtVehicleRegistrationOptions extends RequestOptions {
|
|
114
|
+
readonly type?: 'standard' | 'custom' | 'motorcycle' | 'military' | 'police' | 'diplomatic';
|
|
115
|
+
readonly district?: string;
|
|
116
|
+
readonly state?: string;
|
|
117
|
+
readonly format?: 'with-space' | 'compact';
|
|
118
|
+
readonly edge?: boolean;
|
|
119
|
+
readonly extreme?: boolean;
|
|
120
|
+
}
|
|
121
|
+
export interface AtVehicleRegistrationData {
|
|
122
|
+
readonly value: string;
|
|
123
|
+
readonly type: 'standard' | 'custom' | 'motorcycle' | 'military' | 'police' | 'diplomatic';
|
|
124
|
+
readonly district?: string;
|
|
125
|
+
readonly state?: string;
|
|
126
|
+
}
|
|
127
|
+
export interface BeVehicleRegistrationOptions extends RequestOptions {
|
|
128
|
+
readonly type?: 'standard' | 'custom' | 'motorcycle' | 'moped' | 'diplomatic' | 'dealer' | 'export' | 'oldtimer' | 'taxi' | 'trailer';
|
|
129
|
+
readonly format?: 'hyphen' | 'with-space' | 'compact';
|
|
130
|
+
readonly edge?: boolean;
|
|
131
|
+
readonly extreme?: boolean;
|
|
132
|
+
}
|
|
133
|
+
export interface BeVehicleRegistrationData {
|
|
134
|
+
readonly value: string;
|
|
135
|
+
readonly type: 'standard' | 'custom' | 'motorcycle' | 'moped' | 'diplomatic' | 'dealer' | 'export' | 'oldtimer' | 'taxi' | 'trailer';
|
|
136
|
+
}
|
|
137
|
+
export interface BgVehicleRegistrationOptions extends RequestOptions {
|
|
138
|
+
readonly type?: 'standard' | 'custom' | 'motorcycle' | 'military' | 'diplomatic' | 'electric' | 'temporary';
|
|
139
|
+
readonly script?: 'latin' | 'native';
|
|
140
|
+
readonly province?: string;
|
|
141
|
+
readonly format?: 'with-space' | 'compact';
|
|
142
|
+
readonly edge?: boolean;
|
|
143
|
+
readonly extreme?: boolean;
|
|
144
|
+
}
|
|
145
|
+
export interface BgVehicleRegistrationData {
|
|
146
|
+
readonly value: string;
|
|
147
|
+
readonly type: 'standard' | 'custom' | 'motorcycle' | 'military' | 'diplomatic' | 'electric' | 'temporary';
|
|
148
|
+
readonly province?: string;
|
|
149
|
+
readonly provinceCode?: string;
|
|
150
|
+
}
|
|
151
|
+
export interface CyVehicleRegistrationOptions extends RequestOptions {
|
|
152
|
+
readonly type?: 'standard' | 'motorcycle' | 'diplomatic' | 'trailer' | 'un' | 'sba';
|
|
153
|
+
readonly format?: 'with-space' | 'compact';
|
|
154
|
+
readonly edge?: boolean;
|
|
155
|
+
readonly extreme?: boolean;
|
|
156
|
+
}
|
|
157
|
+
export interface CyVehicleRegistrationData {
|
|
158
|
+
readonly value: string;
|
|
159
|
+
readonly type: 'standard' | 'motorcycle' | 'diplomatic' | 'trailer' | 'un' | 'sba';
|
|
160
|
+
}
|
|
161
|
+
export interface CzVehicleRegistrationOptions extends RequestOptions {
|
|
162
|
+
readonly type?: 'standard' | 'extended' | 'custom' | 'motorcycle' | 'diplomatic' | 'historic' | 'electric' | 'military';
|
|
163
|
+
readonly region?: string;
|
|
164
|
+
readonly format?: 'with-space' | 'compact';
|
|
165
|
+
readonly edge?: boolean;
|
|
166
|
+
readonly extreme?: boolean;
|
|
167
|
+
}
|
|
168
|
+
export interface CzVehicleRegistrationData {
|
|
169
|
+
readonly value: string;
|
|
170
|
+
readonly type: 'standard' | 'extended' | 'custom' | 'motorcycle' | 'diplomatic' | 'historic' | 'electric' | 'military';
|
|
171
|
+
readonly region?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface DeVehicleRegistrationOptions extends RequestOptions {
|
|
174
|
+
readonly type?: 'standard' | 'custom' | 'seasonal' | 'historic' | 'electric' | 'motorcycle' | 'military' | 'diplomatic';
|
|
175
|
+
readonly district?: string;
|
|
176
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
177
|
+
readonly format?: 'with-space' | 'compact';
|
|
178
|
+
readonly edge?: boolean;
|
|
179
|
+
readonly extreme?: boolean;
|
|
180
|
+
}
|
|
181
|
+
export interface DeVehicleRegistrationData {
|
|
182
|
+
readonly value: string;
|
|
183
|
+
readonly type: 'standard' | 'custom' | 'seasonal' | 'historic' | 'electric' | 'motorcycle' | 'military' | 'diplomatic';
|
|
184
|
+
readonly district?: string;
|
|
185
|
+
readonly state?: string;
|
|
186
|
+
readonly city?: string;
|
|
187
|
+
}
|
|
188
|
+
export interface DkVehicleRegistrationOptions extends RequestOptions {
|
|
189
|
+
readonly type?: 'standard' | 'custom' | 'diplomatic' | 'trailer' | 'motorcycle' | 'export';
|
|
190
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
191
|
+
readonly format?: 'with-space' | 'compact';
|
|
192
|
+
readonly edge?: boolean;
|
|
193
|
+
readonly extreme?: boolean;
|
|
194
|
+
}
|
|
195
|
+
export interface DkVehicleRegistrationData {
|
|
196
|
+
readonly value: string;
|
|
197
|
+
readonly type: 'standard' | 'custom' | 'diplomatic' | 'trailer' | 'motorcycle' | 'export';
|
|
198
|
+
}
|
|
199
|
+
export interface EeVehicleRegistrationOptions extends RequestOptions {
|
|
200
|
+
readonly type?: 'standard' | 'custom' | 'diplomatic' | 'dealer' | 'racing' | 'classic' | 'motorcycle' | 'moped' | 'transit' | 'military';
|
|
201
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
202
|
+
readonly format?: 'with-space' | 'compact';
|
|
203
|
+
readonly edge?: boolean;
|
|
204
|
+
readonly extreme?: boolean;
|
|
205
|
+
}
|
|
206
|
+
export interface EeVehicleRegistrationData {
|
|
207
|
+
readonly value: string;
|
|
208
|
+
readonly type: 'standard' | 'custom' | 'diplomatic' | 'dealer' | 'racing' | 'classic' | 'motorcycle' | 'moped' | 'transit' | 'military';
|
|
209
|
+
}
|
|
210
|
+
export interface EsVehicleRegistrationOptions extends RequestOptions {
|
|
211
|
+
readonly type?: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'guardia-civil' | 'national-police' | 'temporary' | 'dealer' | 'historic' | 'trailer';
|
|
212
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
213
|
+
readonly province?: string;
|
|
214
|
+
readonly format?: 'with-space' | 'compact';
|
|
215
|
+
readonly edge?: boolean;
|
|
216
|
+
readonly extreme?: boolean;
|
|
217
|
+
}
|
|
218
|
+
export interface EsVehicleRegistrationData {
|
|
219
|
+
readonly value: string;
|
|
220
|
+
readonly type: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'guardia-civil' | 'national-police' | 'temporary' | 'dealer' | 'historic' | 'trailer';
|
|
221
|
+
readonly era: 'current' | 'legacy';
|
|
222
|
+
readonly province?: string;
|
|
223
|
+
}
|
|
224
|
+
export interface FiVehicleRegistrationOptions extends RequestOptions {
|
|
225
|
+
readonly type?: 'standard' | 'custom' | 'diplomatic' | 'export' | 'dealer' | 'museum' | 'trailer' | 'military' | 'motorcycle' | 'aland';
|
|
226
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
227
|
+
readonly format?: 'hyphen' | 'with-space' | 'compact';
|
|
228
|
+
readonly edge?: boolean;
|
|
229
|
+
readonly extreme?: boolean;
|
|
230
|
+
}
|
|
231
|
+
export interface FiVehicleRegistrationData {
|
|
232
|
+
readonly value: string;
|
|
233
|
+
readonly type: 'standard' | 'custom' | 'diplomatic' | 'export' | 'dealer' | 'museum' | 'trailer' | 'military' | 'motorcycle' | 'aland';
|
|
234
|
+
readonly era?: 'current' | 'legacy';
|
|
235
|
+
}
|
|
236
|
+
export interface FrVehicleRegistrationOptions extends RequestOptions {
|
|
237
|
+
readonly type?: 'standard' | 'diplomatic' | 'temporary' | 'export' | 'motorcycle';
|
|
238
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
239
|
+
readonly withDepartment?: boolean;
|
|
240
|
+
readonly department?: string;
|
|
241
|
+
readonly format?: 'hyphen' | 'with-space' | 'compact';
|
|
242
|
+
readonly edge?: boolean;
|
|
243
|
+
readonly extreme?: boolean;
|
|
244
|
+
}
|
|
245
|
+
export interface FrVehicleRegistrationData {
|
|
246
|
+
readonly value: string;
|
|
247
|
+
readonly type: 'standard' | 'diplomatic' | 'temporary' | 'export' | 'motorcycle';
|
|
248
|
+
readonly era: 'current' | 'legacy';
|
|
249
|
+
readonly department?: string;
|
|
250
|
+
}
|
|
251
|
+
export interface GrVehicleRegistrationOptions extends RequestOptions {
|
|
252
|
+
readonly type?: 'standard' | 'motorcycle' | 'taxi' | 'diplomatic' | 'historic' | 'trailer';
|
|
253
|
+
readonly script?: 'latin' | 'native';
|
|
254
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
255
|
+
readonly region?: string;
|
|
256
|
+
readonly format?: 'hyphen' | 'with-space' | 'compact';
|
|
257
|
+
readonly edge?: boolean;
|
|
258
|
+
readonly extreme?: boolean;
|
|
259
|
+
}
|
|
260
|
+
export interface GrVehicleRegistrationData {
|
|
261
|
+
readonly value: string;
|
|
262
|
+
readonly type: 'standard' | 'motorcycle' | 'taxi' | 'diplomatic' | 'historic' | 'trailer';
|
|
263
|
+
readonly region?: string;
|
|
264
|
+
readonly regionCode?: string;
|
|
265
|
+
}
|
|
266
|
+
export interface HrVehicleRegistrationOptions extends RequestOptions {
|
|
267
|
+
readonly type?: 'standard' | 'custom' | 'military' | 'diplomatic' | 'export' | 'historic' | 'motorcycle';
|
|
268
|
+
readonly city?: string;
|
|
269
|
+
readonly format?: 'with-space' | 'compact';
|
|
270
|
+
readonly edge?: boolean;
|
|
271
|
+
readonly extreme?: boolean;
|
|
272
|
+
}
|
|
273
|
+
export interface HrVehicleRegistrationData {
|
|
274
|
+
readonly value: string;
|
|
275
|
+
readonly type: 'standard' | 'custom' | 'military' | 'diplomatic' | 'export' | 'historic' | 'motorcycle';
|
|
276
|
+
readonly city?: string;
|
|
277
|
+
}
|
|
278
|
+
export interface HuVehicleRegistrationOptions extends RequestOptions {
|
|
279
|
+
readonly type?: 'standard' | 'custom' | 'military' | 'diplomatic' | 'police' | 'oldtimer' | 'taxi' | 'electric' | 'motorcycle' | 'temporary';
|
|
280
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
281
|
+
readonly format?: 'hyphen' | 'compact' | 'with-space';
|
|
282
|
+
readonly edge?: boolean;
|
|
283
|
+
readonly extreme?: boolean;
|
|
284
|
+
}
|
|
285
|
+
export interface HuVehicleRegistrationData {
|
|
286
|
+
readonly value: string;
|
|
287
|
+
readonly type: 'standard' | 'custom' | 'military' | 'diplomatic' | 'police' | 'oldtimer' | 'taxi' | 'electric' | 'motorcycle' | 'temporary';
|
|
288
|
+
}
|
|
289
|
+
export interface IeVehicleRegistrationOptions extends RequestOptions {
|
|
290
|
+
readonly type?: 'standard' | 'temporary-import' | 'vintage' | 'taxi' | 'electric';
|
|
291
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
292
|
+
readonly county?: string;
|
|
293
|
+
readonly format?: 'with-hyphen' | 'with-space' | 'compact';
|
|
294
|
+
readonly edge?: boolean;
|
|
295
|
+
readonly extreme?: boolean;
|
|
296
|
+
}
|
|
297
|
+
export interface IeVehicleRegistrationData {
|
|
298
|
+
readonly value: string;
|
|
299
|
+
readonly type: 'standard' | 'temporary-import' | 'vintage' | 'taxi' | 'electric';
|
|
300
|
+
readonly era?: 'current' | 'legacy';
|
|
301
|
+
readonly county?: string;
|
|
302
|
+
readonly subregion?: string;
|
|
303
|
+
}
|
|
304
|
+
export interface ItVehicleRegistrationOptions extends RequestOptions {
|
|
305
|
+
readonly type?: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'trailer';
|
|
306
|
+
readonly withProvince?: boolean;
|
|
307
|
+
readonly province?: string;
|
|
308
|
+
readonly format?: 'with-space' | 'compact';
|
|
309
|
+
readonly edge?: boolean;
|
|
310
|
+
readonly extreme?: boolean;
|
|
311
|
+
}
|
|
312
|
+
export interface ItVehicleRegistrationData {
|
|
313
|
+
readonly value: string;
|
|
314
|
+
readonly type: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'trailer';
|
|
315
|
+
readonly province?: string;
|
|
316
|
+
}
|
|
317
|
+
export interface LtVehicleRegistrationOptions extends RequestOptions {
|
|
318
|
+
readonly type?: 'standard' | 'custom' | 'military' | 'diplomatic' | 'motorcycle' | 'moped' | 'trailer' | 'ev' | 'taxi' | 'historic' | 'dealer';
|
|
319
|
+
readonly format?: 'with-space' | 'compact';
|
|
320
|
+
readonly edge?: boolean;
|
|
321
|
+
readonly extreme?: boolean;
|
|
322
|
+
}
|
|
323
|
+
export interface LtVehicleRegistrationData {
|
|
324
|
+
readonly value: string;
|
|
325
|
+
readonly type: 'standard' | 'custom' | 'military' | 'diplomatic' | 'motorcycle' | 'moped' | 'trailer' | 'ev' | 'taxi' | 'historic' | 'dealer';
|
|
326
|
+
}
|
|
327
|
+
export interface LuVehicleRegistrationOptions extends RequestOptions {
|
|
328
|
+
readonly type?: 'standard' | 'custom' | 'military' | 'diplomatic' | 'official' | 'dealer' | 'export' | 'moped' | 'deputies';
|
|
329
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
330
|
+
readonly format?: 'with-space' | 'compact';
|
|
331
|
+
readonly edge?: boolean;
|
|
332
|
+
readonly extreme?: boolean;
|
|
333
|
+
}
|
|
334
|
+
export interface LuVehicleRegistrationData {
|
|
335
|
+
readonly value: string;
|
|
336
|
+
readonly type: 'standard' | 'custom' | 'military' | 'diplomatic' | 'official' | 'dealer' | 'export' | 'moped' | 'deputies';
|
|
337
|
+
}
|
|
338
|
+
export interface LvVehicleRegistrationOptions extends RequestOptions {
|
|
339
|
+
readonly type?: 'standard' | 'custom' | 'military' | 'diplomatic' | 'consular' | 'historic' | 'taxi' | 'transit' | 'motorcycle' | 'moped';
|
|
340
|
+
readonly format?: 'hyphen' | 'compact';
|
|
341
|
+
readonly edge?: boolean;
|
|
342
|
+
readonly extreme?: boolean;
|
|
343
|
+
}
|
|
344
|
+
export interface LvVehicleRegistrationData {
|
|
345
|
+
readonly value: string;
|
|
346
|
+
readonly type: 'standard' | 'custom' | 'military' | 'diplomatic' | 'consular' | 'historic' | 'taxi' | 'transit' | 'motorcycle' | 'moped';
|
|
347
|
+
}
|
|
348
|
+
export interface MtVehicleRegistrationOptions extends RequestOptions {
|
|
349
|
+
readonly type?: 'standard' | 'motorcycle' | 'military' | 'government' | 'diplomatic' | 'taxi' | 'bus' | 'trailer' | 'tax-free' | 'custom';
|
|
350
|
+
readonly expiryMonth?: string;
|
|
351
|
+
readonly format?: 'with-space' | 'compact';
|
|
352
|
+
readonly edge?: boolean;
|
|
353
|
+
readonly extreme?: boolean;
|
|
354
|
+
}
|
|
355
|
+
export interface MtVehicleRegistrationData {
|
|
356
|
+
readonly value: string;
|
|
357
|
+
readonly type: 'standard' | 'motorcycle' | 'military' | 'government' | 'diplomatic' | 'taxi' | 'bus' | 'trailer' | 'tax-free' | 'custom';
|
|
358
|
+
readonly expiryMonth?: string;
|
|
359
|
+
}
|
|
360
|
+
export interface NlVehicleRegistrationOptions extends RequestOptions {
|
|
361
|
+
readonly type?: 'standard' | 'motorcycle' | 'historic' | 'diplomatic' | 'military' | 'dealer' | 'export';
|
|
362
|
+
readonly sidecode?: 5 | 6 | 8 | 9 | 10 | 11;
|
|
363
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
364
|
+
readonly format?: 'with-hyphen' | 'compact';
|
|
365
|
+
readonly edge?: boolean;
|
|
366
|
+
readonly extreme?: boolean;
|
|
367
|
+
}
|
|
368
|
+
export interface NlVehicleRegistrationData {
|
|
369
|
+
readonly value: string;
|
|
370
|
+
readonly type: 'standard' | 'motorcycle' | 'historic' | 'diplomatic' | 'military' | 'dealer' | 'export';
|
|
371
|
+
}
|
|
372
|
+
export interface PtVehicleRegistrationOptions extends RequestOptions {
|
|
373
|
+
readonly type?: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'police' | 'export';
|
|
374
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
375
|
+
readonly format?: 'with-hyphen' | 'with-space' | 'compact';
|
|
376
|
+
readonly edge?: boolean;
|
|
377
|
+
readonly extreme?: boolean;
|
|
378
|
+
}
|
|
379
|
+
export interface PtVehicleRegistrationData {
|
|
380
|
+
readonly value: string;
|
|
381
|
+
readonly type: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'police' | 'export';
|
|
382
|
+
readonly era?: 'current' | '2005-2020' | '1992-2005' | 'pre-1992';
|
|
383
|
+
}
|
|
384
|
+
export interface RoVehicleRegistrationOptions extends RequestOptions {
|
|
385
|
+
readonly type?: 'standard' | 'motorcycle' | 'electric' | 'temporary' | 'military' | 'police' | 'diplomatic';
|
|
386
|
+
readonly county?: string;
|
|
387
|
+
readonly format?: 'with-space' | 'compact';
|
|
388
|
+
readonly edge?: boolean;
|
|
389
|
+
readonly extreme?: boolean;
|
|
390
|
+
}
|
|
391
|
+
export interface RoVehicleRegistrationData {
|
|
392
|
+
readonly value: string;
|
|
393
|
+
readonly type: 'standard' | 'motorcycle' | 'electric' | 'temporary' | 'military' | 'police' | 'diplomatic';
|
|
394
|
+
readonly county?: string;
|
|
395
|
+
readonly countyCode?: string;
|
|
396
|
+
}
|
|
397
|
+
export interface SeVehicleRegistrationOptions extends RequestOptions {
|
|
398
|
+
readonly type?: 'standard' | 'custom' | 'diplomatic' | 'military' | 'motorcycle';
|
|
399
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
400
|
+
readonly format?: 'with-space' | 'compact';
|
|
401
|
+
readonly edge?: boolean;
|
|
402
|
+
readonly extreme?: boolean;
|
|
403
|
+
}
|
|
404
|
+
export interface SeVehicleRegistrationData {
|
|
405
|
+
readonly value: string;
|
|
406
|
+
readonly type: 'standard' | 'custom' | 'diplomatic' | 'military' | 'motorcycle';
|
|
407
|
+
}
|
|
408
|
+
export interface SiVehicleRegistrationOptions extends RequestOptions {
|
|
409
|
+
readonly type?: 'standard' | 'custom' | 'motorcycle' | 'military' | 'diplomatic' | 'police' | 'export';
|
|
410
|
+
readonly region?: string;
|
|
411
|
+
readonly format?: 'with-space' | 'compact';
|
|
412
|
+
readonly edge?: boolean;
|
|
413
|
+
readonly extreme?: boolean;
|
|
414
|
+
}
|
|
415
|
+
export interface SiVehicleRegistrationData {
|
|
416
|
+
readonly value: string;
|
|
417
|
+
readonly type: 'standard' | 'custom' | 'motorcycle' | 'military' | 'diplomatic' | 'police' | 'export';
|
|
418
|
+
readonly region?: string;
|
|
419
|
+
}
|
|
420
|
+
export interface SkVehicleRegistrationOptions extends RequestOptions {
|
|
421
|
+
readonly type?: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'consular' | 'trailer' | 'historic' | 'electric' | 'dealer' | 'custom';
|
|
422
|
+
readonly era?: 'current' | 'legacy' | 'both';
|
|
423
|
+
readonly district?: string;
|
|
424
|
+
readonly region?: string;
|
|
425
|
+
readonly format?: 'hyphen' | 'compact';
|
|
426
|
+
readonly edge?: boolean;
|
|
427
|
+
readonly extreme?: boolean;
|
|
428
|
+
}
|
|
429
|
+
export interface SkVehicleRegistrationData {
|
|
430
|
+
readonly value: string;
|
|
431
|
+
readonly type: 'standard' | 'motorcycle' | 'military' | 'diplomatic' | 'consular' | 'trailer' | 'historic' | 'electric' | 'dealer' | 'custom';
|
|
432
|
+
readonly region?: string;
|
|
433
|
+
readonly district?: string;
|
|
89
434
|
}
|
|
90
435
|
export interface IdCardOptions extends RequestOptions {
|
|
91
436
|
readonly format?: 'compact' | 'with-space';
|
|
@@ -138,6 +483,8 @@ export interface EmailOptions extends RequestOptions {
|
|
|
138
483
|
readonly exotic?: boolean;
|
|
139
484
|
/** Restrict output to edge-case addresses from the rare corners of the format. */
|
|
140
485
|
readonly edge?: boolean;
|
|
486
|
+
/** Present the address in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); the decomposition stays clean. */
|
|
487
|
+
readonly extreme?: boolean;
|
|
141
488
|
}
|
|
142
489
|
/** Options for the multi-country `email` generator. */
|
|
143
490
|
export interface AnyEmailOptions extends EmailOptions {
|
|
@@ -246,6 +593,8 @@ export interface LocaleCompanyOptions extends RequestOptions {
|
|
|
246
593
|
readonly invalid?: boolean;
|
|
247
594
|
/** Restrict output to edge-case values from the rare corners. */
|
|
248
595
|
readonly edge?: boolean;
|
|
596
|
+
/** Present the company name in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); legal form and identifiers stay clean. */
|
|
597
|
+
readonly extreme?: boolean;
|
|
249
598
|
}
|
|
250
599
|
/** One AT company: the name, its legal form, and the matching national identifiers. */
|
|
251
600
|
export interface AtCompanyData {
|
|
@@ -492,6 +841,8 @@ export interface PersonNameOptions extends RequestOptions {
|
|
|
492
841
|
* surnames, and minimal-length names become far more likely.
|
|
493
842
|
*/
|
|
494
843
|
readonly edge?: boolean;
|
|
844
|
+
/** Present name and surname in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); initials and any identifier stay clean. */
|
|
845
|
+
readonly extreme?: boolean;
|
|
495
846
|
/**
|
|
496
847
|
* Defaults to `true` (proper casing). Set `false` to deliberately mangle the
|
|
497
848
|
* casing of name and surname (all-lower, all-upper, or random); initials stay
|
|
@@ -531,11 +882,15 @@ export interface LocaleCompanyNameOptions extends RequestOptions {
|
|
|
531
882
|
readonly legalForm?: string;
|
|
532
883
|
/** Restrict output to edge-case names (punctuation-heavy families, long/rare forms). */
|
|
533
884
|
readonly edge?: boolean;
|
|
885
|
+
/** Present the company name in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); legal form and identifiers stay clean. */
|
|
886
|
+
readonly extreme?: boolean;
|
|
534
887
|
}
|
|
535
888
|
/** Options for the multi-country `companyName` generator (no `legalForm` — it is country-specific). */
|
|
536
889
|
export interface AnyCompanyNameOptions extends RequestOptions {
|
|
537
890
|
readonly strategy?: CompanyNameStrategy | 'any';
|
|
538
891
|
readonly edge?: boolean;
|
|
892
|
+
/** Present the company name in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); legal form and identifiers stay clean. */
|
|
893
|
+
readonly extreme?: boolean;
|
|
539
894
|
/**
|
|
540
895
|
* ISO 3166 codes to draw each record from, e.g. `['de', 'fr', 'it']`. Omit to
|
|
541
896
|
* draw from all 27.
|
|
@@ -558,6 +913,8 @@ export interface FrSirenOptions extends RequestOptions {
|
|
|
558
913
|
readonly format?: 'siren' | 'siret' | 'vat';
|
|
559
914
|
readonly invalid?: boolean;
|
|
560
915
|
readonly edge?: boolean;
|
|
916
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
917
|
+
readonly extreme?: boolean;
|
|
561
918
|
}
|
|
562
919
|
export interface FrSirenData {
|
|
563
920
|
readonly value: string;
|
|
@@ -573,6 +930,8 @@ export interface FrNirOptions extends RequestOptions {
|
|
|
573
930
|
readonly bornAfter?: string;
|
|
574
931
|
readonly invalid?: boolean;
|
|
575
932
|
readonly edge?: boolean;
|
|
933
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
934
|
+
readonly extreme?: boolean;
|
|
576
935
|
}
|
|
577
936
|
export interface FrNirData {
|
|
578
937
|
readonly value: string;
|
|
@@ -590,6 +949,8 @@ export interface AtSvnrOptions extends RequestOptions {
|
|
|
590
949
|
readonly bornAfter?: string;
|
|
591
950
|
readonly invalid?: boolean;
|
|
592
951
|
readonly edge?: boolean;
|
|
952
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
953
|
+
readonly extreme?: boolean;
|
|
593
954
|
}
|
|
594
955
|
export interface AtSvnrData {
|
|
595
956
|
readonly value: string;
|
|
@@ -600,6 +961,8 @@ export interface AtUidOptions extends RequestOptions {
|
|
|
600
961
|
readonly format?: 'national' | 'vat';
|
|
601
962
|
readonly invalid?: boolean;
|
|
602
963
|
readonly edge?: boolean;
|
|
964
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
965
|
+
readonly extreme?: boolean;
|
|
603
966
|
}
|
|
604
967
|
export interface AtUidData {
|
|
605
968
|
readonly value: string;
|
|
@@ -608,6 +971,8 @@ export interface AtUidData {
|
|
|
608
971
|
export interface AtFirmenbuchnummerOptions extends RequestOptions {
|
|
609
972
|
readonly invalid?: boolean;
|
|
610
973
|
readonly edge?: boolean;
|
|
974
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
975
|
+
readonly extreme?: boolean;
|
|
611
976
|
}
|
|
612
977
|
export interface AtFirmenbuchnummerData {
|
|
613
978
|
readonly value: string;
|
|
@@ -616,6 +981,8 @@ export interface AtFirmenbuchnummerData {
|
|
|
616
981
|
}
|
|
617
982
|
export interface AtSteuernummerOptions extends RequestOptions {
|
|
618
983
|
readonly edge?: boolean;
|
|
984
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
985
|
+
readonly extreme?: boolean;
|
|
619
986
|
}
|
|
620
987
|
export interface AtSteuernummerData {
|
|
621
988
|
readonly value: string;
|
|
@@ -632,6 +999,8 @@ export interface BeRijksregisternummerOptions extends RequestOptions {
|
|
|
632
999
|
readonly kind?: 'national' | 'bis';
|
|
633
1000
|
readonly invalid?: boolean;
|
|
634
1001
|
readonly edge?: boolean;
|
|
1002
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1003
|
+
readonly extreme?: boolean;
|
|
635
1004
|
}
|
|
636
1005
|
export interface BeRijksregisternummerData {
|
|
637
1006
|
readonly value: string;
|
|
@@ -643,6 +1012,8 @@ export interface BeOndernemingsnummerOptions extends RequestOptions {
|
|
|
643
1012
|
readonly format?: 'national' | 'vat';
|
|
644
1013
|
readonly invalid?: boolean;
|
|
645
1014
|
readonly edge?: boolean;
|
|
1015
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1016
|
+
readonly extreme?: boolean;
|
|
646
1017
|
}
|
|
647
1018
|
export interface BeOndernemingsnummerData {
|
|
648
1019
|
readonly value: string;
|
|
@@ -658,6 +1029,8 @@ export interface BgEgnOptions extends RequestOptions {
|
|
|
658
1029
|
readonly bornAfter?: string;
|
|
659
1030
|
readonly invalid?: boolean;
|
|
660
1031
|
readonly edge?: boolean;
|
|
1032
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1033
|
+
readonly extreme?: boolean;
|
|
661
1034
|
}
|
|
662
1035
|
export interface BgEgnData {
|
|
663
1036
|
readonly value: string;
|
|
@@ -669,6 +1042,8 @@ export interface BgEikOptions extends RequestOptions {
|
|
|
669
1042
|
readonly format?: 'national' | 'vat';
|
|
670
1043
|
readonly invalid?: boolean;
|
|
671
1044
|
readonly edge?: boolean;
|
|
1045
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1046
|
+
readonly extreme?: boolean;
|
|
672
1047
|
}
|
|
673
1048
|
export interface BgEikData {
|
|
674
1049
|
readonly value: string;
|
|
@@ -678,6 +1053,8 @@ export interface HrOibOptions extends RequestOptions {
|
|
|
678
1053
|
readonly format?: 'national' | 'vat';
|
|
679
1054
|
readonly invalid?: boolean;
|
|
680
1055
|
readonly edge?: boolean;
|
|
1056
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1057
|
+
readonly extreme?: boolean;
|
|
681
1058
|
}
|
|
682
1059
|
export interface HrOibData {
|
|
683
1060
|
readonly value: string;
|
|
@@ -693,6 +1070,8 @@ export interface HrJmbgOptions extends RequestOptions {
|
|
|
693
1070
|
readonly bornAfter?: string;
|
|
694
1071
|
readonly invalid?: boolean;
|
|
695
1072
|
readonly edge?: boolean;
|
|
1073
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1074
|
+
readonly extreme?: boolean;
|
|
696
1075
|
}
|
|
697
1076
|
export interface HrJmbgData {
|
|
698
1077
|
readonly value: string;
|
|
@@ -704,6 +1083,8 @@ export interface CyTicOptions extends RequestOptions {
|
|
|
704
1083
|
readonly format?: 'national' | 'vat';
|
|
705
1084
|
readonly invalid?: boolean;
|
|
706
1085
|
readonly edge?: boolean;
|
|
1086
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1087
|
+
readonly extreme?: boolean;
|
|
707
1088
|
}
|
|
708
1089
|
export interface CyTicData {
|
|
709
1090
|
readonly value: string;
|
|
@@ -721,6 +1102,8 @@ export interface CzRodneCisloOptions extends RequestOptions {
|
|
|
721
1102
|
readonly format?: 'plain' | 'with-slash';
|
|
722
1103
|
readonly invalid?: boolean;
|
|
723
1104
|
readonly edge?: boolean;
|
|
1105
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1106
|
+
readonly extreme?: boolean;
|
|
724
1107
|
}
|
|
725
1108
|
export interface CzRodneCisloData {
|
|
726
1109
|
readonly value: string;
|
|
@@ -732,6 +1115,8 @@ export interface CzIcoOptions extends RequestOptions {
|
|
|
732
1115
|
readonly format?: 'national' | 'vat';
|
|
733
1116
|
readonly invalid?: boolean;
|
|
734
1117
|
readonly edge?: boolean;
|
|
1118
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1119
|
+
readonly extreme?: boolean;
|
|
735
1120
|
}
|
|
736
1121
|
export interface CzIcoData {
|
|
737
1122
|
readonly value: string;
|
|
@@ -749,6 +1134,8 @@ export interface DkCprOptions extends RequestOptions {
|
|
|
749
1134
|
readonly format?: 'plain' | 'with-hyphen';
|
|
750
1135
|
readonly invalid?: boolean;
|
|
751
1136
|
readonly edge?: boolean;
|
|
1137
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1138
|
+
readonly extreme?: boolean;
|
|
752
1139
|
}
|
|
753
1140
|
export interface DkCprData {
|
|
754
1141
|
readonly value: string;
|
|
@@ -771,6 +1158,8 @@ export interface DkCvrOptions extends RequestOptions {
|
|
|
771
1158
|
readonly format?: 'national' | 'vat';
|
|
772
1159
|
readonly invalid?: boolean;
|
|
773
1160
|
readonly edge?: boolean;
|
|
1161
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1162
|
+
readonly extreme?: boolean;
|
|
774
1163
|
}
|
|
775
1164
|
export interface DkCvrData {
|
|
776
1165
|
readonly value: string;
|
|
@@ -786,6 +1175,8 @@ export interface EeIsikukoodOptions extends RequestOptions {
|
|
|
786
1175
|
readonly bornAfter?: string;
|
|
787
1176
|
readonly invalid?: boolean;
|
|
788
1177
|
readonly edge?: boolean;
|
|
1178
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1179
|
+
readonly extreme?: boolean;
|
|
789
1180
|
}
|
|
790
1181
|
export interface EeIsikukoodData {
|
|
791
1182
|
readonly value: string;
|
|
@@ -796,6 +1187,8 @@ export interface EeIsikukoodData {
|
|
|
796
1187
|
export interface EeRegistrikoodOptions extends RequestOptions {
|
|
797
1188
|
readonly invalid?: boolean;
|
|
798
1189
|
readonly edge?: boolean;
|
|
1190
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1191
|
+
readonly extreme?: boolean;
|
|
799
1192
|
}
|
|
800
1193
|
export interface EeRegistrikoodData {
|
|
801
1194
|
readonly value: string;
|
|
@@ -805,6 +1198,8 @@ export interface EeKmkrOptions extends RequestOptions {
|
|
|
805
1198
|
readonly format?: 'national' | 'vat';
|
|
806
1199
|
readonly invalid?: boolean;
|
|
807
1200
|
readonly edge?: boolean;
|
|
1201
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1202
|
+
readonly extreme?: boolean;
|
|
808
1203
|
}
|
|
809
1204
|
export interface EeKmkrData {
|
|
810
1205
|
readonly value: string;
|
|
@@ -820,6 +1215,8 @@ export interface FiHenkilotunnusOptions extends RequestOptions {
|
|
|
820
1215
|
readonly bornAfter?: string;
|
|
821
1216
|
readonly invalid?: boolean;
|
|
822
1217
|
readonly edge?: boolean;
|
|
1218
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1219
|
+
readonly extreme?: boolean;
|
|
823
1220
|
}
|
|
824
1221
|
export interface FiHenkilotunnusData {
|
|
825
1222
|
readonly value: string;
|
|
@@ -831,6 +1228,8 @@ export interface FiYTunnusOptions extends RequestOptions {
|
|
|
831
1228
|
readonly format?: 'national' | 'vat';
|
|
832
1229
|
readonly invalid?: boolean;
|
|
833
1230
|
readonly edge?: boolean;
|
|
1231
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1232
|
+
readonly extreme?: boolean;
|
|
834
1233
|
}
|
|
835
1234
|
export interface FiYTunnusData {
|
|
836
1235
|
readonly value: string;
|
|
@@ -839,6 +1238,8 @@ export interface FiYTunnusData {
|
|
|
839
1238
|
export interface DeSteuerIdOptions extends RequestOptions {
|
|
840
1239
|
readonly invalid?: boolean;
|
|
841
1240
|
readonly edge?: boolean;
|
|
1241
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1242
|
+
readonly extreme?: boolean;
|
|
842
1243
|
}
|
|
843
1244
|
export interface DeSteuerIdData {
|
|
844
1245
|
readonly value: string;
|
|
@@ -848,6 +1249,8 @@ export interface DeUstIdnrOptions extends RequestOptions {
|
|
|
848
1249
|
readonly format?: 'national' | 'vat';
|
|
849
1250
|
readonly invalid?: boolean;
|
|
850
1251
|
readonly edge?: boolean;
|
|
1252
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1253
|
+
readonly extreme?: boolean;
|
|
851
1254
|
}
|
|
852
1255
|
export interface DeUstIdnrData {
|
|
853
1256
|
readonly value: string;
|
|
@@ -856,6 +1259,8 @@ export interface DeUstIdnrData {
|
|
|
856
1259
|
export interface DeHandelsregisternummerOptions extends RequestOptions {
|
|
857
1260
|
readonly division?: 'HRA' | 'HRB';
|
|
858
1261
|
readonly edge?: boolean;
|
|
1262
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1263
|
+
readonly extreme?: boolean;
|
|
859
1264
|
}
|
|
860
1265
|
export interface DeHandelsregisternummerData {
|
|
861
1266
|
readonly value: string;
|
|
@@ -867,6 +1272,8 @@ export interface DeWirtschaftsIdnrOptions extends RequestOptions {
|
|
|
867
1272
|
readonly suffix?: number;
|
|
868
1273
|
readonly invalid?: boolean;
|
|
869
1274
|
readonly edge?: boolean;
|
|
1275
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1276
|
+
readonly extreme?: boolean;
|
|
870
1277
|
}
|
|
871
1278
|
export interface DeWirtschaftsIdnrData {
|
|
872
1279
|
readonly value: string;
|
|
@@ -876,6 +1283,8 @@ export interface DeWirtschaftsIdnrData {
|
|
|
876
1283
|
export interface DePersonalausweisOptions extends RequestOptions {
|
|
877
1284
|
readonly invalid?: boolean;
|
|
878
1285
|
readonly edge?: boolean;
|
|
1286
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1287
|
+
readonly extreme?: boolean;
|
|
879
1288
|
}
|
|
880
1289
|
export interface DePersonalausweisData {
|
|
881
1290
|
readonly value: string;
|
|
@@ -892,6 +1301,8 @@ export interface GrAmkaOptions extends RequestOptions {
|
|
|
892
1301
|
readonly bornAfter?: string;
|
|
893
1302
|
readonly invalid?: boolean;
|
|
894
1303
|
readonly edge?: boolean;
|
|
1304
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1305
|
+
readonly extreme?: boolean;
|
|
895
1306
|
}
|
|
896
1307
|
export interface GrAmkaData {
|
|
897
1308
|
readonly value: string;
|
|
@@ -903,6 +1314,8 @@ export interface GrAfmOptions extends RequestOptions {
|
|
|
903
1314
|
readonly format?: 'national' | 'vat';
|
|
904
1315
|
readonly invalid?: boolean;
|
|
905
1316
|
readonly edge?: boolean;
|
|
1317
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1318
|
+
readonly extreme?: boolean;
|
|
906
1319
|
}
|
|
907
1320
|
export interface GrAfmData {
|
|
908
1321
|
readonly value: string;
|
|
@@ -917,6 +1330,8 @@ export interface HuAdoazonositoJelOptions extends RequestOptions {
|
|
|
917
1330
|
readonly bornAfter?: string;
|
|
918
1331
|
readonly invalid?: boolean;
|
|
919
1332
|
readonly edge?: boolean;
|
|
1333
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1334
|
+
readonly extreme?: boolean;
|
|
920
1335
|
}
|
|
921
1336
|
export interface HuAdoazonositoJelData {
|
|
922
1337
|
readonly value: string;
|
|
@@ -926,6 +1341,8 @@ export interface HuAdoazonositoJelData {
|
|
|
926
1341
|
export interface HuTajOptions extends RequestOptions {
|
|
927
1342
|
readonly invalid?: boolean;
|
|
928
1343
|
readonly edge?: boolean;
|
|
1344
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1345
|
+
readonly extreme?: boolean;
|
|
929
1346
|
}
|
|
930
1347
|
export interface HuTajData {
|
|
931
1348
|
readonly value: string;
|
|
@@ -942,6 +1359,8 @@ export interface HuSzemelyiAzonositoOptions extends RequestOptions {
|
|
|
942
1359
|
readonly standard?: 'pre-1997' | 'modern' | 'both';
|
|
943
1360
|
readonly invalid?: boolean;
|
|
944
1361
|
readonly edge?: boolean;
|
|
1362
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1363
|
+
readonly extreme?: boolean;
|
|
945
1364
|
}
|
|
946
1365
|
export interface HuSzemelyiAzonositoData {
|
|
947
1366
|
readonly value: string;
|
|
@@ -954,6 +1373,8 @@ export interface HuAdoszamOptions extends RequestOptions {
|
|
|
954
1373
|
readonly format?: 'national' | 'vat';
|
|
955
1374
|
readonly invalid?: boolean;
|
|
956
1375
|
readonly edge?: boolean;
|
|
1376
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1377
|
+
readonly extreme?: boolean;
|
|
957
1378
|
}
|
|
958
1379
|
export interface HuAdoszamData {
|
|
959
1380
|
readonly value: string;
|
|
@@ -961,6 +1382,8 @@ export interface HuAdoszamData {
|
|
|
961
1382
|
}
|
|
962
1383
|
export interface HuCegjegyzekszamOptions extends RequestOptions {
|
|
963
1384
|
readonly edge?: boolean;
|
|
1385
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1386
|
+
readonly extreme?: boolean;
|
|
964
1387
|
}
|
|
965
1388
|
export interface HuCegjegyzekszamData {
|
|
966
1389
|
readonly value: string;
|
|
@@ -973,6 +1396,8 @@ export interface IePpsnOptions extends RequestOptions {
|
|
|
973
1396
|
readonly standard?: 'pre-2013' | 'modern' | 'both';
|
|
974
1397
|
readonly invalid?: boolean;
|
|
975
1398
|
readonly edge?: boolean;
|
|
1399
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1400
|
+
readonly extreme?: boolean;
|
|
976
1401
|
}
|
|
977
1402
|
export interface IePpsnData {
|
|
978
1403
|
readonly value: string;
|
|
@@ -985,6 +1410,8 @@ export interface IeVatOptions extends RequestOptions {
|
|
|
985
1410
|
readonly standard?: 'pre-2013' | 'modern' | 'both';
|
|
986
1411
|
readonly invalid?: boolean;
|
|
987
1412
|
readonly edge?: boolean;
|
|
1413
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1414
|
+
readonly extreme?: boolean;
|
|
988
1415
|
}
|
|
989
1416
|
export interface IeVatData {
|
|
990
1417
|
readonly value: string;
|
|
@@ -992,6 +1419,8 @@ export interface IeVatData {
|
|
|
992
1419
|
}
|
|
993
1420
|
export interface IeCroOptions extends RequestOptions {
|
|
994
1421
|
readonly edge?: boolean;
|
|
1422
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1423
|
+
readonly extreme?: boolean;
|
|
995
1424
|
}
|
|
996
1425
|
export interface IeCroData {
|
|
997
1426
|
readonly value: string;
|
|
@@ -1009,6 +1438,8 @@ export interface ItCodiceFiscaleOptions extends RequestOptions {
|
|
|
1009
1438
|
readonly name?: string;
|
|
1010
1439
|
readonly invalid?: boolean;
|
|
1011
1440
|
readonly edge?: boolean;
|
|
1441
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1442
|
+
readonly extreme?: boolean;
|
|
1012
1443
|
}
|
|
1013
1444
|
export interface ItCodiceFiscaleData {
|
|
1014
1445
|
readonly value: string;
|
|
@@ -1021,6 +1452,8 @@ export interface ItPartitaIvaOptions extends RequestOptions {
|
|
|
1021
1452
|
readonly format?: 'national' | 'vat';
|
|
1022
1453
|
readonly invalid?: boolean;
|
|
1023
1454
|
readonly edge?: boolean;
|
|
1455
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1456
|
+
readonly extreme?: boolean;
|
|
1024
1457
|
}
|
|
1025
1458
|
export interface ItPartitaIvaData {
|
|
1026
1459
|
readonly value: string;
|
|
@@ -1037,6 +1470,8 @@ export interface LvPersonasKodsOptions extends RequestOptions {
|
|
|
1037
1470
|
readonly format?: 'plain' | 'with-hyphen';
|
|
1038
1471
|
readonly invalid?: boolean;
|
|
1039
1472
|
readonly edge?: boolean;
|
|
1473
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1474
|
+
readonly extreme?: boolean;
|
|
1040
1475
|
}
|
|
1041
1476
|
export interface LvPersonasKodsData {
|
|
1042
1477
|
readonly value: string;
|
|
@@ -1047,6 +1482,8 @@ export interface LvRegistracijasNumursOptions extends RequestOptions {
|
|
|
1047
1482
|
readonly format?: 'national' | 'vat';
|
|
1048
1483
|
readonly invalid?: boolean;
|
|
1049
1484
|
readonly edge?: boolean;
|
|
1485
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1486
|
+
readonly extreme?: boolean;
|
|
1050
1487
|
}
|
|
1051
1488
|
export interface LvRegistracijasNumursData {
|
|
1052
1489
|
readonly value: string;
|
|
@@ -1062,6 +1499,8 @@ export interface LtAsmensKodasOptions extends RequestOptions {
|
|
|
1062
1499
|
readonly bornAfter?: string;
|
|
1063
1500
|
readonly invalid?: boolean;
|
|
1064
1501
|
readonly edge?: boolean;
|
|
1502
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1503
|
+
readonly extreme?: boolean;
|
|
1065
1504
|
}
|
|
1066
1505
|
export interface LtAsmensKodasData {
|
|
1067
1506
|
readonly value: string;
|
|
@@ -1072,6 +1511,8 @@ export interface LtAsmensKodasData {
|
|
|
1072
1511
|
export interface LtImonesKodasOptions extends RequestOptions {
|
|
1073
1512
|
readonly invalid?: boolean;
|
|
1074
1513
|
readonly edge?: boolean;
|
|
1514
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1515
|
+
readonly extreme?: boolean;
|
|
1075
1516
|
}
|
|
1076
1517
|
export interface LtImonesKodasData {
|
|
1077
1518
|
readonly value: string;
|
|
@@ -1081,6 +1522,8 @@ export interface LtPvmOptions extends RequestOptions {
|
|
|
1081
1522
|
readonly format?: 'national' | 'vat';
|
|
1082
1523
|
readonly invalid?: boolean;
|
|
1083
1524
|
readonly edge?: boolean;
|
|
1525
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1526
|
+
readonly extreme?: boolean;
|
|
1084
1527
|
}
|
|
1085
1528
|
export interface LtPvmData {
|
|
1086
1529
|
readonly value: string;
|
|
@@ -1095,6 +1538,8 @@ export interface LuMatriculeOptions extends RequestOptions {
|
|
|
1095
1538
|
readonly bornAfter?: string;
|
|
1096
1539
|
readonly invalid?: boolean;
|
|
1097
1540
|
readonly edge?: boolean;
|
|
1541
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1542
|
+
readonly extreme?: boolean;
|
|
1098
1543
|
}
|
|
1099
1544
|
export interface LuMatriculeData {
|
|
1100
1545
|
readonly value: string;
|
|
@@ -1105,6 +1550,8 @@ export interface LuTvaOptions extends RequestOptions {
|
|
|
1105
1550
|
readonly format?: 'national' | 'vat';
|
|
1106
1551
|
readonly invalid?: boolean;
|
|
1107
1552
|
readonly edge?: boolean;
|
|
1553
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1554
|
+
readonly extreme?: boolean;
|
|
1108
1555
|
}
|
|
1109
1556
|
export interface LuTvaData {
|
|
1110
1557
|
readonly value: string;
|
|
@@ -1113,6 +1560,8 @@ export interface LuTvaData {
|
|
|
1113
1560
|
export interface MtIdCardOptions extends RequestOptions {
|
|
1114
1561
|
readonly category?: 'M' | 'G' | 'A' | 'P' | 'L' | 'H' | 'B' | 'Z';
|
|
1115
1562
|
readonly edge?: boolean;
|
|
1563
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1564
|
+
readonly extreme?: boolean;
|
|
1116
1565
|
}
|
|
1117
1566
|
export interface MtIdCardData {
|
|
1118
1567
|
readonly value: string;
|
|
@@ -1123,6 +1572,8 @@ export interface MtVatOptions extends RequestOptions {
|
|
|
1123
1572
|
readonly format?: 'national' | 'vat';
|
|
1124
1573
|
readonly invalid?: boolean;
|
|
1125
1574
|
readonly edge?: boolean;
|
|
1575
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1576
|
+
readonly extreme?: boolean;
|
|
1126
1577
|
}
|
|
1127
1578
|
export interface MtVatData {
|
|
1128
1579
|
readonly value: string;
|
|
@@ -1131,6 +1582,8 @@ export interface MtVatData {
|
|
|
1131
1582
|
export interface NlBsnOptions extends RequestOptions {
|
|
1132
1583
|
readonly invalid?: boolean;
|
|
1133
1584
|
readonly edge?: boolean;
|
|
1585
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1586
|
+
readonly extreme?: boolean;
|
|
1134
1587
|
}
|
|
1135
1588
|
export interface NlBsnData {
|
|
1136
1589
|
readonly value: string;
|
|
@@ -1139,6 +1592,8 @@ export interface NlBsnData {
|
|
|
1139
1592
|
export interface NlPersonOptions extends PersonConstraintOptions {
|
|
1140
1593
|
/** Bias the BSN and name shape toward their rare corners. */
|
|
1141
1594
|
readonly edge?: boolean;
|
|
1595
|
+
/** Present name and surname in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); initials and any identifier stay clean. */
|
|
1596
|
+
readonly extreme?: boolean;
|
|
1142
1597
|
/** Mangle the casing of `name`/`surname` for testing. Defaults to `true`. */
|
|
1143
1598
|
readonly caseStrict?: boolean;
|
|
1144
1599
|
}
|
|
@@ -1158,6 +1613,8 @@ export interface NlPersonData {
|
|
|
1158
1613
|
export interface FullPersonOptions extends PersonConstraintOptions {
|
|
1159
1614
|
/** Bias the number and name shape toward their rarely-exercised corners. */
|
|
1160
1615
|
readonly edge?: boolean;
|
|
1616
|
+
/** Present name and surname in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, homoglyphs, or bidi/combining marks); initials and any identifier stay clean. */
|
|
1617
|
+
readonly extreme?: boolean;
|
|
1161
1618
|
/** Mangle the casing of `name`/`surname` for testing. Defaults to `true`. */
|
|
1162
1619
|
readonly caseStrict?: boolean;
|
|
1163
1620
|
}
|
|
@@ -1356,6 +1813,8 @@ export interface LvPersonData {
|
|
|
1356
1813
|
export interface NlRsinOptions extends RequestOptions {
|
|
1357
1814
|
readonly invalid?: boolean;
|
|
1358
1815
|
readonly edge?: boolean;
|
|
1816
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1817
|
+
readonly extreme?: boolean;
|
|
1359
1818
|
}
|
|
1360
1819
|
export interface NlRsinData {
|
|
1361
1820
|
readonly value: string;
|
|
@@ -1365,6 +1824,8 @@ export interface NlBtwIdOptions extends RequestOptions {
|
|
|
1365
1824
|
readonly standard?: 'legacy' | 'modern' | 'both';
|
|
1366
1825
|
readonly invalid?: boolean;
|
|
1367
1826
|
readonly edge?: boolean;
|
|
1827
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1828
|
+
readonly extreme?: boolean;
|
|
1368
1829
|
}
|
|
1369
1830
|
export interface NlBtwIdData {
|
|
1370
1831
|
readonly value: string;
|
|
@@ -1373,6 +1834,8 @@ export interface NlBtwIdData {
|
|
|
1373
1834
|
}
|
|
1374
1835
|
export interface NlKvkOptions extends RequestOptions {
|
|
1375
1836
|
readonly edge?: boolean;
|
|
1837
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1838
|
+
readonly extreme?: boolean;
|
|
1376
1839
|
}
|
|
1377
1840
|
export interface NlKvkData {
|
|
1378
1841
|
readonly value: string;
|
|
@@ -1383,6 +1846,8 @@ export interface PtNifOptions extends RequestOptions {
|
|
|
1383
1846
|
readonly format?: 'national' | 'vat';
|
|
1384
1847
|
readonly invalid?: boolean;
|
|
1385
1848
|
readonly edge?: boolean;
|
|
1849
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1850
|
+
readonly extreme?: boolean;
|
|
1386
1851
|
}
|
|
1387
1852
|
export interface PtNifData {
|
|
1388
1853
|
readonly value: string;
|
|
@@ -1392,6 +1857,8 @@ export interface PtNifData {
|
|
|
1392
1857
|
export interface PtCartaoCidadaoOptions extends RequestOptions {
|
|
1393
1858
|
readonly invalid?: boolean;
|
|
1394
1859
|
readonly edge?: boolean;
|
|
1860
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1861
|
+
readonly extreme?: boolean;
|
|
1395
1862
|
}
|
|
1396
1863
|
export interface PtCartaoCidadaoData {
|
|
1397
1864
|
readonly value: string;
|
|
@@ -1408,6 +1875,8 @@ export interface RoCnpOptions extends RequestOptions {
|
|
|
1408
1875
|
readonly bornAfter?: string;
|
|
1409
1876
|
readonly invalid?: boolean;
|
|
1410
1877
|
readonly edge?: boolean;
|
|
1878
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1879
|
+
readonly extreme?: boolean;
|
|
1411
1880
|
}
|
|
1412
1881
|
export interface RoCnpData {
|
|
1413
1882
|
readonly value: string;
|
|
@@ -1420,6 +1889,8 @@ export interface RoCuiOptions extends RequestOptions {
|
|
|
1420
1889
|
readonly format?: 'national' | 'vat';
|
|
1421
1890
|
readonly invalid?: boolean;
|
|
1422
1891
|
readonly edge?: boolean;
|
|
1892
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1893
|
+
readonly extreme?: boolean;
|
|
1423
1894
|
}
|
|
1424
1895
|
export interface RoCuiData {
|
|
1425
1896
|
readonly value: string;
|
|
@@ -1436,6 +1907,8 @@ export interface SkRodneCisloOptions extends RequestOptions {
|
|
|
1436
1907
|
readonly format?: 'plain' | 'with-slash';
|
|
1437
1908
|
readonly invalid?: boolean;
|
|
1438
1909
|
readonly edge?: boolean;
|
|
1910
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1911
|
+
readonly extreme?: boolean;
|
|
1439
1912
|
}
|
|
1440
1913
|
export interface SkRodneCisloData {
|
|
1441
1914
|
readonly value: string;
|
|
@@ -1446,6 +1919,8 @@ export interface SkRodneCisloData {
|
|
|
1446
1919
|
export interface SkIcoOptions extends RequestOptions {
|
|
1447
1920
|
readonly invalid?: boolean;
|
|
1448
1921
|
readonly edge?: boolean;
|
|
1922
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1923
|
+
readonly extreme?: boolean;
|
|
1449
1924
|
}
|
|
1450
1925
|
export interface SkIcoData {
|
|
1451
1926
|
readonly value: string;
|
|
@@ -1455,6 +1930,8 @@ export interface SkIcDphOptions extends RequestOptions {
|
|
|
1455
1930
|
readonly format?: 'national' | 'vat';
|
|
1456
1931
|
readonly invalid?: boolean;
|
|
1457
1932
|
readonly edge?: boolean;
|
|
1933
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1934
|
+
readonly extreme?: boolean;
|
|
1458
1935
|
}
|
|
1459
1936
|
export interface SkIcDphData {
|
|
1460
1937
|
readonly value: string;
|
|
@@ -1470,6 +1947,8 @@ export interface SiEmsoOptions extends RequestOptions {
|
|
|
1470
1947
|
readonly bornAfter?: string;
|
|
1471
1948
|
readonly invalid?: boolean;
|
|
1472
1949
|
readonly edge?: boolean;
|
|
1950
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1951
|
+
readonly extreme?: boolean;
|
|
1473
1952
|
}
|
|
1474
1953
|
export interface SiEmsoData {
|
|
1475
1954
|
readonly value: string;
|
|
@@ -1481,6 +1960,8 @@ export interface SiDavcnaStevilkaOptions extends RequestOptions {
|
|
|
1481
1960
|
readonly format?: 'national' | 'vat';
|
|
1482
1961
|
readonly invalid?: boolean;
|
|
1483
1962
|
readonly edge?: boolean;
|
|
1963
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1964
|
+
readonly extreme?: boolean;
|
|
1484
1965
|
}
|
|
1485
1966
|
export interface SiDavcnaStevilkaData {
|
|
1486
1967
|
readonly value: string;
|
|
@@ -1489,6 +1970,8 @@ export interface SiDavcnaStevilkaData {
|
|
|
1489
1970
|
export interface EsDniOptions extends RequestOptions {
|
|
1490
1971
|
readonly invalid?: boolean;
|
|
1491
1972
|
readonly edge?: boolean;
|
|
1973
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1974
|
+
readonly extreme?: boolean;
|
|
1492
1975
|
}
|
|
1493
1976
|
export interface EsDniData {
|
|
1494
1977
|
readonly value: string;
|
|
@@ -1498,6 +1981,8 @@ export interface EsDniData {
|
|
|
1498
1981
|
export interface EsNieOptions extends RequestOptions {
|
|
1499
1982
|
readonly invalid?: boolean;
|
|
1500
1983
|
readonly edge?: boolean;
|
|
1984
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1985
|
+
readonly extreme?: boolean;
|
|
1501
1986
|
}
|
|
1502
1987
|
export interface EsNieData {
|
|
1503
1988
|
readonly value: string;
|
|
@@ -1509,6 +1994,8 @@ export interface EsCifOptions extends RequestOptions {
|
|
|
1509
1994
|
readonly format?: 'national' | 'vat';
|
|
1510
1995
|
readonly invalid?: boolean;
|
|
1511
1996
|
readonly edge?: boolean;
|
|
1997
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
1998
|
+
readonly extreme?: boolean;
|
|
1512
1999
|
}
|
|
1513
2000
|
export interface EsCifData {
|
|
1514
2001
|
readonly value: string;
|
|
@@ -1526,6 +2013,8 @@ export interface SePersonnummerOptions extends RequestOptions {
|
|
|
1526
2013
|
readonly kind?: 'personnummer' | 'samordningsnummer';
|
|
1527
2014
|
readonly invalid?: boolean;
|
|
1528
2015
|
readonly edge?: boolean;
|
|
2016
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
2017
|
+
readonly extreme?: boolean;
|
|
1529
2018
|
}
|
|
1530
2019
|
export interface SePersonnummerData {
|
|
1531
2020
|
readonly value: string;
|
|
@@ -1537,6 +2026,8 @@ export interface SeOrganisationsnummerOptions extends RequestOptions {
|
|
|
1537
2026
|
readonly format?: 'national' | 'vat';
|
|
1538
2027
|
readonly invalid?: boolean;
|
|
1539
2028
|
readonly edge?: boolean;
|
|
2029
|
+
/** Present the value in a hostile-but-recoverable encoding (untrimmed whitespace, invisible/zero-width chars, BOM, or bidi/combining marks); homoglyphs excluded so it stays machine-parseable. */
|
|
2030
|
+
readonly extreme?: boolean;
|
|
1540
2031
|
}
|
|
1541
2032
|
export interface SeOrganisationsnummerData {
|
|
1542
2033
|
readonly value: string;
|