struct-fakerator 2.9.9 → 3.0.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.
Files changed (60) hide show
  1. package/dist/{type.d.ts → types/type.d.ts} +10 -1
  2. package/dist/types/utils/airline.d.ts +31 -0
  3. package/dist/{utils → types/utils}/animal.d.ts +2 -0
  4. package/dist/types/utils/book.d.ts +12 -0
  5. package/dist/{utils → types/utils}/color.d.ts +9 -9
  6. package/dist/{utils → types/utils}/finance.d.ts +7 -9
  7. package/dist/{utils → types/utils}/image.d.ts +0 -11
  8. package/dist/{utils → types/utils}/index.d.ts +2 -0
  9. package/dist/{utils → types/utils}/internet.d.ts +9 -7
  10. package/dist/{utils → types/utils}/location.d.ts +29 -16
  11. package/dist/{utils → types/utils}/number.d.ts +5 -0
  12. package/dist/{utils → types/utils}/person.d.ts +1 -1
  13. package/dist/{utils → types/utils}/science.d.ts +2 -2
  14. package/dist/{utils → types/utils}/string.d.ts +4 -0
  15. package/dist/utils/airline.cjs +18 -2
  16. package/dist/utils/airline.js +5 -1
  17. package/dist/utils/animal.cjs +4 -0
  18. package/dist/utils/animal.js +2 -1
  19. package/dist/utils/book.cjs +58 -0
  20. package/dist/utils/book.js +9 -0
  21. package/dist/utils/finance.cjs +9 -5
  22. package/dist/utils/finance.js +3 -2
  23. package/dist/utils/image.cjs +5 -13
  24. package/dist/utils/image.js +1 -3
  25. package/dist/utils/index.cjs +7 -0
  26. package/dist/utils/index.js +3 -1
  27. package/dist/utils/internet.cjs +9 -5
  28. package/dist/utils/internet.js +3 -2
  29. package/dist/utils/location.cjs +15 -3
  30. package/dist/utils/location.js +4 -1
  31. package/dist/utils/number.cjs +5 -1
  32. package/dist/utils/number.js +2 -1
  33. package/dist/utils/string.cjs +4 -0
  34. package/dist/utils/string.js +2 -1
  35. package/package.json +12 -11
  36. package/dist/utils/airline.d.ts +0 -14
  37. /package/dist/{config.d.ts → types/config.d.ts} +0 -0
  38. /package/dist/{config_scheme.d.ts → types/config_scheme.d.ts} +0 -0
  39. /package/dist/{create_config.d.ts → types/create_config.d.ts} +0 -0
  40. /package/dist/{create_config.test.d.ts → types/create_config.test.d.ts} +0 -0
  41. /package/dist/{create_generator_fn.d.ts → types/create_generator_fn.d.ts} +0 -0
  42. /package/dist/{create_generator_fn.test.d.ts → types/create_generator_fn.test.d.ts} +0 -0
  43. /package/dist/{generator_fn.d.ts → types/generator_fn.d.ts} +0 -0
  44. /package/dist/{index.d.ts → types/index.d.ts} +0 -0
  45. /package/dist/{utils → types/utils}/commerce.d.ts +0 -0
  46. /package/dist/{utils → types/utils}/common.d.ts +0 -0
  47. /package/dist/{utils → types/utils}/company.d.ts +0 -0
  48. /package/dist/{utils → types/utils}/database.d.ts +0 -0
  49. /package/dist/{utils → types/utils}/datatype.d.ts +0 -0
  50. /package/dist/{utils → types/utils}/datetime.d.ts +0 -0
  51. /package/dist/{utils → types/utils}/food.d.ts +0 -0
  52. /package/dist/{utils → types/utils}/git.d.ts +0 -0
  53. /package/dist/{utils → types/utils}/hacker.d.ts +0 -0
  54. /package/dist/{utils → types/utils}/lorem.d.ts +0 -0
  55. /package/dist/{utils → types/utils}/music.d.ts +0 -0
  56. /package/dist/{utils → types/utils}/phone.d.ts +0 -0
  57. /package/dist/{utils → types/utils}/system.d.ts +0 -0
  58. /package/dist/{utils → types/utils}/utils.d.ts +0 -0
  59. /package/dist/{utils → types/utils}/vehicle.d.ts +0 -0
  60. /package/dist/{utils → types/utils}/word.d.ts +0 -0
@@ -37,7 +37,16 @@ export type TupleConfig<A, B = undefined, C = undefined, D = undefined, E = unde
37
37
  };
