Skip to content

Commit 785f771

Browse files
committed
repo cleanup
1 parent 60c16a1 commit 785f771

39 files changed

Lines changed: 436 additions & 5616 deletions

pnpm-lock.yaml

Lines changed: 100 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

prisma/schema.prisma

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,9 @@ model ApiKey {
331331
revokedAt DateTime?
332332
revokedReason String?
333333
334+
/// Grace period end for revoked keys still accepting requests
335+
gracePeriodEndsAt DateTime?
336+
334337
/// Metadata
335338
createdAt DateTime @default(now())
336339
updatedAt DateTime @updatedAt

prisma/seed.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import { PrismaClient, WalletNetwork, WalletStatus } from '../src/generated/prisma';
1+
import { PrismaClient } from '../src/generated/prisma/client';
2+
import { WalletNetwork, WalletStatus } from '../src/generated/prisma/client';
23

34
// import { PrismaClient } from '@prisma/client';
45
// import { WalletNetwork, WalletStatus } from '../src/generated/prisma';
56

6-
const prisma = new PrismaClient();
7+
const prisma = new PrismaClient({} as any);
78

89
async function main() {
910
console.log('Seeding demo users and wallets...');

src/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { TransactionsModule } from './transactions/transactions.module';
2323
import { DevelopersModule } from './developers/developers.module';
2424
import { ProjectsModule } from './projects/projects.module';
2525
import { HealthModule } from './health/health.module';
26-
import { IdempotentUserModule } from './users/idempotent-user.module';
2726

2827
@Module({
2928
imports: [

src/auth/api-key.guard.ts

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)