@przeslijmi/real-fake-data-playwright 1.8.0 → 1.12.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/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
- /** Pin the issuing bank by its four-digit code. Mutually exclusive with `bankName`. */
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;
@@ -90,6 +105,332 @@ export interface VehicleRegistrationOptions extends RequestOptions {
90
105
  readonly voivodeship?: string;
91
106
  readonly county?: string;
92
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;
93
434
  }
94
435
  export interface IdCardOptions extends RequestOptions {
95
436
  readonly format?: 'compact' | 'with-space';
@@ -153,6 +494,54 @@ export interface AnyEmailOptions extends EmailOptions {
153
494
  */
154
495
  readonly countries?: readonly CountryCode[];
155
496
  }
497
+ export interface OfferingOptions extends RequestOptions {
498
+ /** Pin the industry by NACE code (`61`, `56.11`). Omit to draw across all covered industries. */
499
+ readonly industry?: string;
500
+ /** Full-text filter: keep offerings whose localized industry label contains this (case-insensitive). */
501
+ readonly industryName?: string;
502
+ /** Full-text filter: keep offerings whose localized name contains this (case-insensitive). */
503
+ readonly offeringName?: string;
504
+ /** Pin the name language to one of the country's official subtags. Omit for its weighted mix. */
505
+ readonly language?: string;
506
+ /** Restrict to products or services. Omit for both. */
507
+ readonly type?: 'product' | 'service';
508
+ /** Restrict to edge-case offerings (price-band extremes, unusual units, long names). */
509
+ readonly edge?: boolean;
510
+ /** Present the offering name in a hostile-but-recoverable encoding; price, unit and industry label stay clean. */
511
+ readonly extreme?: boolean;
512
+ /** Return a deliberately invalid offering (price outside its band, negative price, or empty name). Cannot combine with edge/extreme. */
513
+ readonly invalid?: boolean;
514
+ }
515
+ /** Options for the multi-country `offering` generator. */
516
+ export interface AnyOfferingOptions extends OfferingOptions {
517
+ /**
518
+ * ISO 3166 codes to draw each record from, e.g. `['pl', 'de', 'it']`. Each
519
+ * record picks one country from the list at random. Omit to draw from all 27.
520
+ */
521
+ readonly countries?: readonly CountryCode[];
522
+ }
523
+ export interface OfferingData {
524
+ readonly value: string;
525
+ /** The full offering name (alias of `value`). */
526
+ readonly offeringName: string;
527
+ readonly kind: 'product' | 'service';
528
+ /** The unit the price is quoted per — a canonical symbol (`pc`, `month`, `kg`, …). */
529
+ readonly unit: string;
530
+ /** A single plausible price, in EUR minor units (cents). */
531
+ readonly price: number;
532
+ readonly currency: 'EUR';
533
+ /** NACE Rev. 2.1 code of the offering's industry. */
534
+ readonly industryCode: string;
535
+ /** The localized industry label in the resolved language. */
536
+ readonly industryName: string;
537
+ /** BCP-47 subtag used for this record's names. */
538
+ readonly language: string;
539
+ }
540
+ /** A multi-country offering: the shared fields plus the country it was drawn from. */
541
+ export interface AnyOfferingData extends OfferingData {
542
+ /** ISO 3166 alpha-2 code of the country this offering was drawn from. */
543
+ readonly country: string;
544
+ }
156
545
  export interface LoremOptions extends RequestOptions {
157
546
  /**
158
547
  * Size the text by a length unit. When more than one is given the most
@@ -487,6 +876,51 @@ export interface CustomRegexData {
487
876
  /** The source pattern the value was generated from, echoed back. */
488
877
  readonly pattern: string;
489
878
  }
879
+ export interface UuidOptions extends RequestOptions {
880
+ /**
881
+ * UUID version: `'4'` (fully random, the default) or `'7'` (time-ordered,
882
+ * RFC 9562). The v7 timestamp is derived from the seed, not the wall clock.
883
+ */
884
+ readonly version?: '4' | '7';
885
+ }
886
+ export interface UuidData {
887
+ /** The canonical hyphenated lowercase UUID. */
888
+ readonly value: string;
889
+ /** The version generated: `'4'` or `'7'`. */
890
+ readonly version: '4' | '7';
891
+ }
892
+ /** ULID takes no options beyond the shared `seed`. */
893
+ export type UlidOptions = RequestOptions;
894
+ export interface UlidData {
895
+ /** The 26-character Crockford-Base32 ULID. */
896
+ readonly value: string;
897
+ }
898
+ export interface NanoIdOptions extends RequestOptions {
899
+ /** Id length in characters (1–255). Defaults to 21. */
900
+ readonly size?: number;
901
+ /** Custom alphabet to draw from. Defaults to nanoid’s URL-safe 64-character set. */
902
+ readonly alphabet?: string;
903
+ }
904
+ export interface NanoIdData {
905
+ /** The generated Nano ID. */
906
+ readonly value: string;
907
+ }
908
+ /** ObjectId takes no options beyond the shared `seed`. */
909
+ export type ObjectIdOptions = RequestOptions;
910
+ export interface ObjectIdData {
911
+ /** The 24-character hex MongoDB ObjectId. */
912
+ readonly value: string;
913
+ }
914
+ export interface SequenceOptions extends RequestOptions {
915
+ /** First value of the sequence. Defaults to 1. */
916
+ readonly start?: number;
917
+ /** Increment between consecutive records. Defaults to 1; must be non-zero. */
918
+ readonly step?: number;
919
+ }
920
+ export interface SequenceData {
921
+ /** The sequence value: `start + index · step`. */
922
+ readonly value: number;
923
+ }
490
924
  /**
491
925
  * Options shared by every country's `person-name` generator (`dePersonName`,
492
926
  * `itPersonName`, `plPersonName`, …). Only the underlying name pools and