38
38
  export type Result<T> = T extends ValueConfig<infer U> ? U : T extends SelectionConfig<infer S> ? S : T extends BoundedSeriesConfig ? number[] : T extends ArrayConfig<infer W> ? Array<Result<W>> : T extends ObjectConfigWithFn<infer _, infer R> ? R : T extends ObjectConfig<infer O> ? {
39
39
  [K in keyof O]: Result<O[K]>;
40
- } : T extends TupleConfig<infer A, infer B, infer C, infer D, infer E, infer F, infer G, infer H, infer I, infer J> ? J extends undefined ? I extends undefined ? H extends undefined ? G extends undefined ? F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? B extends undefined ? [Result<A>] : [Result<A>, Result<B>] : [Result<A>, Result<B>, Result<C>] : [Result<A>, Result<B>, Result<C>, Result<D>] : [
40
+ } : T extends TupleConfig<infer A, infer B, infer C, infer D, infer E, infer F, infer G, infer H, infer I, infer J> ? J extends undefined ? I extends undefined ? H extends undefined ? G extends undefined ? F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? B extends undefined ? [Result<A>] : [Result<A>, Result<B>] : [
41
+ Result<A>,
42
+ Result<B>,
43
+ Result<C>
44
+ ] : [
45
+ Result<A>,
46
+ Result<B>,
47
+ Result<C>,
48
+ Result<D>
49
+ ] : [
41
50
  Result<A>,
42
51
  Result<B>,
43
52
  Result<C>,
@@ -0,0 +1,31 @@
1
+ import { faker } from "@faker-js/faker";
2
+ import type { ValueConfig } from "../type";
3
+ /** Airline [aircraftType](https://fakerjs.dev/api/airline.html#aircraftType) */
4
+ export declare const aircraftType: () => ValueConfig<"narrowbody" | "regional" | "widebody">;
5
+ type Airline = ReturnType<typeof faker.airline.airline>;
6
+ /** Airline [airline](https://fakerjs.dev/api/airline.html#airline) */
7
+ export declare const airline: () => ValueConfig<Airline>;
8
+ type Airplane = ReturnType<typeof faker.airline.airplane>;
9
+ /** Airline [airplane](https://fakerjs.dev/api/airline.html#airplane) */
10
+ export declare const airplane: () => ValueConfig<Airplane>;
11
+ type Airport = ReturnType<typeof faker.airline.airport>;
12
+ /** Airline [airport](https://fakerjs.dev/api/airline.html#airport) */
13
+ export declare const airport: () => ValueConfig<Airport>;
14
+ /** Airline [flightNumber](https://fakerjs.dev/api/airline.html#flightNumber) */
15
+ export declare const flightNumber: (options?: {
16
+ length?: number | {
17
+ min: number;
18
+ max: number;
19
+ };
20
+ addLeadingZeros?: boolean;
21
+ }) => ValueConfig<string>;
22
+ /** Airline [recordLocator](https://fakerjs.dev/api/airline.html#recordLocator) */
23
+ export declare const recordLocator: (options?: {
24
+ allowNumerics?: boolean;
25
+ allowVisuallySimilarCharacters?: boolean;
26
+ }) => ValueConfig<string>;
27
+ /** Airline [seat](https://fakerjs.dev/api/airline.html#seat) */
28
+ export declare const seat: (options?: {
29
+ aircraftType?: import("@faker-js/faker").AircraftType;
30
+ }) => ValueConfig<string>;
31
+ export {};
@@ -20,6 +20,8 @@ export declare const horse: () => import("..").ValueConfig<string>;
20
20
  export declare const insect: () => import("..").ValueConfig<string>;
21
21
  /** Animal [lion](https://fakerjs.dev/api/animal.html#lion) */
22
22
  export declare const lion: () => import("..").ValueConfig<string>;
23
+ /** Animal [petName](https://fakerjs.dev/api/animal.html#petName) */
24
+ export declare const petName: () => import("..").ValueConfig<string>;
23
25
  /** Animal [rabbit](https://fakerjs.dev/api/animal.html#rabbit) */
24
26
  export declare const rabbit: () => import("..").ValueConfig<string>;
25
27
  /** Animal [rodent](https://fakerjs.dev/api/animal.html#rodent) */
@@ -0,0 +1,12 @@
1
+ /** Book [author](https://fakerjs.dev/api/book.html#author) */
2
+ export declare const author: () => import("..").ValueConfig<string>;
3
+ /** Book [format](https://fakerjs.dev/api/book.html#format) */
4
+ export declare const format: () => import("..").ValueConfig<string>;
5
+ /** Book [genre](https://fakerjs.dev/api/book.html#genre) */
6
+ export declare const genre: () => import("..").ValueConfig<string>;
7
+ /** Book [publisher](https://fakerjs.dev/api/book.html#publisher) */
8
+ export declare const publisher: () => import("..").ValueConfig<string>;
9
+ /** Book [series](https://fakerjs.dev/api/book.html#series) */
10
+ export declare const series: () => import("..").ValueConfig<string>;
11
+ /** Book [title](https://fakerjs.dev/api/book.html#title) */
12
+ export declare const title: () => import("..").ValueConfig<string>;
@@ -1,11 +1,11 @@
1
1
  /** Color [cmyk](https://fakerjs.dev/api/color.html#cmyk) */
2
2
  export declare const cmyk: (options?: {
3
- format?: import("@faker-js/faker/.").ColorFormat;
3
+ format?: import("@faker-js/faker").ColorFormat;
4
4
  }) => import("..").ValueConfig<string | number[]>;
5
5
  /** Color [colorByCSSColorSpace](https://fakerjs.dev/api/color.html#colorByCSSColorSpace) */
6
6
  export declare const colorByCSSColorSpace: (options?: {
7
- format?: import("@faker-js/faker/.").ColorFormat;
8
- space?: import("@faker-js/faker/.").CssSpaceType;
7
+ format?: import("@faker-js/faker").ColorFormat;
8
+ space?: import("@faker-js/faker").CssSpaceType;
9
9
  }) => import("..").ValueConfig<string | number[]>;
10
10
  /** Color [cssSupportedFunction](https://fakerjs.dev/api/color.html#cssSupportedFunction) */
11
11
  export declare const cssSupportedFunction: () => import("..").ValueConfig<"rgb" | "rgba" | "hsl" | "hsla" | "hwb" | "cmyk" | "lab" | "lch" | "color">;
@@ -13,28 +13,28 @@ export declare const cssSupportedFunction: () => import("..").ValueConfig<"rgb"
13
13
  export declare const cssSupportedSpace: () => import("..").ValueConfig<"sRGB" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb">;
14
14
  /** Color [hsl](https://fakerjs.dev/api/color.html#hsl) */
15
15
  export declare const hsl: (options?: {
16
- format?: import("@faker-js/faker/.").ColorFormat;
16
+ format?: import("@faker-js/faker").ColorFormat;
17
17
  includeAlpha?: boolean;
18
18
  }) => import("..").ValueConfig<string | number[]>;
19
19
  /** Color [human](https://fakerjs.dev/api/color.html#human) */
20
20
  export declare const human: () => import("..").ValueConfig<string>;
21
21
  /** Color [hwb](https://fakerjs.dev/api/color.html#hwb) */
22
22
  export declare const hwb: (options?: {
23
- format?: import("@faker-js/faker/.").ColorFormat;
23
+ format?: import("@faker-js/faker").ColorFormat;
24
24
  }) => import("..").ValueConfig<string | number[]>;
25
25
  /** Color [lab](https://fakerjs.dev/api/color.html#lab) */
26
26
  export declare const lab: (options?: {
27
- format?: import("@faker-js/faker/.").ColorFormat;
27
+ format?: import("@faker-js/faker").ColorFormat;
28
28
  }) => import("..").ValueConfig<string | number[]>;
29
29
  /** Color [lch](https://fakerjs.dev/api/color.html#lch) */
30
30
  export declare const lch: (options?: {
31
- format?: import("@faker-js/faker/.").ColorFormat;
31
+ format?: import("@faker-js/faker").ColorFormat;
32
32
  }) => import("..").ValueConfig<string | number[]>;
33
33
  /** Color [rgb](https://fakerjs.dev/api/color.html#rgb) */
34
34
  export declare const rgb: (options?: {
35
35
  prefix?: string;
36
- casing?: import("@faker-js/faker/.").Casing;
37
- format?: "hex" | import("@faker-js/faker/.").ColorFormat;
36
+ casing?: import("@faker-js/faker").Casing;
37
+ format?: "hex" | import("@faker-js/faker").ColorFormat;
38
38
  includeAlpha?: boolean;
39
39
  }) => import("..").ValueConfig<string | number[]>;
40
40
  /** Color [space](https://fakerjs.dev/api/color.html#space) */
@@ -18,8 +18,8 @@ export declare const bic: (options?: {
18
18
  }) => import("..").ValueConfig<string>;
19
19
  /** Finance [bitcoinAddress](https://fakerjs.dev/api/finance.html#bitcoinAddress) */
20
20
  export declare const bitcoinAddress: (options?: {
21
- type?: import("@faker-js/faker/.").BitcoinAddressFamilyType;
22
- network?: import("@faker-js/faker/.").BitcoinNetworkType;
21
+ type?: import("@faker-js/faker").BitcoinAddressFamilyType;
22
+ network?: import("@faker-js/faker").BitcoinNetworkType;
23
23
  }) => import("..").ValueConfig<string>;
24
24
  /** Finance [creditCardCVV](https://fakerjs.dev/api/finance.html#creditCardCVV) */
25
25
  export declare const creditCardCVV: () => import("..").ValueConfig<string>;
@@ -30,9 +30,13 @@ export declare const creditCardNumber: (options?: string | {
30
30
  issuer?: string;
31
31
  }) => import("..").ValueConfig<string>;
32
32
  /** Finance [currency](https://fakerjs.dev/api/finance.html#currency) */
33
- export declare const currency: () => import("..").ValueConfig<import("@faker-js/faker/.").Currency>;
33
+ export declare const currency: () => import("..").ValueConfig<import("@faker-js/faker").Currency>;
34
34
  /** Finance [currencyCode](https://fakerjs.dev/api/finance.html#currencyCode) */
35
35
  export declare const currencyCode: () => import("..").ValueConfig<string>;
36
+ /** Finance [currencyName](https://fakerjs.dev/api/finance.html#currencyName) */
37
+ export declare const currencyName: () => import("..").ValueConfig<string>;
38
+ /** Finance [currencyNumericCode](https://fakerjs.dev/api/finance.html#currencyNumericCode) */
39
+ export declare const currencyNumericCode: () => import("..").ValueConfig<string>;
36
40
  /** Finance [currencySymbol](https://fakerjs.dev/api/finance.html#currencySymbol) */
37
41
  export declare const currencySymbol: () => import("..").ValueConfig<string>;
38
42
  /** Finance [ethereumAddress](https://fakerjs.dev/api/finance.html#ethereumAddress) */
@@ -44,12 +48,6 @@ export declare const iban: (options?: {
44
48
  }) => import("..").ValueConfig<string>;
45
49
  /** Finance [litecoinAddress](https://fakerjs.dev/api/finance.html#litecoinAddress) */
46
50
  export declare const litecoinAddress: () => import("..").ValueConfig<string>;
47
- /** Finance [maskedNumber](https://fakerjs.dev/api/finance.html#maskedNumber) */
48
- export declare const maskedNumber: (optionsOrLength?: number | {
49
- length?: number;
50
- parens?: boolean;
51
- ellipsis?: boolean;
52
- }) => import("..").ValueConfig<string>;
53
51
  /** Finance [pin](https://fakerjs.dev/api/finance.html#pin) */
54
52
  export declare const pin: (options?: number | {
55
53
  length?: number;
@@ -2,8 +2,6 @@
2
2
  export declare const avatar: () => import("..").ValueConfig<string>;
3
3
  /** Image [avatarGitHub](https://fakerjs.dev/api/image.html#avatarGitHub) */
4
4
  export declare const avatarGitHub: () => import("..").ValueConfig<string>;
5
- /** Image [avatarLegacy](https://fakerjs.dev/api/image.html#avatarLegacy) */
6
- export declare const avatarLegacy: () => import("..").ValueConfig<string>;
7
5
  /** Image [dataUri](https://fakerjs.dev/api/image.html#dataUri) */
8
6
  export declare const dataUri: (options?: {
9
7
  width?: number;
@@ -29,12 +27,3 @@ export declare const urlPicsumPhotos: (options?: {
29
27
  grayscale?: boolean;
30
28
  blur?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
31
29
  }) => import("..").ValueConfig<string>;
32
- /** Image [urlPlaceholder](https://fakerjs.dev/api/image.html#urlPlaceholder) */
33
- export declare const urlPlaceholder: (options?: {
34
- width?: number;
35
- height?: number;
36
- backgroundColor?: string;
37
- textColor?: string;
38
- format?: "gif" | "jpeg" | "jpg" | "png" | "webp";
39
- text?: string;
40
- }) => import("..").ValueConfig<string>;
@@ -1,5 +1,6 @@
1
1
  export * as Airline from "./airline";
2
2
  export * as Animal from "./animal";
3
+ export * as Book from "./book";
3
4
  export * as Color from "./color";
4
5
  export * as Commerce from "./commerce";
5
6
  export * as Common from "./common";
@@ -23,4 +24,5 @@ export * as Science from "./science";
23
24
  export * as String from "./string";
24
25
  export * as System from "./system";
25
26
  export * as utils from "./utils";
27
+ export { makeValueConfigFn } from "./utils";
26
28
  export * as Vehicle from "./vehicle";
@@ -1,9 +1,3 @@
1
- /** Internet [color](https://fakerjs.dev/api/internet.html#color) */
2
- export declare const color: (options?: {
3
- redBase?: number;
4
- greenBase?: number;
5
- blueBase?: number;
6
- }) => import("..").ValueConfig<string>;
7
1
  /** Internet [displayName](https://fakerjs.dev/api/internet.html#displayName) */
8
2
  export declare const displayName: (options?: {
9
3
  firstName?: string;
@@ -44,10 +38,18 @@ export declare const ip: () => import("..").ValueConfig<string>;
44
38
  export declare const ipv4: (options?: {
45
39
  cidrBlock?: string;
46
40
  } | {
47
- network?: import("@faker-js/faker/.").IPv4NetworkType;
41
+ network?: import("@faker-js/faker").IPv4NetworkType;
48
42
  }) => import("..").ValueConfig<string>;
49
43
  /** Internet [ipv6](https://fakerjs.dev/api/internet.html#ipv6) */
50
44
  export declare const ipv6: () => import("..").ValueConfig<string>;
45
+ /** Internet [jwt](https://fakerjs.dev/api/internet.html#jwt) */
46
+ export declare const jwt: (options?: {
47
+ header?: Record<string, unknown>;
48
+ payload?: Record<string, unknown>;
49
+ refDate?: string | Date | number;
50
+ }) => import("..").ValueConfig<string>;
51
+ /** Internet [jwtAlgorithm](https://fakerjs.dev/api/internet.html#jwtAlgorithm) */
52
+ export declare const jwtAlgorithm: () => import("..").ValueConfig<string>;
51
53
  /** Internet [mac](https://fakerjs.dev/api/internet.html#mac) */
52
54
  export declare const mac: (options?: string | {
53
55
  separator?: string;
@@ -1,56 +1,69 @@
1
+ import { faker } from "@faker-js/faker";
2
+ import type { ValueConfig } from "../type";
1
3
  /** Location [buildingNumber](https://fakerjs.dev/api/location.html#buildingNumber) */
2
- export declare const buildingNumber: () => import("..").ValueConfig<string>;
4
+ export declare const buildingNumber: () => ValueConfig<string>;
3
5
  /** Location [cardinalDirection](https://fakerjs.dev/api/location.html#cardinalDirection) */
4
6
  export declare const cardinalDirection: (options?: {
5
7
  abbreviated?: boolean;
6
- }) => import("..").ValueConfig<string>;
8
+ }) => ValueConfig<string>;
7
9
  /** Location [city](https://fakerjs.dev/api/location.html#city) */
8
- export declare const city: () => import("..").ValueConfig<string>;
10
+ export declare const city: () => ValueConfig<string>;
11
+ /** Location [continent](https://fakerjs.dev/api/location.html#continent) */
12
+ export declare const continent: () => ValueConfig<string>;
9
13
  /** Location [country](https://fakerjs.dev/api/location.html#country) */
10
- export declare const country: () => import("..").ValueConfig<string>;
14
+ export declare const country: () => ValueConfig<string>;
11
15
  /** Location [countryCode](https://fakerjs.dev/api/location.html#countryCode) */
12
16
  export declare const countryCode: (options?: "alpha-2" | "alpha-3" | "numeric" | {
13
17
  variant?: "alpha-2" | "alpha-3" | "numeric";
14
- }) => import("..").ValueConfig<string>;
18
+ }) => ValueConfig<string>;
15
19
  /** Location [county](https://fakerjs.dev/api/location.html#county) */
16
- export declare const county: () => import("..").ValueConfig<string>;
20
+ export declare const county: () => ValueConfig<string>;
17
21
  /** Location [direction](https://fakerjs.dev/api/location.html#direction) */
18
22
  export declare const direction: (options?: {
19
23
  abbreviated?: boolean;
20
- }) => import("..").ValueConfig<string>;
24
+ }) => ValueConfig<string>;
25
+ type Language = ReturnType<typeof faker.location.language>;
26
+ /** Location [language](https://fakerjs.dev/api/location.html#language) */
27
+ export declare const language: () => ValueConfig<Language>;
21
28
  /** Location [latitude](https://fakerjs.dev/api/location.html#latitude) */
22
29
  export declare const latitude: (options?: {
23
30
  max?: number;
24
31
  min?: number;
25
32
  precision?: number;
26
- }) => import("..").ValueConfig<number>;
33
+ }) => ValueConfig<number>;
27
34
  /** Location [longitude](https://fakerjs.dev/api/location.html#longitude) */
28
35
  export declare const longitude: (options?: {
29
36
  max?: number;
30
37
  min?: number;
31
38
  precision?: number;
32
- }) => import("..").ValueConfig<number>;
39
+ }) => ValueConfig<number>;
33
40
  /** Location [nearbyGPSCoordinate](https://fakerjs.dev/api/location.html#nearbyGPSCoordinate) */
