Skip to content

Commit 00be2e1

Browse files
authored
Merge branch 'next' into docs/api/examples-refresh
2 parents 9736051 + 3c7abb5 commit 00be2e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+732
-1031
lines changed

pnpm-lock.yaml

+309-216
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/definitions/finance.ts

+5
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,9 @@ export type FinanceDefinition = LocaleEntry<{
2626
* Types of transactions (e.g. `deposit`).
2727
*/
2828
transaction_type: string[];
29+
30+
/**
31+
* The pattern used to generate transaction descriptions.
32+
*/
33+
transaction_description_pattern: string[];
2934
}>;

src/definitions/internet.ts

+5
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,9 @@ export type InternetDefinition = LocaleEntry<{
3131
http_status_code: Record<HTTPStatusCodeType, number[]>;
3232

3333
jwt_algorithm: string[];
34+
35+
/**
36+
* List of user agent patterns.
37+
*/
38+
user_agent_pattern: string[];
3439
}>;

src/internal/deprecated.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,20 @@ export interface DeprecatedOptions {
2828
/**
2929
* @internal
3030
*/
31-
export function deprecated(opts: DeprecatedOptions): void {
32-
let message = `[@faker-js/faker]: ${opts.deprecated} is deprecated`;
31+
export function deprecated(options: DeprecatedOptions): void {
32+
const { deprecated, since, until, proposed } = options;
33+
let message = `[@faker-js/faker]: ${deprecated} is deprecated`;
3334

34-
if (opts.since) {
35-
message += ` since v${opts.since}`;
35+
if (since) {
36+
message += ` since v${since}`;
3637
}
3738

38-
if (opts.until) {
39-
message += ` and will be removed in v${opts.until}`;
39+
if (until) {
40+
message += ` and will be removed in v${until}`;
4041
}
4142

42-
if (opts.proposed) {
43-
message += `. Please use ${opts.proposed} instead`;
43+
if (proposed) {
44+
message += `. Please use ${proposed} instead`;
4445
}
4546

4647
// eslint-disable-next-line no-undef -- Using console here is intentional and required

0 commit comments

Comments
 (0)