Skip to content
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
7 changes: 2 additions & 5 deletions app/composables/useClassificationDetails.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { getClassificationDetails } from "~~/shared/utils/voight-kampff-test/classification-details";
import { getClassificationDetails } from "voight-kampff-test";

type ClassificationDetails = {
label: string;
description: string;
};
type ClassificationDetails = ReturnType<typeof getClassificationDetails>;

export function useClassificationDetails(
classification: MaybeRefOrGetter<IdentityClassification | undefined>,
Expand Down
2 changes: 1 addition & 1 deletion app/composables/useVerifiedAutomations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { VerifiedAutomation } from "~~/server/api/verified-automations.get";
import type { VerifiedAutomation } from "~~/shared/types/automation";

export function useVerifiedAutomations() {
return useLazyAsyncData("verified-list", async () => {
Expand Down
10 changes: 10 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"nuxt": "^4.3.1",
"octokit": "^5.0.5",
"valibot": "^1.2.0",
"voight-kampff-test": "^2.0.0",
"vue": "^3.5.28",
"vue-router": "^4.6.4"
},
Expand Down
2 changes: 1 addition & 1 deletion server/api/identify-replicant/[username].get.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { identifyReplicant } from "~~/shared/utils/voight-kampff-test/identify-replicant";
import { identifyReplicant } from "voight-kampff-test";
import { Octokit } from "octokit";
import * as v from "valibot";
import { formatUsername } from "~~/server/utils/format-username";
Expand Down
32 changes: 0 additions & 32 deletions shared/utils/voight-kampff-test/classification-details.ts

This file was deleted.

99 changes: 0 additions & 99 deletions shared/utils/voight-kampff-test/config.ts

This file was deleted.

Loading