Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency typescript to v5.7.2 #13

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/main.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"openapi-sampler": "^1.6.1",
"prettier": "^3.4.1",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}
10 changes: 5 additions & 5 deletions src/config/validation.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import ajvModule, { ErrorObject } from "ajv";
import ajvErrorsModule from "ajv-errors";
import appsSchema from "../schema/apps.v1.schema.json";
import consumerSchema from "../schema/consumer.v1.schema.json";
import consumerTokenPermissionsSchema from "../schema/generated.consumer-token-permissions.v1.schema.json";
import providerRulePermissionsSchema from "../schema/generated.provider-rule-permissions.v1.schema.json";
import providerSchema from "../schema/provider.v1.schema.json";
import appsSchema from "../schema/apps.v1.schema.json" with { type: "json" };
import consumerSchema from "../schema/consumer.v1.schema.json" with { type: "json" };
import consumerTokenPermissionsSchema from "../schema/generated.consumer-token-permissions.v1.schema.json" with { type: "json" };
import providerRulePermissionsSchema from "../schema/generated.provider-rule-permissions.v1.schema.json" with { type: "json" };
import providerSchema from "../schema/provider.v1.schema.json" with { type: "json" };
import type { PartialConsumerConfig } from "../type/consumer-config.js";
import type { AppInput } from "../type/input.js";
import type { ProviderConfig } from "../type/provider-config.js";
Expand Down
2 changes: 1 addition & 1 deletion test/suite/unit/config/consumer-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { join } from "path";
import { fileURLToPath } from "url";
import { expect, it } from "vitest";
import { parseConsumerConfig } from "../../../../src/config/consumer-config.js";
import consumerSchema from "../../../../src/schema/consumer.v1.schema.json";
import consumerSchema from "../../../../src/schema/consumer.v1.schema.json" with { type: "json" };
import type { ConsumerConfig } from "../../../../src/type/consumer-config.js";
import { throws } from "../../../error.js";

Expand Down
2 changes: 1 addition & 1 deletion test/suite/unit/config/provider-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { join } from "path";
import { fileURLToPath } from "url";
import { expect, it } from "vitest";
import { parseProviderConfig } from "../../../../src/config/provider-config.js";
import providerSchema from "../../../../src/schema/provider.v1.schema.json";
import providerSchema from "../../../../src/schema/provider.v1.schema.json" with { type: "json" };
import type { ProviderConfig } from "../../../../src/type/provider-config.js";
import { throws } from "../../../error.js";

Expand Down
Loading