Skip to content

Commit

Permalink
fix ts compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rrozek committed Nov 5, 2024
1 parent 6a0e43f commit 06c922a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/controllers/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const executeQuery = async (
if (!providedIdentifier) {
return res
.status(400)
.send({ message: `Identifier '${savedIdentifier.name}' is missing` });
.send({ message: `Identifier '${savedIdentifier}' is missing` });
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/db/models/dapp_analytics/Dapps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This file is automatically generated by Kanel. Do not modify manually.

/** Identifier type for dapp_analytics.dapps */
export type DappsId = string & { __brand: 'DappsId' };
export type DappsId = string & { __brand: "DappsId" };

/** Represents the table dapp_analytics.dapps */
export default interface Dapps {
Expand Down Expand Up @@ -49,7 +49,7 @@ export interface DappsInitializer {
added_by?: string | null;

/** Default value: '[]'::jsonb */
abis?: object[];
abis?: unknown;

/** Default value: CURRENT_TIMESTAMP */
created_at?: Date | null;
Expand Down Expand Up @@ -78,7 +78,7 @@ export interface DappsMutator {

added_by?: string | null;

abis?: object[];
abis?: unknown;

created_at?: Date | null;

Expand Down

0 comments on commit 06c922a

Please sign in to comment.