34
41
  export declare const nearbyGPSCoordinate: (options?: {
35
42
  origin?: [latitude: number, longitude: number];
36
43
  radius?: number;
37
44
  isMetric?: boolean;
38
- }) => import("..").ValueConfig<[latitude: number, longitude: number]>;
45
+ }) => ValueConfig<[latitude: number, longitude: number]>;
39
46
  /** Location [ordinalDirection](https://fakerjs.dev/api/location.html#ordinalDirection) */
40
47
  export declare const ordinalDirection: (options?: {
41
48
  abbreviated?: boolean;
42
- }) => import("..").ValueConfig<string>;
49
+ }) => ValueConfig<string>;
43
50
  /** Location [secondaryAddress](https://fakerjs.dev/api/location.html#secondaryAddress) */
44
- export declare const secondaryAddress: () => import("..").ValueConfig<string>;
51
+ export declare const secondaryAddress: () => ValueConfig<string>;
45
52
  /** Location [state](https://fakerjs.dev/api/location.html#state) */
46
53
  export declare const state: (options?: {
47
54
  abbreviated?: boolean;
48
- }) => import("..").ValueConfig<string>;
55
+ }) => ValueConfig<string>;
49
56
  /** Location [street](https://fakerjs.dev/api/location.html#street) */
50
- export declare const street: () => import("..").ValueConfig<string>;
57
+ export declare const street: () => ValueConfig<string>;
51
58
  /** Location [streetAddress](https://fakerjs.dev/api/location.html#streetAddress) */
52
59
  export declare const streetAddress: (options?: boolean | {
53
60
  useFullAddress?: boolean;
54
- }) => import("..").ValueConfig<string>;
61
+ }) => ValueConfig<string>;
55
62
  /** Location [timeZone](https://fakerjs.dev/api/location.html#timeZone) */
56
- export declare const timeZone: () => import("..").ValueConfig<string>;
63
+ export declare const timeZone: () => ValueConfig<string>;
64
+ /** Location [zipCode](https://fakerjs.dev/api/location.html#zipCode) */
65
+ export declare const zipCode: (options?: string | {
66
+ state?: string;
67
+ format?: string;
68
+ }) => ValueConfig<string>;
69
+ export {};
@@ -32,3 +32,8 @@ export declare const octal: (options?: number | {
32
32
  min?: number;
33
33
  max?: number;
34
34
  }) => import("..").ValueConfig<string>;
35
+ /** Number [romanNumeral](https://fakerjs.dev/api/number.html#romanNumeral) */
36
+ export declare const romanNumeral: (options?: number | {
37
+ min?: number;
38
+ max?: number;
39
+ }) => import("..").ValueConfig<string>;
@@ -6,7 +6,7 @@ export declare const firstName: (sex?: "female" | "male") => import("..").ValueC
6
6
  export declare const fullName: (options?: {
7
7
  firstName?: string;
8
8
  lastName?: string;
9
- sex?: import("@faker-js/faker/.").SexType;
9
+ sex?: import("@faker-js/faker").SexType;
10
10
  }) => import("..").ValueConfig<string>;
11
11
  /** Person [gender](https://fakerjs.dev/api/person.html#gender) */
12
12
  export declare const gender: () => import("..").ValueConfig<string>;
@@ -1,4 +1,4 @@
1
1
  /** Science [chemicalElement](https://fakerjs.dev/api/science.html#chemicalElement) */
