@przeslijmi/real-fake-data-playwright 1.5.0 → 1.8.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 +80 -22
- package/dist/fake-data.d.ts +14 -4
- package/dist/fake-data.d.ts.map +1 -1
- package/dist/fake-data.js +31 -0
- package/dist/fake-data.js.map +1 -1
- package/dist/fixture.d.ts +14 -8
- package/dist/fixture.d.ts.map +1 -1
- package/dist/fixture.js +10 -9
- package/dist/fixture.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/providers/cloud-provider.d.ts +9 -3
- package/dist/providers/cloud-provider.d.ts.map +1 -1
- package/dist/providers/cloud-provider.js +5 -6
- package/dist/providers/cloud-provider.js.map +1 -1
- package/dist/singleton.d.ts +20 -0
- package/dist/singleton.d.ts.map +1 -0
- package/dist/singleton.js +21 -0
- package/dist/singleton.js.map +1 -0
- package/dist/types.d.ts +184 -5
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/hash.d.ts +0 -7
- package/dist/hash.d.ts.map +0 -1
- package/dist/hash.js +0 -14
- package/dist/hash.js.map +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -18,9 +18,9 @@ export type CompanyNameStrategy = 'morpheme' | 'surname' | 'descriptive' | 'mode
|
|
|
18
18
|
/** Kind of vehicle registration plate produced. */
|
|
19
19
|
export type VehicleRegistrationType = 'standard' | 'custom' | 'police' | 'military' | 'historic';
|
|
20
20
|
/** Local-part shape the email generator can produce. */
|
|
21
|
-
export type EmailLocalPattern = 'first.last' | 'firstlast' | 'first_last' | 'first.last.number' | 'flast' | 'initial.last' | 'noun.number';
|
|
22
|
-
/**
|
|
23
|
-
export type EmailDomainCategory = 'free' | 'regional';
|
|
21
|
+
export type EmailLocalPattern = 'first.last' | 'firstlast' | 'first_last' | 'first.last.number' | 'flast' | 'initial.last' | 'noun.number' | 'first.company' | 'company.first';
|
|
22
|
+
/** Domain category the email generator can draw from. */
|
|
23
|
+
export type EmailDomainCategory = 'free' | 'regional' | 'corporate';
|
|
24
24
|
/**
|
|
25
25
|
* Per-call options shared by every method. A `seed` here overrides the
|
|
26
26
|
* fixture's automatic per-call seed for this one request.
|
|
@@ -71,6 +71,8 @@ export interface CompanyNameOptions extends RequestOptions {
|
|
|
71
71
|
readonly activityPrefix?: boolean;
|
|
72
72
|
/** Restrict output to edge-case names (punctuation-heavy families, long/rare forms). */
|
|
73
73
|
readonly edge?: boolean;
|
|
74
|
+
/** 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. */
|
|
75
|
+
readonly extreme?: boolean;
|
|
74
76
|
}
|
|
75
77
|
export interface CompanyOptions extends RequestOptions {
|
|
76
78
|
readonly strategy?: CompanyNameStrategy | 'any';
|
|
@@ -80,6 +82,8 @@ export interface CompanyOptions extends RequestOptions {
|
|
|
80
82
|
readonly invalid?: boolean;
|
|
81
83
|
/** Restrict output to edge-case values from the rare corners. */
|
|
82
84
|
readonly edge?: boolean;
|
|
85
|
+
/** 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. */
|
|
86
|
+
readonly extreme?: boolean;
|
|
83
87
|
}
|
|
84
88
|
export interface VehicleRegistrationOptions extends RequestOptions {
|
|
85
89
|
readonly type?: VehicleRegistrationType;
|
|
@@ -111,10 +115,20 @@ export interface DrivingLicenseOptions extends RequestOptions {
|
|
|
111
115
|
/** Full 4-digit issue year, within the supported range. */
|
|
112
116
|
readonly year?: number;
|
|
113
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* Options shared by every country's `email` generator (`deEmail`, `plEmail`,
|
|
120
|
+
* …) and the multi-country `email` aggregate. The controls are identical
|
|
121
|
+
* across countries; only the underlying name pools and regional/corporate
|
|
122
|
+
* domains differ.
|
|
123
|
+
*/
|
|
114
124
|
export interface EmailOptions extends RequestOptions {
|
|
115
|
-
/** Pin an exact
|
|
125
|
+
/** Pin an exact domain, e.g. `"gmail.com"`. */
|
|
116
126
|
readonly domain?: string;
|
|
117
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* Scope the weighted domain draw — `free` webmail, `regional` providers,
|
|
129
|
+
* `corporate` (a company-derived domain), or `any`. Ignored when `domain`
|
|
130
|
+
* is set.
|
|
131
|
+
*/
|
|
118
132
|
readonly domainCategory?: EmailDomainCategory | 'any';
|
|
119
133
|
/** Which local-part shape to produce, or `any` for a weighted-random one. */
|
|
120
134
|
readonly pattern?: EmailLocalPattern | 'any';
|
|
@@ -126,6 +140,18 @@ export interface EmailOptions extends RequestOptions {
|
|
|
126
140
|
readonly plusTag?: boolean | string;
|
|
127
141
|
/** Opt in to the rarer-but-still-RFC-valid local-part characters. */
|
|
128
142
|
readonly exotic?: boolean;
|
|
143
|
+
/** Restrict output to edge-case addresses from the rare corners of the format. */
|
|
144
|
+
readonly edge?: boolean;
|
|
145
|
+
/** 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. */
|
|
146
|
+
readonly extreme?: boolean;
|
|
147
|
+
}
|
|
148
|
+
/** Options for the multi-country `email` generator. */
|
|
149
|
+
export interface AnyEmailOptions extends EmailOptions {
|
|
150
|
+
/**
|
|
151
|
+
* ISO 3166 codes to draw each record from, e.g. `['pl', 'de', 'it']`. Each
|
|
152
|
+
* record picks one country from the list at random. Omit to draw from all 27.
|
|
153
|
+
*/
|
|
154
|
+
readonly countries?: readonly CountryCode[];
|
|
129
155
|
}
|
|
130
156
|
export interface LoremOptions extends RequestOptions {
|
|
131
157
|
/**
|
|
@@ -226,6 +252,8 @@ export interface LocaleCompanyOptions extends RequestOptions {
|
|
|
226
252
|
readonly invalid?: boolean;
|
|
227
253
|
/** Restrict output to edge-case values from the rare corners. */
|
|
228
254
|
readonly edge?: boolean;
|
|
255
|
+
/** 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. */
|
|
256
|
+
readonly extreme?: boolean;
|
|
229
257
|
}
|
|
230
258
|
/** One AT company: the name, its legal form, and the matching national identifiers. */
|
|
231
259
|
export interface AtCompanyData {
|
|
@@ -435,8 +463,17 @@ export interface EmailData {
|
|
|
435
463
|
readonly localPart: string;
|
|
436
464
|
readonly domain: string;
|
|
437
465
|
readonly pattern: EmailLocalPattern;
|
|
466
|
+
/** Whether the domain is free webmail, a regional provider, or corporate. */
|
|
467
|
+
readonly domainCategory: EmailDomainCategory;
|
|
468
|
+
/** The company a corporate domain / company local-part was derived from, or `null`. */
|
|
469
|
+
readonly company: string | null;
|
|
438
470
|
readonly plusTag: string | null;
|
|
439
471
|
}
|
|
472
|
+
/** A multi-country email: the shared fields plus the country it was drawn from. */
|
|
473
|
+
export interface AnyEmailData extends EmailData {
|
|
474
|
+
/** ISO 3166 alpha-2 code of the country this address was drawn from. */
|
|
475
|
+
readonly country: string;
|
|
476
|
+
}
|
|
440
477
|
export interface LoremData {
|
|
441
478
|
readonly value: string;
|
|
442
479
|
readonly words: number;
|
|
@@ -463,6 +500,8 @@ export interface PersonNameOptions extends RequestOptions {
|
|
|
463
500
|
* surnames, and minimal-length names become far more likely.
|
|
464
501
|
*/
|
|
465
502
|
readonly edge?: boolean;
|
|
503
|
+
/** 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. */
|
|
504
|
+
readonly extreme?: boolean;
|
|
466
505
|
/**
|
|
467
506
|
* Defaults to `true` (proper casing). Set `false` to deliberately mangle the
|
|
468
507
|
* casing of name and surname (all-lower, all-upper, or random); initials stay
|
|
@@ -502,11 +541,15 @@ export interface LocaleCompanyNameOptions extends RequestOptions {
|
|
|
502
541
|
readonly legalForm?: string;
|
|
503
542
|
/** Restrict output to edge-case names (punctuation-heavy families, long/rare forms). */
|
|
504
543
|
readonly edge?: boolean;
|
|
544
|
+
/** 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. */
|
|
545
|
+
readonly extreme?: boolean;
|
|
505
546
|
}
|
|
506
547
|
/** Options for the multi-country `companyName` generator (no `legalForm` — it is country-specific). */
|
|
507
548
|
export interface AnyCompanyNameOptions extends RequestOptions {
|
|
508
549
|
readonly strategy?: CompanyNameStrategy | 'any';
|
|
509
550
|
readonly edge?: boolean;
|
|
551
|
+
/** 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. */
|
|
552
|
+
readonly extreme?: boolean;
|
|
510
553
|
/**
|
|
511
554
|
* ISO 3166 codes to draw each record from, e.g. `['de', 'fr', 'it']`. Omit to
|
|
512
555
|
* draw from all 27.
|
|
@@ -529,6 +572,8 @@ export interface FrSirenOptions extends RequestOptions {
|
|
|
529
572
|
readonly format?: 'siren' | 'siret' | 'vat';
|
|
530
573
|
readonly invalid?: boolean;
|
|
531
574
|
readonly edge?: boolean;
|
|
575
|
+
/** 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. */
|
|
576
|
+
readonly extreme?: boolean;
|
|
532
577
|
}
|
|
533
578
|
export interface FrSirenData {
|
|
534
579
|
readonly value: string;
|
|
@@ -544,6 +589,8 @@ export interface FrNirOptions extends RequestOptions {
|
|
|
544
589
|
readonly bornAfter?: string;
|
|
545
590
|
readonly invalid?: boolean;
|
|
546
591
|
readonly edge?: boolean;
|
|
592
|
+
/** 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. */
|
|
593
|
+
readonly extreme?: boolean;
|
|
547
594
|
}
|
|
548
595
|
export interface FrNirData {
|
|
549
596
|
readonly value: string;
|
|
@@ -561,6 +608,8 @@ export interface AtSvnrOptions extends RequestOptions {
|
|
|
561
608
|
readonly bornAfter?: string;
|
|
562
609
|
readonly invalid?: boolean;
|
|
563
610
|
readonly edge?: boolean;
|
|
611
|
+
/** 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. */
|
|
612
|
+
readonly extreme?: boolean;
|
|
564
613
|
}
|
|
565
614
|
export interface AtSvnrData {
|
|
566
615
|
readonly value: string;
|
|
@@ -571,6 +620,8 @@ export interface AtUidOptions extends RequestOptions {
|
|
|
571
620
|
readonly format?: 'national' | 'vat';
|
|
572
621
|
readonly invalid?: boolean;
|
|
573
622
|
readonly edge?: boolean;
|
|
623
|
+
/** 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. */
|
|
624
|
+
readonly extreme?: boolean;
|
|
574
625
|
}
|
|
575
626
|
export interface AtUidData {
|
|
576
627
|
readonly value: string;
|
|
@@ -579,6 +630,8 @@ export interface AtUidData {
|
|
|
579
630
|
export interface AtFirmenbuchnummerOptions extends RequestOptions {
|
|
580
631
|
readonly invalid?: boolean;
|
|
581
632
|
readonly edge?: boolean;
|
|
633
|
+
/** 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. */
|
|
634
|
+
readonly extreme?: boolean;
|
|
582
635
|
}
|
|
583
636
|
export interface AtFirmenbuchnummerData {
|
|
584
637
|
readonly value: string;
|
|
@@ -587,6 +640,8 @@ export interface AtFirmenbuchnummerData {
|
|
|
587
640
|
}
|
|
588
641
|
export interface AtSteuernummerOptions extends RequestOptions {
|
|
589
642
|
readonly edge?: boolean;
|
|
643
|
+
/** 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. */
|
|
644
|
+
readonly extreme?: boolean;
|
|
590
645
|
}
|
|
591
646
|
export interface AtSteuernummerData {
|
|
592
647
|
readonly value: string;
|
|
@@ -603,6 +658,8 @@ export interface BeRijksregisternummerOptions extends RequestOptions {
|
|
|
603
658
|
readonly kind?: 'national' | 'bis';
|
|
604
659
|
readonly invalid?: boolean;
|
|
605
660
|
readonly edge?: boolean;
|
|
661
|
+
/** 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. */
|
|
662
|
+
readonly extreme?: boolean;
|
|
606
663
|
}
|
|
607
664
|
export interface BeRijksregisternummerData {
|
|
608
665
|
readonly value: string;
|
|
@@ -614,6 +671,8 @@ export interface BeOndernemingsnummerOptions extends RequestOptions {
|
|
|
614
671
|
readonly format?: 'national' | 'vat';
|
|
615
672
|
readonly invalid?: boolean;
|
|
616
673
|
readonly edge?: boolean;
|
|
674
|
+
/** 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. */
|
|
675
|
+
readonly extreme?: boolean;
|
|
617
676
|
}
|
|
618
677
|
export interface BeOndernemingsnummerData {
|
|
619
678
|
readonly value: string;
|
|
@@ -629,6 +688,8 @@ export interface BgEgnOptions extends RequestOptions {
|
|
|
629
688
|
readonly bornAfter?: string;
|
|
630
689
|
readonly invalid?: boolean;
|
|
631
690
|
readonly edge?: boolean;
|
|
691
|
+
/** 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. */
|
|
692
|
+
readonly extreme?: boolean;
|
|
632
693
|
}
|
|
633
694
|
export interface BgEgnData {
|
|
634
695
|
readonly value: string;
|
|
@@ -640,6 +701,8 @@ export interface BgEikOptions extends RequestOptions {
|
|
|
640
701
|
readonly format?: 'national' | 'vat';
|
|
641
702
|
readonly invalid?: boolean;
|
|
642
703
|
readonly edge?: boolean;
|
|
704
|
+
/** 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. */
|
|
705
|
+
readonly extreme?: boolean;
|
|
643
706
|
}
|
|
644
707
|
export interface BgEikData {
|
|
645
708
|
readonly value: string;
|
|
@@ -649,6 +712,8 @@ export interface HrOibOptions extends RequestOptions {
|
|
|
649
712
|
readonly format?: 'national' | 'vat';
|
|
650
713
|
readonly invalid?: boolean;
|
|
651
714
|
readonly edge?: boolean;
|
|
715
|
+
/** 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. */
|
|
716
|
+
readonly extreme?: boolean;
|
|
652
717
|
}
|
|
653
718
|
export interface HrOibData {
|
|
654
719
|
readonly value: string;
|
|
@@ -664,6 +729,8 @@ export interface HrJmbgOptions extends RequestOptions {
|
|
|
664
729
|
readonly bornAfter?: string;
|
|
665
730
|
readonly invalid?: boolean;
|
|
666
731
|
readonly edge?: boolean;
|
|
732
|
+
/** 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. */
|
|
733
|
+
readonly extreme?: boolean;
|
|
667
734
|
}
|
|
668
735
|
export interface HrJmbgData {
|
|
669
736
|
readonly value: string;
|
|
@@ -675,6 +742,8 @@ export interface CyTicOptions extends RequestOptions {
|
|
|
675
742
|
readonly format?: 'national' | 'vat';
|
|
676
743
|
readonly invalid?: boolean;
|
|
677
744
|
readonly edge?: boolean;
|
|
745
|
+
/** 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. */
|
|
746
|
+
readonly extreme?: boolean;
|
|
678
747
|
}
|
|
679
748
|
export interface CyTicData {
|
|
680
749
|
readonly value: string;
|
|
@@ -692,6 +761,8 @@ export interface CzRodneCisloOptions extends RequestOptions {
|
|
|
692
761
|
readonly format?: 'plain' | 'with-slash';
|
|
693
762
|
readonly invalid?: boolean;
|
|
694
763
|
readonly edge?: boolean;
|
|
764
|
+
/** 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. */
|
|
765
|
+
readonly extreme?: boolean;
|
|
695
766
|
}
|
|
696
767
|
export interface CzRodneCisloData {
|
|
697
768
|
readonly value: string;
|
|
@@ -703,6 +774,8 @@ export interface CzIcoOptions extends RequestOptions {
|
|
|
703
774
|
readonly format?: 'national' | 'vat';
|
|
704
775
|
readonly invalid?: boolean;
|
|
705
776
|
readonly edge?: boolean;
|
|
777
|
+
/** 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. */
|
|
778
|
+
readonly extreme?: boolean;
|
|
706
779
|
}
|
|
707
780
|
export interface CzIcoData {
|
|
708
781
|
readonly value: string;
|
|
@@ -720,6 +793,8 @@ export interface DkCprOptions extends RequestOptions {
|
|
|
720
793
|
readonly format?: 'plain' | 'with-hyphen';
|
|
721
794
|
readonly invalid?: boolean;
|
|
722
795
|
readonly edge?: boolean;
|
|
796
|
+
/** 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. */
|
|
797
|
+
readonly extreme?: boolean;
|
|
723
798
|
}
|
|
724
799
|
export interface DkCprData {
|
|
725
800
|
readonly value: string;
|
|
@@ -742,6 +817,8 @@ export interface DkCvrOptions extends RequestOptions {
|
|
|
742
817
|
readonly format?: 'national' | 'vat';
|
|
743
818
|
readonly invalid?: boolean;
|
|
744
819
|
readonly edge?: boolean;
|
|
820
|
+
/** 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. */
|
|
821
|
+
readonly extreme?: boolean;
|
|
745
822
|
}
|
|
746
823
|
export interface DkCvrData {
|
|
747
824
|
readonly value: string;
|
|
@@ -757,6 +834,8 @@ export interface EeIsikukoodOptions extends RequestOptions {
|
|
|
757
834
|
readonly bornAfter?: string;
|
|
758
835
|
readonly invalid?: boolean;
|
|
759
836
|
readonly edge?: boolean;
|
|
837
|
+
/** 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. */
|
|
838
|
+
readonly extreme?: boolean;
|
|
760
839
|
}
|
|
761
840
|
export interface EeIsikukoodData {
|
|
762
841
|
readonly value: string;
|
|
@@ -767,6 +846,8 @@ export interface EeIsikukoodData {
|
|
|
767
846
|
export interface EeRegistrikoodOptions extends RequestOptions {
|
|
768
847
|
readonly invalid?: boolean;
|
|
769
848
|
readonly edge?: boolean;
|
|
849
|
+
/** 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. */
|
|
850
|
+
readonly extreme?: boolean;
|
|
770
851
|
}
|
|
771
852
|
export interface EeRegistrikoodData {
|
|
772
853
|
readonly value: string;
|
|
@@ -776,6 +857,8 @@ export interface EeKmkrOptions extends RequestOptions {
|
|
|
776
857
|
readonly format?: 'national' | 'vat';
|
|
777
858
|
readonly invalid?: boolean;
|
|
778
859
|
readonly edge?: boolean;
|
|
860
|
+
/** 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. */
|
|
861
|
+
readonly extreme?: boolean;
|
|
779
862
|
}
|
|
780
863
|
export interface EeKmkrData {
|
|
781
864
|
readonly value: string;
|
|
@@ -791,6 +874,8 @@ export interface FiHenkilotunnusOptions extends RequestOptions {
|
|
|
791
874
|
readonly bornAfter?: string;
|
|
792
875
|
readonly invalid?: boolean;
|
|
793
876
|
readonly edge?: boolean;
|
|
877
|
+
/** 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. */
|
|
878
|
+
readonly extreme?: boolean;
|
|
794
879
|
}
|
|
795
880
|
export interface FiHenkilotunnusData {
|
|
796
881
|
readonly value: string;
|
|
@@ -802,6 +887,8 @@ export interface FiYTunnusOptions extends RequestOptions {
|
|
|
802
887
|
readonly format?: 'national' | 'vat';
|
|
803
888
|
readonly invalid?: boolean;
|
|
804
889
|
readonly edge?: boolean;
|
|
890
|
+
/** 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. */
|
|
891
|
+
readonly extreme?: boolean;
|
|
805
892
|
}
|
|
806
893
|
export interface FiYTunnusData {
|
|
807
894
|
readonly value: string;
|
|
@@ -810,6 +897,8 @@ export interface FiYTunnusData {
|
|
|
810
897
|
export interface DeSteuerIdOptions extends RequestOptions {
|
|
811
898
|
readonly invalid?: boolean;
|
|
812
899
|
readonly edge?: boolean;
|
|
900
|
+
/** 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. */
|
|
901
|
+
readonly extreme?: boolean;
|
|
813
902
|
}
|
|
814
903
|
export interface DeSteuerIdData {
|
|
815
904
|
readonly value: string;
|
|
@@ -819,6 +908,8 @@ export interface DeUstIdnrOptions extends RequestOptions {
|
|
|
819
908
|
readonly format?: 'national' | 'vat';
|
|
820
909
|
readonly invalid?: boolean;
|
|
821
910
|
readonly edge?: boolean;
|
|
911
|
+
/** 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. */
|
|
912
|
+
readonly extreme?: boolean;
|
|
822
913
|
}
|
|
823
914
|
export interface DeUstIdnrData {
|
|
824
915
|
readonly value: string;
|
|
@@ -827,6 +918,8 @@ export interface DeUstIdnrData {
|
|
|
827
918
|
export interface DeHandelsregisternummerOptions extends RequestOptions {
|
|
828
919
|
readonly division?: 'HRA' | 'HRB';
|
|
829
920
|
readonly edge?: boolean;
|
|
921
|
+
/** 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. */
|
|
922
|
+
readonly extreme?: boolean;
|
|
830
923
|
}
|
|
831
924
|
export interface DeHandelsregisternummerData {
|
|
832
925
|
readonly value: string;
|
|
@@ -838,6 +931,8 @@ export interface DeWirtschaftsIdnrOptions extends RequestOptions {
|
|
|
838
931
|
readonly suffix?: number;
|
|
839
932
|
readonly invalid?: boolean;
|
|
840
933
|
readonly edge?: boolean;
|
|
934
|
+
/** 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. */
|
|
935
|
+
readonly extreme?: boolean;
|
|
841
936
|
}
|
|
842
937
|
export interface DeWirtschaftsIdnrData {
|
|
843
938
|
readonly value: string;
|
|
@@ -847,6 +942,8 @@ export interface DeWirtschaftsIdnrData {
|
|
|
847
942
|
export interface DePersonalausweisOptions extends RequestOptions {
|
|
848
943
|
readonly invalid?: boolean;
|
|
849
944
|
readonly edge?: boolean;
|
|
945
|
+
/** 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. */
|
|
946
|
+
readonly extreme?: boolean;
|
|
850
947
|
}
|
|
851
948
|
export interface DePersonalausweisData {
|
|
852
949
|
readonly value: string;
|
|
@@ -863,6 +960,8 @@ export interface GrAmkaOptions extends RequestOptions {
|
|
|
863
960
|
readonly bornAfter?: string;
|
|
864
961
|
readonly invalid?: boolean;
|
|
865
962
|
readonly edge?: boolean;
|
|
963
|
+
/** 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. */
|
|
964
|
+
readonly extreme?: boolean;
|
|
866
965
|
}
|
|
867
966
|
export interface GrAmkaData {
|
|
868
967
|
readonly value: string;
|
|
@@ -874,6 +973,8 @@ export interface GrAfmOptions extends RequestOptions {
|
|
|
874
973
|
readonly format?: 'national' | 'vat';
|
|
875
974
|
readonly invalid?: boolean;
|
|
876
975
|
readonly edge?: boolean;
|
|
976
|
+
/** 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. */
|
|
977
|
+
readonly extreme?: boolean;
|
|
877
978
|
}
|
|
878
979
|
export interface GrAfmData {
|
|
879
980
|
readonly value: string;
|
|
@@ -888,6 +989,8 @@ export interface HuAdoazonositoJelOptions extends RequestOptions {
|
|
|
888
989
|
readonly bornAfter?: string;
|
|
889
990
|
readonly invalid?: boolean;
|
|
890
991
|
readonly edge?: boolean;
|
|
992
|
+
/** 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. */
|
|
993
|
+
readonly extreme?: boolean;
|
|
891
994
|
}
|
|
892
995
|
export interface HuAdoazonositoJelData {
|
|
893
996
|
readonly value: string;
|
|
@@ -897,6 +1000,8 @@ export interface HuAdoazonositoJelData {
|
|
|
897
1000
|
export interface HuTajOptions extends RequestOptions {
|
|
898
1001
|
readonly invalid?: boolean;
|
|
899
1002
|
readonly edge?: boolean;
|
|
1003
|
+
/** 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. */
|
|
1004
|
+
readonly extreme?: boolean;
|
|
900
1005
|
}
|
|
901
1006
|
export interface HuTajData {
|
|
902
1007
|
readonly value: string;
|
|
@@ -913,6 +1018,8 @@ export interface HuSzemelyiAzonositoOptions extends RequestOptions {
|
|
|
913
1018
|
readonly standard?: 'pre-1997' | 'modern' | 'both';
|
|
914
1019
|
readonly invalid?: boolean;
|
|
915
1020
|
readonly edge?: boolean;
|
|
1021
|
+
/** 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. */
|
|
1022
|
+
readonly extreme?: boolean;
|
|
916
1023
|
}
|
|
917
1024
|
export interface HuSzemelyiAzonositoData {
|
|
918
1025
|
readonly value: string;
|
|
@@ -925,6 +1032,8 @@ export interface HuAdoszamOptions extends RequestOptions {
|
|
|
925
1032
|
readonly format?: 'national' | 'vat';
|
|
926
1033
|
readonly invalid?: boolean;
|
|
927
1034
|
readonly edge?: boolean;
|
|
1035
|
+
/** 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. */
|
|
1036
|
+
readonly extreme?: boolean;
|
|
928
1037
|
}
|
|
929
1038
|
export interface HuAdoszamData {
|
|
930
1039
|
readonly value: string;
|
|
@@ -932,6 +1041,8 @@ export interface HuAdoszamData {
|
|
|
932
1041
|
}
|
|
933
1042
|
export interface HuCegjegyzekszamOptions extends RequestOptions {
|
|
934
1043
|
readonly edge?: boolean;
|
|
1044
|
+
/** 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. */
|
|
1045
|
+
readonly extreme?: boolean;
|
|
935
1046
|
}
|
|
936
1047
|
export interface HuCegjegyzekszamData {
|
|
937
1048
|
readonly value: string;
|
|
@@ -944,6 +1055,8 @@ export interface IePpsnOptions extends RequestOptions {
|
|
|
944
1055
|
readonly standard?: 'pre-2013' | 'modern' | 'both';
|
|
945
1056
|
readonly invalid?: boolean;
|
|
946
1057
|
readonly edge?: boolean;
|
|
1058
|
+
/** 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. */
|
|
1059
|
+
readonly extreme?: boolean;
|
|
947
1060
|
}
|
|
948
1061
|
export interface IePpsnData {
|
|
949
1062
|
readonly value: string;
|
|
@@ -956,6 +1069,8 @@ export interface IeVatOptions extends RequestOptions {
|
|
|
956
1069
|
readonly standard?: 'pre-2013' | 'modern' | 'both';
|
|
957
1070
|
readonly invalid?: boolean;
|
|
958
1071
|
readonly edge?: boolean;
|
|
1072
|
+
/** 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. */
|
|
1073
|
+
readonly extreme?: boolean;
|
|
959
1074
|
}
|
|
960
1075
|
export interface IeVatData {
|
|
961
1076
|
readonly value: string;
|
|
@@ -963,6 +1078,8 @@ export interface IeVatData {
|
|
|
963
1078
|
}
|
|
964
1079
|
export interface IeCroOptions extends RequestOptions {
|
|
965
1080
|
readonly edge?: boolean;
|
|
1081
|
+
/** 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. */
|
|
1082
|
+
readonly extreme?: boolean;
|
|
966
1083
|
}
|
|
967
1084
|
export interface IeCroData {
|
|
968
1085
|
readonly value: string;
|
|
@@ -980,6 +1097,8 @@ export interface ItCodiceFiscaleOptions extends RequestOptions {
|
|
|
980
1097
|
readonly name?: string;
|
|
981
1098
|
readonly invalid?: boolean;
|
|
982
1099
|
readonly edge?: boolean;
|
|
1100
|
+
/** 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. */
|
|
1101
|
+
readonly extreme?: boolean;
|
|
983
1102
|
}
|
|
984
1103
|
export interface ItCodiceFiscaleData {
|
|
985
1104
|
readonly value: string;
|
|
@@ -992,6 +1111,8 @@ export interface ItPartitaIvaOptions extends RequestOptions {
|
|
|
992
1111
|
readonly format?: 'national' | 'vat';
|
|
993
1112
|
readonly invalid?: boolean;
|
|
994
1113
|
readonly edge?: boolean;
|
|
1114
|
+
/** 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. */
|
|
1115
|
+
readonly extreme?: boolean;
|
|
995
1116
|
}
|
|
996
1117
|
export interface ItPartitaIvaData {
|
|
997
1118
|
readonly value: string;
|
|
@@ -1008,6 +1129,8 @@ export interface LvPersonasKodsOptions extends RequestOptions {
|
|
|
1008
1129
|
readonly format?: 'plain' | 'with-hyphen';
|
|
1009
1130
|
readonly invalid?: boolean;
|
|
1010
1131
|
readonly edge?: boolean;
|
|
1132
|
+
/** 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. */
|
|
1133
|
+
readonly extreme?: boolean;
|
|
1011
1134
|
}
|
|
1012
1135
|
export interface LvPersonasKodsData {
|
|
1013
1136
|
readonly value: string;
|
|
@@ -1018,6 +1141,8 @@ export interface LvRegistracijasNumursOptions extends RequestOptions {
|
|
|
1018
1141
|
readonly format?: 'national' | 'vat';
|
|
1019
1142
|
readonly invalid?: boolean;
|
|
1020
1143
|
readonly edge?: boolean;
|
|
1144
|
+
/** 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. */
|
|
1145
|
+
readonly extreme?: boolean;
|
|
1021
1146
|
}
|
|
1022
1147
|
export interface LvRegistracijasNumursData {
|
|
1023
1148
|
readonly value: string;
|
|
@@ -1033,6 +1158,8 @@ export interface LtAsmensKodasOptions extends RequestOptions {
|
|
|
1033
1158
|
readonly bornAfter?: string;
|
|
1034
1159
|
readonly invalid?: boolean;
|
|
1035
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;
|
|
1036
1163
|
}
|
|
1037
1164
|
export interface LtAsmensKodasData {
|
|
1038
1165
|
readonly value: string;
|
|
@@ -1043,6 +1170,8 @@ export interface LtAsmensKodasData {
|
|
|
1043
1170
|
export interface LtImonesKodasOptions extends RequestOptions {
|
|
1044
1171
|
readonly invalid?: boolean;
|
|
1045
1172
|
readonly edge?: boolean;
|
|
1173
|
+
/** 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. */
|
|
1174
|
+
readonly extreme?: boolean;
|
|
1046
1175
|
}
|
|
1047
1176
|
export interface LtImonesKodasData {
|
|
1048
1177
|
readonly value: string;
|
|
@@ -1052,6 +1181,8 @@ export interface LtPvmOptions extends RequestOptions {
|
|
|
1052
1181
|
readonly format?: 'national' | 'vat';
|
|
1053
1182
|
readonly invalid?: boolean;
|
|
1054
1183
|
readonly edge?: boolean;
|
|
1184
|
+
/** 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. */
|
|
1185
|
+
readonly extreme?: boolean;
|
|
1055
1186
|
}
|
|
1056
1187
|
export interface LtPvmData {
|
|
1057
1188
|
readonly value: string;
|
|
@@ -1066,6 +1197,8 @@ export interface LuMatriculeOptions extends RequestOptions {
|
|
|
1066
1197
|
readonly bornAfter?: string;
|
|
1067
1198
|
readonly invalid?: boolean;
|
|
1068
1199
|
readonly edge?: boolean;
|
|
1200
|
+
/** 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. */
|
|
1201
|
+
readonly extreme?: boolean;
|
|
1069
1202
|
}
|
|
1070
1203
|
export interface LuMatriculeData {
|
|
1071
1204
|
readonly value: string;
|
|
@@ -1076,6 +1209,8 @@ export interface LuTvaOptions extends RequestOptions {
|
|
|
1076
1209
|
readonly format?: 'national' | 'vat';
|
|
1077
1210
|
readonly invalid?: boolean;
|
|
1078
1211
|
readonly edge?: boolean;
|
|
1212
|
+
/** 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. */
|
|
1213
|
+
readonly extreme?: boolean;
|
|
1079
1214
|
}
|
|
1080
1215
|
export interface LuTvaData {
|
|
1081
1216
|
readonly value: string;
|
|
@@ -1084,6 +1219,8 @@ export interface LuTvaData {
|
|
|
1084
1219
|
export interface MtIdCardOptions extends RequestOptions {
|
|
1085
1220
|
readonly category?: 'M' | 'G' | 'A' | 'P' | 'L' | 'H' | 'B' | 'Z';
|
|
1086
1221
|
readonly edge?: boolean;
|
|
1222
|
+
/** 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. */
|
|
1223
|
+
readonly extreme?: boolean;
|
|
1087
1224
|
}
|
|
1088
1225
|
export interface MtIdCardData {
|
|
1089
1226
|
readonly value: string;
|
|
@@ -1094,6 +1231,8 @@ export interface MtVatOptions extends RequestOptions {
|
|
|
1094
1231
|
readonly format?: 'national' | 'vat';
|
|
1095
1232
|
readonly invalid?: boolean;
|
|
1096
1233
|
readonly edge?: boolean;
|
|
1234
|
+
/** 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. */
|
|
1235
|
+
readonly extreme?: boolean;
|
|
1097
1236
|
}
|
|
1098
1237
|
export interface MtVatData {
|
|
1099
1238
|
readonly value: string;
|
|
@@ -1102,6 +1241,8 @@ export interface MtVatData {
|
|
|
1102
1241
|
export interface NlBsnOptions extends RequestOptions {
|
|
1103
1242
|
readonly invalid?: boolean;
|
|
1104
1243
|
readonly edge?: boolean;
|
|
1244
|
+
/** 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. */
|
|
1245
|
+
readonly extreme?: boolean;
|
|
1105
1246
|
}
|
|
1106
1247
|
export interface NlBsnData {
|
|
1107
1248
|
readonly value: string;
|
|
@@ -1110,6 +1251,8 @@ export interface NlBsnData {
|
|
|
1110
1251
|
export interface NlPersonOptions extends PersonConstraintOptions {
|
|
1111
1252
|
/** Bias the BSN and name shape toward their rare corners. */
|
|
1112
1253
|
readonly edge?: boolean;
|
|
1254
|
+
/** 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. */
|
|
1255
|
+
readonly extreme?: boolean;
|
|
1113
1256
|
/** Mangle the casing of `name`/`surname` for testing. Defaults to `true`. */
|
|
1114
1257
|
readonly caseStrict?: boolean;
|
|
1115
1258
|
}
|
|
@@ -1129,6 +1272,8 @@ export interface NlPersonData {
|
|
|
1129
1272
|
export interface FullPersonOptions extends PersonConstraintOptions {
|
|
1130
1273
|
/** Bias the number and name shape toward their rarely-exercised corners. */
|
|
1131
1274
|
readonly edge?: boolean;
|
|
1275
|
+
/** 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. */
|
|
1276
|
+
readonly extreme?: boolean;
|
|
1132
1277
|
/** Mangle the casing of `name`/`surname` for testing. Defaults to `true`. */
|
|
1133
1278
|
readonly caseStrict?: boolean;
|
|
1134
1279
|
}
|
|
@@ -1327,6 +1472,8 @@ export interface LvPersonData {
|
|
|
1327
1472
|
export interface NlRsinOptions extends RequestOptions {
|
|
1328
1473
|
readonly invalid?: boolean;
|
|
1329
1474
|
readonly edge?: boolean;
|
|
1475
|
+
/** 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. */
|
|
1476
|
+
readonly extreme?: boolean;
|
|
1330
1477
|
}
|
|
1331
1478
|
export interface NlRsinData {
|
|
1332
1479
|
readonly value: string;
|
|
@@ -1336,6 +1483,8 @@ export interface NlBtwIdOptions extends RequestOptions {
|
|
|
1336
1483
|
readonly standard?: 'legacy' | 'modern' | 'both';
|
|
1337
1484
|
readonly invalid?: boolean;
|
|
1338
1485
|
readonly edge?: boolean;
|
|
1486
|
+
/** 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. */
|
|
1487
|
+
readonly extreme?: boolean;
|
|
1339
1488
|
}
|
|
1340
1489
|
export interface NlBtwIdData {
|
|
1341
1490
|
readonly value: string;
|
|
@@ -1344,6 +1493,8 @@ export interface NlBtwIdData {
|
|
|
1344
1493
|
}
|
|
1345
1494
|
export interface NlKvkOptions extends RequestOptions {
|
|
1346
1495
|
readonly edge?: boolean;
|
|
1496
|
+
/** 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. */
|
|
1497
|
+
readonly extreme?: boolean;
|
|
1347
1498
|
}
|
|
1348
1499
|
export interface NlKvkData {
|
|
1349
1500
|
readonly value: string;
|
|
@@ -1354,6 +1505,8 @@ export interface PtNifOptions extends RequestOptions {
|
|
|
1354
1505
|
readonly format?: 'national' | 'vat';
|
|
1355
1506
|
readonly invalid?: boolean;
|
|
1356
1507
|
readonly edge?: boolean;
|
|
1508
|
+
/** 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. */
|
|
1509
|
+
readonly extreme?: boolean;
|
|
1357
1510
|
}
|
|
1358
1511
|
export interface PtNifData {
|
|
1359
1512
|
readonly value: string;
|
|
@@ -1363,6 +1516,8 @@ export interface PtNifData {
|
|
|
1363
1516
|
export interface PtCartaoCidadaoOptions extends RequestOptions {
|
|
1364
1517
|
readonly invalid?: boolean;
|
|
1365
1518
|
readonly edge?: boolean;
|
|
1519
|
+
/** 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. */
|
|
1520
|
+
readonly extreme?: boolean;
|
|
1366
1521
|
}
|
|
1367
1522
|
export interface PtCartaoCidadaoData {
|
|
1368
1523
|
readonly value: string;
|
|
@@ -1379,6 +1534,8 @@ export interface RoCnpOptions extends RequestOptions {
|
|
|
1379
1534
|
readonly bornAfter?: string;
|
|
1380
1535
|
readonly invalid?: boolean;
|
|
1381
1536
|
readonly edge?: boolean;
|
|
1537
|
+
/** 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. */
|
|
1538
|
+
readonly extreme?: boolean;
|
|
1382
1539
|
}
|
|
1383
1540
|
export interface RoCnpData {
|
|
1384
1541
|
readonly value: string;
|
|
@@ -1391,6 +1548,8 @@ export interface RoCuiOptions extends RequestOptions {
|
|
|
1391
1548
|
readonly format?: 'national' | 'vat';
|
|
1392
1549
|
readonly invalid?: boolean;
|
|
1393
1550
|
readonly edge?: boolean;
|
|
1551
|
+
/** 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. */
|
|
1552
|
+
readonly extreme?: boolean;
|
|
1394
1553
|
}
|
|
1395
1554
|
export interface RoCuiData {
|
|
1396
1555
|
readonly value: string;
|
|
@@ -1407,6 +1566,8 @@ export interface SkRodneCisloOptions extends RequestOptions {
|
|
|
1407
1566
|
readonly format?: 'plain' | 'with-slash';
|
|
1408
1567
|
readonly invalid?: boolean;
|
|
1409
1568
|
readonly edge?: boolean;
|
|
1569
|
+
/** 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. */
|
|
1570
|
+
readonly extreme?: boolean;
|
|
1410
1571
|
}
|
|
1411
1572
|
export interface SkRodneCisloData {
|
|
1412
1573
|
readonly value: string;
|
|
@@ -1417,6 +1578,8 @@ export interface SkRodneCisloData {
|
|
|
1417
1578
|
export interface SkIcoOptions extends RequestOptions {
|
|
1418
1579
|
readonly invalid?: boolean;
|
|
1419
1580
|
readonly edge?: boolean;
|
|
1581
|
+
/** 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. */
|
|
1582
|
+
readonly extreme?: boolean;
|
|
1420
1583
|
}
|
|
1421
1584
|
export interface SkIcoData {
|
|
1422
1585
|
readonly value: string;
|
|
@@ -1426,6 +1589,8 @@ export interface SkIcDphOptions extends RequestOptions {
|
|
|
1426
1589
|
readonly format?: 'national' | 'vat';
|
|
1427
1590
|
readonly invalid?: boolean;
|
|
1428
1591
|
readonly edge?: boolean;
|
|
1592
|
+
/** 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. */
|
|
1593
|
+
readonly extreme?: boolean;
|
|
1429
1594
|
}
|
|
1430
1595
|
export interface SkIcDphData {
|
|
1431
1596
|
readonly value: string;
|
|
@@ -1441,6 +1606,8 @@ export interface SiEmsoOptions extends RequestOptions {
|
|
|
1441
1606
|
readonly bornAfter?: string;
|
|
1442
1607
|
readonly invalid?: boolean;
|
|
1443
1608
|
readonly edge?: boolean;
|
|
1609
|
+
/** 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. */
|
|
1610
|
+
readonly extreme?: boolean;
|
|
1444
1611
|
}
|
|
1445
1612
|
export interface SiEmsoData {
|
|
1446
1613
|
readonly value: string;
|
|
@@ -1452,6 +1619,8 @@ export interface SiDavcnaStevilkaOptions extends RequestOptions {
|
|
|
1452
1619
|
readonly format?: 'national' | 'vat';
|
|
1453
1620
|
readonly invalid?: boolean;
|
|
1454
1621
|
readonly edge?: boolean;
|
|
1622
|
+
/** 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. */
|
|
1623
|
+
readonly extreme?: boolean;
|
|
1455
1624
|
}
|
|
1456
1625
|
export interface SiDavcnaStevilkaData {
|
|
1457
1626
|
readonly value: string;
|
|
@@ -1460,6 +1629,8 @@ export interface SiDavcnaStevilkaData {
|
|
|
1460
1629
|
export interface EsDniOptions extends RequestOptions {
|
|
1461
1630
|
readonly invalid?: boolean;
|
|
1462
1631
|
readonly edge?: boolean;
|
|
1632
|
+
/** 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. */
|
|
1633
|
+
readonly extreme?: boolean;
|
|
1463
1634
|
}
|
|
1464
1635
|
export interface EsDniData {
|
|
1465
1636
|
readonly value: string;
|
|
@@ -1469,6 +1640,8 @@ export interface EsDniData {
|
|
|
1469
1640
|
export interface EsNieOptions extends RequestOptions {
|
|
1470
1641
|
readonly invalid?: boolean;
|
|
1471
1642
|
readonly edge?: boolean;
|
|
1643
|
+
/** 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. */
|
|
1644
|
+
readonly extreme?: boolean;
|
|
1472
1645
|
}
|
|
1473
1646
|
export interface EsNieData {
|
|
1474
1647
|
readonly value: string;
|
|
@@ -1480,6 +1653,8 @@ export interface EsCifOptions extends RequestOptions {
|
|
|
1480
1653
|
readonly format?: 'national' | 'vat';
|
|
1481
1654
|
readonly invalid?: boolean;
|
|
1482
1655
|
readonly edge?: boolean;
|
|
1656
|
+
/** 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. */
|
|
1657
|
+
readonly extreme?: boolean;
|
|
1483
1658
|
}
|
|
1484
1659
|
export interface EsCifData {
|
|
1485
1660
|
readonly value: string;
|
|
@@ -1497,6 +1672,8 @@ export interface SePersonnummerOptions extends RequestOptions {
|
|
|
1497
1672
|
readonly kind?: 'personnummer' | 'samordningsnummer';
|
|
1498
1673
|
readonly invalid?: boolean;
|
|
1499
1674
|
readonly edge?: boolean;
|
|
1675
|
+
/** 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. */
|
|
1676
|
+
readonly extreme?: boolean;
|
|
1500
1677
|
}
|
|
1501
1678
|
export interface SePersonnummerData {
|
|
1502
1679
|
readonly value: string;
|
|
@@ -1508,6 +1685,8 @@ export interface SeOrganisationsnummerOptions extends RequestOptions {
|
|
|
1508
1685
|
readonly format?: 'national' | 'vat';
|
|
1509
1686
|
readonly invalid?: boolean;
|
|
1510
1687
|
readonly edge?: boolean;
|
|
1688
|
+
/** 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. */
|
|
1689
|
+
readonly extreme?: boolean;
|
|
1511
1690
|
}
|
|
1512
1691
|
export interface SeOrganisationsnummerData {
|
|
1513
1692
|
readonly value: string;
|