2
- export declare const chemicalElement: () => import("..").ValueConfig<import("@faker-js/faker/.").ChemicalElement>;
2
+ export declare const chemicalElement: () => import("..").ValueConfig<import("@faker-js/faker").ChemicalElement>;
3
3
  /** Science [unit](https://fakerjs.dev/api/science.html#unit) */
4
- export declare const unit: () => import("..").ValueConfig<import("@faker-js/faker/.").Unit>;
4
+ export declare const unit: () => import("..").ValueConfig<import("@faker-js/faker").Unit>;
@@ -65,5 +65,9 @@ export declare const symbol: (length?: number | {
65
65
  min: number;
66
66
  max: number;
67
67
  }) => import("..").ValueConfig<string>;
68
+ /** String [ulid](https://fakerjs.dev/api/string.html#ulid) */
69
+ export declare const ulid: (options?: {
70
+ refDate?: string | Date | number;
71
+ }) => import("..").ValueConfig<string>;
68
72
  /** String [uuid](https://fakerjs.dev/api/string.html#uuid) */
69
73
  export declare const uuid: () => import("..").ValueConfig<string>;
@@ -24,21 +24,37 @@ var __webpack_require__ = {};
24
24
  var __webpack_exports__ = {};
25
25
  __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
- seat: ()=>seat,
27
+ airport: ()=>airport,
28
+ recordLocator: ()=>recordLocator,
28
29
  flightNumber: ()=>flightNumber,
29
- aircraftType: ()=>aircraftType
30
+ aircraftType: ()=>aircraftType,
31
+ airline: ()=>airline,
32
+ seat: ()=>seat,
33
+ airplane: ()=>airplane
30
34
  });
31
35
  const faker_namespaceObject = require("@faker-js/faker");
32
36
  const external_utils_cjs_namespaceObject = require("./utils.cjs");
33
37
  const aircraftType = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.aircraftType);
38
+ const airline = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.airline);
39
+ const airplane = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.airplane);
40
+ const airport = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.airport);
34
41
  const flightNumber = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.flightNumber);
42
+ const recordLocator = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.recordLocator);
35
43
  const seat = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.airline.seat);
36
44
  exports.aircraftType = __webpack_exports__.aircraftType;
45
+ exports.airline = __webpack_exports__.airline;
46
+ exports.airplane = __webpack_exports__.airplane;
47
+ exports.airport = __webpack_exports__.airport;
37
48
  exports.flightNumber = __webpack_exports__.flightNumber;
49
+ exports.recordLocator = __webpack_exports__.recordLocator;
38
50
  exports.seat = __webpack_exports__.seat;
39
51
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
40
52
  "aircraftType",
53
+ "airline",
54
+ "airplane",
55
+ "airport",
41
56
  "flightNumber",
57
+ "recordLocator",
42
58
  "seat"
43
59
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
44
60
  Object.defineProperty(exports, '__esModule', {
@@ -1,6 +1,10 @@
1
1
  import { faker } from "@faker-js/faker";
2
2
  import { makeValueConfigFn } from "./utils.js";
3
3
  const aircraftType = makeValueConfigFn(faker.airline.aircraftType);
4
+ const airline = makeValueConfigFn(faker.airline.airline);
5
+ const airplane = makeValueConfigFn(faker.airline.airplane);
6
+ const airport = makeValueConfigFn(faker.airline.airport);
4
7
  const flightNumber = makeValueConfigFn(faker.airline.flightNumber);
8
+ const recordLocator = makeValueConfigFn(faker.airline.recordLocator);
5
9
  const seat = makeValueConfigFn(faker.airline.seat);
6
- export { aircraftType, flightNumber, seat };
10
+ export { aircraftType, airline, airplane, airport, flightNumber, recordLocator, seat };
@@ -37,6 +37,7 @@ __webpack_require__.d(__webpack_exports__, {
37
37
  snake: ()=>snake,
38
38
  rabbit: ()=>rabbit,
39
39
  crocodilia: ()=>crocodilia,
40
+ petName: ()=>petName,
40
41
  cat: ()=>cat,
41
42
  horse: ()=>horse
42
43
  });
@@ -53,6 +54,7 @@ const fish = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_nam
53
54
  const horse = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.horse);
54
55
  const insect = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.insect);
55
56
  const lion = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.lion);
57
+ const petName = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.petName);
56
58
  const rabbit = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.rabbit);
57
59
  const rodent = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.rodent);
58
60
  const snake = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.snake);
@@ -68,6 +70,7 @@ exports.fish = __webpack_exports__.fish;
68
70
  exports.horse = __webpack_exports__.horse;
69
71
  exports.insect = __webpack_exports__.insect;
70
72
  exports.lion = __webpack_exports__.lion;
73
+ exports.petName = __webpack_exports__.petName;
71
74
  exports.rabbit = __webpack_exports__.rabbit;
72
75
  exports.rodent = __webpack_exports__.rodent;
73
76
  exports.snake = __webpack_exports__.snake;
@@ -84,6 +87,7 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
84
87
  "horse",
85
88
  "insect",
86
89
  "lion",
90
+ "petName",
87
91
  "rabbit",
88
92
  "rodent",
89
93
  "snake",
@@ -11,8 +11,9 @@ const fish = makeValueConfigFn(faker.animal.fish);
11
11
  const horse = makeValueConfigFn(faker.animal.horse);
12
12
  const insect = makeValueConfigFn(faker.animal.insect);
13
13
  const lion = makeValueConfigFn(faker.animal.lion);
14
+ const petName = makeValueConfigFn(faker.animal.petName);
14
15
  const rabbit = makeValueConfigFn(faker.animal.rabbit);
15
16
  const rodent = makeValueConfigFn(faker.animal.rodent);
16
17
  const snake = makeValueConfigFn(faker.animal.snake);
17
18
  const type = makeValueConfigFn(faker.animal.type);
18
- export { bear, bird, cat, cetacean, cow, crocodilia, dog, fish, horse, insect, lion, rabbit, rodent, snake, type };
19
+ export { bear, bird, cat, cetacean, cow, crocodilia, dog, fish, horse, insect, lion, petName, rabbit, rodent, snake, type };
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ title: ()=>title,
28
+ publisher: ()=>publisher,
29
+ series: ()=>series,
30
+ author: ()=>author,
31
+ format: ()=>format,
32
+ genre: ()=>genre
33
+ });
34
+ const faker_namespaceObject = require("@faker-js/faker");
35
+ const external_utils_cjs_namespaceObject = require("./utils.cjs");
36
+ const author = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.author);
37
+ const format = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.format);
38
+ const genre = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.genre);
39
+ const publisher = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.publisher);
40
+ const series = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.series);
41
+ const title = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.book.title);
42
+ exports.author = __webpack_exports__.author;
43
+ exports.format = __webpack_exports__.format;
44
+ exports.genre = __webpack_exports__.genre;
45
+ exports.publisher = __webpack_exports__.publisher;
46
+ exports.series = __webpack_exports__.series;
47
+ exports.title = __webpack_exports__.title;
48
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
49
+ "author",
50
+ "format",
51
+ "genre",
52
+ "publisher",
53
+ "series",
54
+ "title"
55
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
56
+ Object.defineProperty(exports, '__esModule', {
57
+ value: true
58
+ });
@@ -0,0 +1,9 @@
1
+ import { faker } from "@faker-js/faker";
2
+ import { makeValueConfigFn } from "./utils.js";
3
+ const author = makeValueConfigFn(faker.book.author);
4
+ const format = makeValueConfigFn(faker.book.format);
5
+ const genre = makeValueConfigFn(faker.book.genre);
6
+ const publisher = makeValueConfigFn(faker.book.publisher);
7
+ const series = makeValueConfigFn(faker.book.series);
8
+ const title = makeValueConfigFn(faker.book.title);
9
+ export { author, format, genre, publisher, series, title };
@@ -26,12 +26,14 @@ __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
27
  bitcoinAddress: ()=>bitcoinAddress,
28
28
  litecoinAddress: ()=>litecoinAddress,
29
+ currencyNumericCode: ()=>currencyNumericCode,
29
30
  creditCardNumber: ()=>creditCardNumber,
30
31
  iban: ()=>iban,
31
32
  ethereumAddress: ()=>ethereumAddress,
32
33
  creditCardCVV: ()=>creditCardCVV,
33
34
  bic: ()=>bic,
34
35
  amount: ()=>amount,
36
+ currencyName: ()=>currencyName,
35
37
  currencyCode: ()=>currencyCode,
36
38
  routingNumber: ()=>routingNumber,
37
39
  currencySymbol: ()=>currencySymbol,
@@ -39,9 +41,8 @@ __webpack_require__.d(__webpack_exports__, {
39
41
  accountNumber: ()=>accountNumber,
40
42
  transactionType: ()=>transactionType,
41
43
  accountName: ()=>accountName,
42
- maskedNumber: ()=>maskedNumber,
43
- currency: ()=>currency,
44
44
  pin: ()=>pin,
45
+ currency: ()=>currency,
45
46
  creditCardIssuer: ()=>creditCardIssuer
46
47
  });
47
48
  const faker_namespaceObject = require("@faker-js/faker");
@@ -56,11 +57,12 @@ const creditCardIssuer = (0, external_utils_cjs_namespaceObject.makeValueConfigF
56
57
  const creditCardNumber = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.creditCardNumber);
57
58
  const currency = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.currency);
58
59
  const currencyCode = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.currencyCode);
60
+ const currencyName = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.currencyName);
61
+ const currencyNumericCode = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.currencyNumericCode);
59
62
  const currencySymbol = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.currencySymbol);
60
63
  const ethereumAddress = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.ethereumAddress);
61
64
  const iban = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.iban);
62
65
  const litecoinAddress = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.litecoinAddress);
63
- const maskedNumber = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.maskedNumber);
64
66
  const pin = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.pin);
65
67
  const routingNumber = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.routingNumber);
66
68
  const transactionDescription = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.finance.transactionDescription);
@@ -75,11 +77,12 @@ exports.creditCardIssuer = __webpack_exports__.creditCardIssuer;
75
77
  exports.creditCardNumber = __webpack_exports__.creditCardNumber;
76
78
  exports.currency = __webpack_exports__.currency;
77
79
  exports.currencyCode = __webpack_exports__.currencyCode;
80
+ exports.currencyName = __webpack_exports__.currencyName;
81
+ exports.currencyNumericCode = __webpack_exports__.currencyNumericCode;
78
82
  exports.currencySymbol = __webpack_exports__.currencySymbol;
79
83
  exports.ethereumAddress = __webpack_exports__.ethereumAddress;
80
84
  exports.iban = __webpack_exports__.iban;
81
85
  exports.litecoinAddress = __webpack_exports__.litecoinAddress;
82
- exports.maskedNumber = __webpack_exports__.maskedNumber;
83
86
  exports.pin = __webpack_exports__.pin;
84
87
  exports.routingNumber = __webpack_exports__.routingNumber;
85
88
  exports.transactionDescription = __webpack_exports__.transactionDescription;
@@ -95,11 +98,12 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
95
98
  "creditCardNumber",
96
99
  "currency",
97
100
  "currencyCode",
101
+ "currencyName",
102
+ "currencyNumericCode",
98
103
  "currencySymbol",
99
104
  "ethereumAddress",
100
105
  "iban",
101
106
  "litecoinAddress",
102
- "maskedNumber",
103
107
  "pin",
104
108
  "routingNumber",
105
109
  "transactionDescription",
@@ -10,13 +10,14 @@ const creditCardIssuer = makeValueConfigFn(faker.finance.creditCardIssuer);
10
10
  const creditCardNumber = makeValueConfigFn(faker.finance.creditCardNumber);
11
11
  const currency = makeValueConfigFn(faker.finance.currency);
12
12
  const currencyCode = makeValueConfigFn(faker.finance.currencyCode);
13
+ const currencyName = makeValueConfigFn(faker.finance.currencyName);
14
+ const currencyNumericCode = makeValueConfigFn(faker.finance.currencyNumericCode);
13
15
  const currencySymbol = makeValueConfigFn(faker.finance.currencySymbol);
14
16
  const ethereumAddress = makeValueConfigFn(faker.finance.ethereumAddress);
15
17
  const iban = makeValueConfigFn(faker.finance.iban);
16
18
  const litecoinAddress = makeValueConfigFn(faker.finance.litecoinAddress);
17
- const maskedNumber = makeValueConfigFn(faker.finance.maskedNumber);
18
19
  const pin = makeValueConfigFn(faker.finance.pin);
19
20
  const routingNumber = makeValueConfigFn(faker.finance.routingNumber);
20
21
  const transactionDescription = makeValueConfigFn(faker.finance.transactionDescription);
21
22
  const transactionType = makeValueConfigFn(faker.finance.transactionType);
22
- export { accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencySymbol, ethereumAddress, iban, litecoinAddress, maskedNumber, pin, routingNumber, transactionDescription, transactionType };
23
+ export { accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencyName, currencyNumericCode, currencySymbol, ethereumAddress, iban, litecoinAddress, pin, routingNumber, transactionDescription, transactionType };
@@ -24,42 +24,34 @@ var __webpack_require__ = {};
24
24
  var __webpack_exports__ = {};
25
25
  __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
- urlPicsumPhotos: ()=>urlPicsumPhotos,
27
+ avatarGitHub: ()=>avatarGitHub,
28
28
  avatar: ()=>avatar,
29
29
  dataUri: ()=>dataUri,
30
- avatarLegacy: ()=>avatarLegacy,
31
- url: ()=>url,
32
- avatarGitHub: ()=>avatarGitHub,
33
- urlPlaceholder: ()=>urlPlaceholder,
34
- urlLoremFlickr: ()=>urlLoremFlickr
30
+ urlPicsumPhotos: ()=>urlPicsumPhotos,
31
+ urlLoremFlickr: ()=>urlLoremFlickr,
32
+ url: ()=>url
35
33
  });
36
34
  const faker_namespaceObject = require("@faker-js/faker");
37
35
  const external_utils_cjs_namespaceObject = require("./utils.cjs");
38
36
  const avatar = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.avatar);
39
37
  const avatarGitHub = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.avatarGitHub);
40
- const avatarLegacy = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.avatarLegacy);
41
38
  const dataUri = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.dataUri);
42
39
  const url = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.url);
43
40
  const urlLoremFlickr = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.urlLoremFlickr);
44
41
  const urlPicsumPhotos = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.urlPicsumPhotos);
45
- const urlPlaceholder = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.image.urlPlaceholder);
46
42
  exports.avatar = __webpack_exports__.avatar;
47
43
  exports.avatarGitHub = __webpack_exports__.avatarGitHub;
48
- exports.avatarLegacy = __webpack_exports__.avatarLegacy;
49
44
  exports.dataUri = __webpack_exports__.dataUri;
50
45
  exports.url = __webpack_exports__.url;
51
46
  exports.urlLoremFlickr = __webpack_exports__.urlLoremFlickr;
52
47
  exports.urlPicsumPhotos = __webpack_exports__.urlPicsumPhotos;
53
- exports.urlPlaceholder = __webpack_exports__.urlPlaceholder;
54
48
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
55
49
  "avatar",
56
50
  "avatarGitHub",
57
- "avatarLegacy",
58
51
  "dataUri",
59
52
  "url",
60
53
  "urlLoremFlickr",
61
- "urlPicsumPhotos",
62
- "urlPlaceholder"
54
+ "urlPicsumPhotos"
63
55
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
64
56
  Object.defineProperty(exports, '__esModule', {
65
57
  value: true
@@ -2,10 +2,8 @@ import { faker } from "@faker-js/faker";
2
2
  import { makeValueConfigFn } from "./utils.js";
3
3
  const avatar = makeValueConfigFn(faker.image.avatar);
4
4
  const avatarGitHub = makeValueConfigFn(faker.image.avatarGitHub);
5
- const avatarLegacy = makeValueConfigFn(faker.image.avatarLegacy);
6
5
  const dataUri = makeValueConfigFn(faker.image.dataUri);
7
6
  const url = makeValueConfigFn(faker.image.url);
8
7
  const urlLoremFlickr = makeValueConfigFn(faker.image.urlLoremFlickr);
9
8
  const urlPicsumPhotos = makeValueConfigFn(faker.image.urlPicsumPhotos);
10
- const urlPlaceholder = makeValueConfigFn(faker.image.urlPlaceholder);
11
- export { avatar, avatarGitHub, avatarLegacy, dataUri, url, urlLoremFlickr, urlPicsumPhotos, urlPlaceholder };
9
+ export { avatar, avatarGitHub, dataUri, url, urlLoremFlickr, urlPicsumPhotos };
@@ -46,13 +46,16 @@ __webpack_require__.d(__webpack_exports__, {
46
46
  Company: ()=>external_company_cjs_namespaceObject,
47
47
  Database: ()=>external_database_cjs_namespaceObject,
48
48
  Phone: ()=>external_phone_cjs_namespaceObject,
49
+ makeValueConfigFn: ()=>external_utils_cjs_namespaceObject.makeValueConfigFn,
49
50
  Science: ()=>external_science_cjs_namespaceObject,
51
+ Book: ()=>external_book_cjs_namespaceObject,
50
52
  Finance: ()=>external_finance_cjs_namespaceObject,
51
53
  Vehicle: ()=>external_vehicle_cjs_namespaceObject,
52
54
  Common: ()=>external_common_cjs_namespaceObject
53
55
  });
54
56
  const external_airline_cjs_namespaceObject = require("./airline.cjs");
55
57
  const external_animal_cjs_namespaceObject = require("./animal.cjs");
58
+ const external_book_cjs_namespaceObject = require("./book.cjs");
56
59
  const external_color_cjs_namespaceObject = require("./color.cjs");
57
60
  const external_commerce_cjs_namespaceObject = require("./commerce.cjs");
58
61
  const external_common_cjs_namespaceObject = require("./common.cjs");
@@ -79,6 +82,7 @@ const external_utils_cjs_namespaceObject = require("./utils.cjs");
79
82
  const external_vehicle_cjs_namespaceObject = require("./vehicle.cjs");
80
83
  exports.Airline = __webpack_exports__.Airline;
81
84
  exports.Animal = __webpack_exports__.Animal;
85
+ exports.Book = __webpack_exports__.Book;
82
86
  exports.Color = __webpack_exports__.Color;
83
87
  exports.Commerce = __webpack_exports__.Commerce;
84
88
  exports.Common = __webpack_exports__.Common;
@@ -102,10 +106,12 @@ exports.Science = __webpack_exports__.Science;
102
106
  exports.String = __webpack_exports__.String;
103
107
  exports.System = __webpack_exports__.System;
104
108
  exports.Vehicle = __webpack_exports__.Vehicle;
109
+ exports.makeValueConfigFn = __webpack_exports__.makeValueConfigFn;
105
110
  exports.utils = __webpack_exports__.utils;
106
111
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
107
112
  "Airline",
108
113
  "Animal",
114
+ "Book",
109
115
  "Color",
110
116
  "Commerce",
111
117
  "Common",
@@ -129,6 +135,7 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
129
135
  "String",
130
136
  "System",
131
137
  "Vehicle",
138
+ "makeValueConfigFn",
132
139
  "utils"
133
140
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
134
141
  Object.defineProperty(exports, '__esModule', {
@@ -1,6 +1,7 @@
1
1
  import * as __WEBPACK_EXTERNAL_MODULE__utils_js_d88b7fe1__ from "./utils.js";
2
2
  import * as __WEBPACK_EXTERNAL_MODULE__airline_js_130611a2__ from "./airline.js";
3
3
  import * as __WEBPACK_EXTERNAL_MODULE__animal_js_c3e7c1dc__ from "./animal.js";
4
+ import * as __WEBPACK_EXTERNAL_MODULE__book_js_178f9878__ from "./book.js";
4
5
  import * as __WEBPACK_EXTERNAL_MODULE__color_js_8769135d__ from "./color.js";
5
6
  import * as __WEBPACK_EXTERNAL_MODULE__commerce_js_81495924__ from "./commerce.js";
6
7
  import * as __WEBPACK_EXTERNAL_MODULE__common_js_29d52c64__ from "./common.js";
@@ -24,4 +25,5 @@ import * as __WEBPACK_EXTERNAL_MODULE__science_js_fa8462db__ from "./science.js"
24
25
  import * as __WEBPACK_EXTERNAL_MODULE__string_js_8f2912d6__ from "./string.js";
25
26
  import * as __WEBPACK_EXTERNAL_MODULE__system_js_50c29608__ from "./system.js";
26
27
  import * as __WEBPACK_EXTERNAL_MODULE__vehicle_js_1cb59f69__ from "./vehicle.js";
27
- export { __WEBPACK_EXTERNAL_MODULE__airline_js_130611a2__ as Airline, __WEBPACK_EXTERNAL_MODULE__animal_js_c3e7c1dc__ as Animal, __WEBPACK_EXTERNAL_MODULE__color_js_8769135d__ as Color, __WEBPACK_EXTERNAL_MODULE__commerce_js_81495924__ as Commerce, __WEBPACK_EXTERNAL_MODULE__common_js_29d52c64__ as Common, __WEBPACK_EXTERNAL_MODULE__company_js_9a05fd60__ as Company, __WEBPACK_EXTERNAL_MODULE__database_js_df934457__ as Database, __WEBPACK_EXTERNAL_MODULE__datatype_js_98aa638e__ as Datatype, __WEBPACK_EXTERNAL_MODULE__datetime_js_55619628__ as DateTime, __WEBPACK_EXTERNAL_MODULE__finance_js_70f1c342__ as Finance, __WEBPACK_EXTERNAL_MODULE__food_js_6304fd17__ as Food, __WEBPACK_EXTERNAL_MODULE__git_js_b95c04ce__ as Git, __WEBPACK_EXTERNAL_MODULE__hacker_js_e6054d1c__ as Hacker, __WEBPACK_EXTERNAL_MODULE__image_js_863b0c0e__ as Image, __WEBPACK_EXTERNAL_MODULE__internet_js_78c88a9d__ as Internet, __WEBPACK_EXTERNAL_MODULE__location_js_e7e825c1__ as Location, __WEBPACK_EXTERNAL_MODULE__lorem_js_80d653e4__ as Lorem, __WEBPACK_EXTERNAL_MODULE__music_js_cf6e4e8d__ as Music, __WEBPACK_EXTERNAL_MODULE__number_js_e0b558c6__ as Number, __WEBPACK_EXTERNAL_MODULE__person_js_c473cc56__ as Person, __WEBPACK_EXTERNAL_MODULE__phone_js_5391b8ca__ as Phone, __WEBPACK_EXTERNAL_MODULE__science_js_fa8462db__ as Science, __WEBPACK_EXTERNAL_MODULE__string_js_8f2912d6__ as String, __WEBPACK_EXTERNAL_MODULE__system_js_50c29608__ as System, __WEBPACK_EXTERNAL_MODULE__vehicle_js_1cb59f69__ as Vehicle, __WEBPACK_EXTERNAL_MODULE__utils_js_d88b7fe1__ as utils };
28
+ var __webpack_exports__makeValueConfigFn = __WEBPACK_EXTERNAL_MODULE__utils_js_d88b7fe1__.makeValueConfigFn;
29
+ export { __WEBPACK_EXTERNAL_MODULE__airline_js_130611a2__ as Airline, __WEBPACK_EXTERNAL_MODULE__animal_js_c3e7c1dc__ as Animal, __WEBPACK_EXTERNAL_MODULE__book_js_178f9878__ as Book, __WEBPACK_EXTERNAL_MODULE__color_js_8769135d__ as Color, __WEBPACK_EXTERNAL_MODULE__commerce_js_81495924__ as Commerce, __WEBPACK_EXTERNAL_MODULE__common_js_29d52c64__ as Common, __WEBPACK_EXTERNAL_MODULE__company_js_9a05fd60__ as Company, __WEBPACK_EXTERNAL_MODULE__database_js_df934457__ as Database, __WEBPACK_EXTERNAL_MODULE__datatype_js_98aa638e__ as Datatype, __WEBPACK_EXTERNAL_MODULE__datetime_js_55619628__ as DateTime, __WEBPACK_EXTERNAL_MODULE__finance_js_70f1c342__ as Finance, __WEBPACK_EXTERNAL_MODULE__food_js_6304fd17__ as Food, __WEBPACK_EXTERNAL_MODULE__git_js_b95c04ce__ as Git, __WEBPACK_EXTERNAL_MODULE__hacker_js_e6054d1c__ as Hacker, __WEBPACK_EXTERNAL_MODULE__image_js_863b0c0e__ as Image, __WEBPACK_EXTERNAL_MODULE__internet_js_78c88a9d__ as Internet, __WEBPACK_EXTERNAL_MODULE__location_js_e7e825c1__ as Location, __WEBPACK_EXTERNAL_MODULE__lorem_js_80d653e4__ as Lorem, __WEBPACK_EXTERNAL_MODULE__music_js_cf6e4e8d__ as Music, __WEBPACK_EXTERNAL_MODULE__number_js_e0b558c6__ as Number, __WEBPACK_EXTERNAL_MODULE__person_js_c473cc56__ as Person, __WEBPACK_EXTERNAL_MODULE__phone_js_5391b8ca__ as Phone, __WEBPACK_EXTERNAL_MODULE__science_js_fa8462db__ as Science, __WEBPACK_EXTERNAL_MODULE__string_js_8f2912d6__ as String, __WEBPACK_EXTERNAL_MODULE__system_js_50c29608__ as System, __WEBPACK_EXTERNAL_MODULE__vehicle_js_1cb59f69__ as Vehicle, __WEBPACK_EXTERNAL_MODULE__utils_js_d88b7fe1__ as utils, __webpack_exports__makeValueConfigFn as makeValueConfigFn };
@@ -24,6 +24,7 @@ var __webpack_require__ = {};
24
24
  var __webpack_exports__ = {};
25
25
  __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
+ mac: ()=>mac,
27
28
  domainWord: ()=>domainWord,
28
29
  email: ()=>email,
29
30
  emoji: ()=>emoji,
@@ -32,6 +33,7 @@ __webpack_require__.d(__webpack_exports__, {
32
33
  username: ()=>username,
33
34
  httpStatusCode: ()=>httpStatusCode,
34
35
  password: ()=>internet_password,
36
+ jwt: ()=>jwt,
35
37
  displayName: ()=>displayName,
36
38
  port: ()=>port,
37
39
  ipv4: ()=>ipv4,
@@ -39,15 +41,13 @@ __webpack_require__.d(__webpack_exports__, {
39
41
  url: ()=>url,
40
42
  exampleEmail: ()=>exampleEmail,
41
43
  userAgent: ()=>userAgent,
42
- color: ()=>color,
43
44
  protocol: ()=>protocol,
44
45
  ipv6: ()=>ipv6,
45
- mac: ()=>mac,
46
+ jwtAlgorithm: ()=>jwtAlgorithm,
46
47
  domainName: ()=>domainName
47
48
  });
48
49
  const faker_namespaceObject = require("@faker-js/faker");
49
50
  const external_utils_cjs_namespaceObject = require("./utils.cjs");
50
- const color = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.color);
51
51
  const displayName = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.displayName);
52
52
  const domainName = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.domainName);
53
53
  const domainSuffix = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.domainSuffix);
@@ -60,6 +60,8 @@ const httpStatusCode = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)
60
60
  const ip = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.ip);
61
61
  const ipv4 = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.ipv4);
62
62
  const ipv6 = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.ipv6);
63
+ const jwt = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.jwt);
64
+ const jwtAlgorithm = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.jwtAlgorithm);
63
65
  const mac = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.mac);
64
66
  const internet_password = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.password);
65
67
  const port = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.port);
@@ -67,7 +69,6 @@ const protocol = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker
67
69
  const url = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.url);
68
70
  const userAgent = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.userAgent);
69
71
  const username = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.internet.username);
70
- exports.color = __webpack_exports__.color;
71
72
  exports.displayName = __webpack_exports__.displayName;
72
73
  exports.domainName = __webpack_exports__.domainName;
73
74
  exports.domainSuffix = __webpack_exports__.domainSuffix;
@@ -80,6 +81,8 @@ exports.httpStatusCode = __webpack_exports__.httpStatusCode;
80
81
  exports.ip = __webpack_exports__.ip;
81
82
  exports.ipv4 = __webpack_exports__.ipv4;
82
83
  exports.ipv6 = __webpack_exports__.ipv6;
84
+ exports.jwt = __webpack_exports__.jwt;
85
+ exports.jwtAlgorithm = __webpack_exports__.jwtAlgorithm;
83
86
  exports.mac = __webpack_exports__.mac;
84
87
  exports.password = __webpack_exports__.password;
85
88
  exports.port = __webpack_exports__.port;
@@ -88,7 +91,6 @@ exports.url = __webpack_exports__.url;
88
91
  exports.userAgent = __webpack_exports__.userAgent;
89
92
  exports.username = __webpack_exports__.username;
90
93
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
91
- "color",
92
94
  "displayName",
93
95
  "domainName",
94
96
  "domainSuffix",
@@ -101,6 +103,8 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
101
103
  "ip",
102
104
  "ipv4",
103
105
  "ipv6",
106
+ "jwt",
107
+ "jwtAlgorithm",
104
108
  "mac",
105
109
  "password",
106
110
  "port",
@@ -1,6 +1,5 @@
1
1
  import { faker } from "@faker-js/faker";
2
2
  import { makeValueConfigFn } from "./utils.js";
3
- const color = makeValueConfigFn(faker.internet.color);
4
3
  const displayName = makeValueConfigFn(faker.internet.displayName);
5
4
  const domainName = makeValueConfigFn(faker.internet.domainName);
6
5
  const domainSuffix = makeValueConfigFn(faker.internet.domainSuffix);
@@ -13,6 +12,8 @@ const httpStatusCode = makeValueConfigFn(faker.internet.httpStatusCode);
13
12
  const ip = makeValueConfigFn(faker.internet.ip);
14
13
  const ipv4 = makeValueConfigFn(faker.internet.ipv4);
15
14
  const ipv6 = makeValueConfigFn(faker.internet.ipv6);
15
+ const jwt = makeValueConfigFn(faker.internet.jwt);
16
+ const jwtAlgorithm = makeValueConfigFn(faker.internet.jwtAlgorithm);
16
17
  const mac = makeValueConfigFn(faker.internet.mac);
17
18
  const internet_password = makeValueConfigFn(faker.internet.password);
18
19
  const port = makeValueConfigFn(faker.internet.port);
@@ -20,4 +21,4 @@ const protocol = makeValueConfigFn(faker.internet.protocol);
20
21
  const url = makeValueConfigFn(faker.internet.url);
21
22
  const userAgent = makeValueConfigFn(faker.internet.userAgent);
22
23
  const username = makeValueConfigFn(faker.internet.username);
23
- export { color, displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, mac, internet_password as password, port, protocol, url, userAgent, username };
24
+ export { displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, jwt, jwtAlgorithm, mac, internet_password as password, port, protocol, url, userAgent, username };
@@ -33,23 +33,28 @@ __webpack_require__.d(__webpack_exports__, {
33
33
  buildingNumber: ()=>buildingNumber,
34
34
  country: ()=>country,
35
35
  cardinalDirection: ()=>cardinalDirection,
36
+ language: ()=>language,
36
37
  nearbyGPSCoordinate: ()=>nearbyGPSCoordinate,
37
- ordinalDirection: ()=>ordinalDirection,
38
38
  county: ()=>county,
39
+ ordinalDirection: ()=>ordinalDirection,
39
40
  state: ()=>state,
40
41
  street: ()=>street,
41
42
  timeZone: ()=>timeZone,
42
- city: ()=>city
43
+ city: ()=>city,
44
+ zipCode: ()=>zipCode,
45
+ continent: ()=>continent
43
46
  });
44
47
  const faker_namespaceObject = require("@faker-js/faker");
45
48
  const external_utils_cjs_namespaceObject = require("./utils.cjs");
46
49
  const buildingNumber = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.buildingNumber);
47
50
  const cardinalDirection = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.cardinalDirection);
48
51
  const city = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.city);
52
+ const continent = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.continent);
49
53
  const country = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.country);
50
54
  const countryCode = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.countryCode);
51
55
  const county = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.county);
52
56
  const direction = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.direction);
57
+ const language = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.language);
53
58
  const latitude = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.latitude);
54
59
  const longitude = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.longitude);
55
60
  const nearbyGPSCoordinate = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.nearbyGPSCoordinate);
@@ -59,13 +64,16 @@ const state = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_na
59
64
  const street = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.street);
60
65
  const streetAddress = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.streetAddress);
61
66
  const timeZone = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.timeZone);
67
+ const zipCode = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.location.zipCode);
62
68
  exports.buildingNumber = __webpack_exports__.buildingNumber;
63
69
  exports.cardinalDirection = __webpack_exports__.cardinalDirection;
64
70
  exports.city = __webpack_exports__.city;
71
+ exports.continent = __webpack_exports__.continent;
65
72
  exports.country = __webpack_exports__.country;
66
73
  exports.countryCode = __webpack_exports__.countryCode;
67
74
  exports.county = __webpack_exports__.county;
68
75
  exports.direction = __webpack_exports__.direction;
76
+ exports.language = __webpack_exports__.language;
69
77
  exports.latitude = __webpack_exports__.latitude;
70
78
  exports.longitude = __webpack_exports__.longitude;
71
79
  exports.nearbyGPSCoordinate = __webpack_exports__.nearbyGPSCoordinate;
@@ -75,14 +83,17 @@ exports.state = __webpack_exports__.state;
75
83
  exports.street = __webpack_exports__.street;
76
84
  exports.streetAddress = __webpack_exports__.streetAddress;
77
85
  exports.timeZone = __webpack_exports__.timeZone;
86
+ exports.zipCode = __webpack_exports__.zipCode;
78
87
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
79
88
  "buildingNumber",
80
89
  "cardinalDirection",
81
90
  "city",
91
+ "continent",
82
92
  "country",
83
93
  "countryCode",
84
94
  "county",
85
95
  "direction",
96
+ "language",
86
97
  "latitude",
87
98
  "longitude",
88
99
  "nearbyGPSCoordinate",
@@ -91,7 +102,8 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
91
102
  "state",
92
103
  "street",
93
104
  "streetAddress",
94
- "timeZone"
105
+ "timeZone",
106
+ "zipCode"
95
107
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
96
108
  Object.defineProperty(exports, '__esModule', {
97
109
  value: true
@@ -3,10 +3,12 @@ import { makeValueConfigFn } from "./utils.js";
3
3
  const buildingNumber = makeValueConfigFn(faker.location.buildingNumber);
4
4
  const cardinalDirection = makeValueConfigFn(faker.location.cardinalDirection);
5
5
  const city = makeValueConfigFn(faker.location.city);
6
+ const continent = makeValueConfigFn(faker.location.continent);
6
7
  const country = makeValueConfigFn(faker.location.country);
7
8
  const countryCode = makeValueConfigFn(faker.location.countryCode);
8
9
  const county = makeValueConfigFn(faker.location.county);
9
10
  const direction = makeValueConfigFn(faker.location.direction);
11
+ const language = makeValueConfigFn(faker.location.language);
10
12
  const latitude = makeValueConfigFn(faker.location.latitude);
11
13
  const longitude = makeValueConfigFn(faker.location.longitude);
12
14
  const nearbyGPSCoordinate = makeValueConfigFn(faker.location.nearbyGPSCoordinate);
@@ -16,4 +18,5 @@ const state = makeValueConfigFn(faker.location.state);
16
18
  const street = makeValueConfigFn(faker.location.street);
17
19
  const streetAddress = makeValueConfigFn(faker.location.streetAddress);
18
20
  const timeZone = makeValueConfigFn(faker.location.timeZone);
19
- export { buildingNumber, cardinalDirection, city, country, countryCode, county, direction, latitude, longitude, nearbyGPSCoordinate, ordinalDirection, secondaryAddress, state, street, streetAddress, timeZone };
21
+ const zipCode = makeValueConfigFn(faker.location.zipCode);
22
+ export { buildingNumber, cardinalDirection, city, continent, country, countryCode, county, direction, language, latitude, longitude, nearbyGPSCoordinate, ordinalDirection, secondaryAddress, state, street, streetAddress, timeZone, zipCode };
@@ -26,6 +26,7 @@ __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
27
  hex: ()=>hex,
28
28
  bigInt: ()=>bigInt,
29
+ romanNumeral: ()=>romanNumeral,
29
30
  octal: ()=>octal,
30
31
  int: ()=>number_int,
31
32
  float: ()=>number_float,
@@ -39,19 +40,22 @@ const number_float = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(f
39
40
  const hex = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.number.hex);
40
41
  const number_int = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.number.int);
41
42
  const octal = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.number.octal);
43
+ const romanNumeral = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.number.romanNumeral);
42
44
  exports.bigInt = __webpack_exports__.bigInt;
43
45
  exports.binary = __webpack_exports__.binary;
44
46
  exports.float = __webpack_exports__.float;
45
47
  exports.hex = __webpack_exports__.hex;
46
48
  exports.int = __webpack_exports__.int;
47
49
  exports.octal = __webpack_exports__.octal;
50
+ exports.romanNumeral = __webpack_exports__.romanNumeral;
48
51
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
49
52
  "bigInt",
50
53
  "binary",
51
54
  "float",
52
55
  "hex",
53
56
  "int",
54
- "octal"
57
+ "octal",
58
+ "romanNumeral"
55
59
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
56
60
  Object.defineProperty(exports, '__esModule', {
57
61
  value: true
@@ -6,4 +6,5 @@ const number_float = makeValueConfigFn(faker.number.float);
6
6
  const hex = makeValueConfigFn(faker.number.hex);
7
7
  const number_int = makeValueConfigFn(faker.number.int);
8
8
  const octal = makeValueConfigFn(faker.number.octal);
9
- export { bigInt, binary, number_float as float, hex, number_int as int, octal };
9
+ const romanNumeral = makeValueConfigFn(faker.number.romanNumeral);
10
+ export { bigInt, binary, number_float as float, hex, number_int as int, octal, romanNumeral };
@@ -33,6 +33,7 @@ __webpack_require__.d(__webpack_exports__, {
33
33
  uuid: ()=>uuid,
34
34
  hexadecimal: ()=>hexadecimal,
35
35
  octal: ()=>octal,
36
+ ulid: ()=>ulid,
36
37
  alphanumeric: ()=>alphanumeric
37
38
  });
38
39
  const faker_namespaceObject = require("@faker-js/faker");
@@ -46,6 +47,7 @@ const nanoid = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_n
46
47
  const octal = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.string.octal);
47
48
  const sample = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.string.sample);
48
49
  const symbol = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.string.symbol);
50
+ const ulid = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.string.ulid);
49
51
  const uuid = (0, external_utils_cjs_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.string.uuid);
50
52
  exports.alpha = __webpack_exports__.alpha;
51
53
  exports.alphanumeric = __webpack_exports__.alphanumeric;
@@ -56,6 +58,7 @@ exports.nanoid = __webpack_exports__.nanoid;
56
58
  exports.octal = __webpack_exports__.octal;
57
59
  exports.sample = __webpack_exports__.sample;
58
60
  exports.symbol = __webpack_exports__.symbol;
61
+ exports.ulid = __webpack_exports__.ulid;
59
62
  exports.uuid = __webpack_exports__.uuid;
60
63
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
61
64
  "alpha",
@@ -67,6 +70,7 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
67
70
  "octal",
68
71
  "sample",
69
72
  "symbol",
73
+ "ulid",
70
74
  "uuid"
71
75
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
72
76
  Object.defineProperty(exports, '__esModule', {
@@ -9,5 +9,6 @@ const nanoid = makeValueConfigFn(faker.string.nanoid);
9
9
  const octal = makeValueConfigFn(faker.string.octal);
10
10
  const sample = makeValueConfigFn(faker.string.sample);
11
11
  const symbol = makeValueConfigFn(faker.string.symbol);
12
+ const ulid = makeValueConfigFn(faker.string.ulid);
12
13
  const uuid = makeValueConfigFn(faker.string.uuid);
13
- export { alpha, alphanumeric, binary, fromCharacters, hexadecimal, nanoid, octal, sample, symbol, uuid };
14
+ export { alpha, alphanumeric, binary, fromCharacters, hexadecimal, nanoid, octal, sample, symbol, ulid, uuid };
package/package.json CHANGED
@@ -1,47 +1,48 @@
1
1
  {
2
2
  "name": "struct-fakerator",
3
- "version": "2.9.9",
3
+ "version": "3.0.0",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
7
- "types": "dist/index.d.ts",
7
+ "types": "dist/types/index.d.ts",
8
8
  "type": "module",
9
9
  "files": [
10
10
  "dist"
11
11
  ],
12
12
  "exports": {
13
13
  ".": {
14
- "types": "./dist/index.d.ts",
14
+ "types": "./dist/types/index.d.ts",
15
15
  "require": "./dist/index.cjs",
16
16
  "import": "./dist/index.js"
17
17
  },
18
18
  "./utils": {
19
- "types": "./dist/utils/index.d.ts",
19
+ "types": "./dist/types/utils/index.d.ts",
20
20
  "require": "./dist/utils/index.cjs",
21
21
  "import": "./dist/utils/index.js"
22
22
  },
23
23
  "./utils/*": {
24
- "types": "./dist/utils/*.d.ts",
24
+ "types": "./dist/types/utils/*.d.ts",
25
25
  "require": "./dist/utils/*.cjs",
26
26
  "import": "./dist/utils/*.js"
27
27
  }
28
28
  },
29
29
  "keywords": [
30
30
  "fake data",
31
- "generator"
31
+ "generator",
32
+ "fakerjs"
32
33
  ],
33
34
  "author": "FizzyElt",
34
35
  "homepage": "https://github.com/FizzyElt/fakerator",
35
- "license": "ISC",
36
+ "license": "MIT",
36
37
  "devDependencies": {
37
- "@biomejs/biome": "^2.2.0",
38
- "@rslib/core": "^0.12.1",
38
+ "@biomejs/biome": "^2.2.4",
39
+ "@rslib/core": "^0.13.3",
39
40
  "typescript": "^5.9.2",
40
41
  "vitest": "^3.2.4"
41
42
  },
42
43
  "dependencies": {
43
- "@faker-js/faker": "^9.9.0",
44
- "zod": "^4.0.17"
44
+ "@faker-js/faker": "^10.0.0",
45
+ "zod": "^4.1.11"
45
46
  },
46
47
  "publishConfig": {
47
48
  "access": "public"
@@ -1,14 +0,0 @@
1
- /** Airline [aircraftType](https://fakerjs.dev/api/airline.html#aircraftType) */
2
- export declare const aircraftType: () => import("..").ValueConfig<"narrowbody" | "regional" | "widebody">;
3
- /** Airline [flightNumber](https://fakerjs.dev/api/airline.html#flightNumber) */
4
- export declare const flightNumber: (options?: {
5
- length?: number | {
6
- min: number;
7
- max: number;
8
- };
9
- addLeadingZeros?: boolean;
10
- }) => import("..").ValueConfig<string>;
11
- /** Airline [seat](https://fakerjs.dev/api/airline.html#seat) */
12
- export declare const seat: (options?: {
13
- aircraftType?: import("@faker-js/faker/.").AircraftType;
14
- }) => import("..").ValueConfig<string>;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes