Skip to content
Open
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
14 changes: 14 additions & 0 deletions app/api-doc/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import ReactSwagger from '@/components/common/swagger/react-swagger';
import { getApiDocs } from '@/lib/swagger';
import React from 'react';

const page = async () => {
const spec = await getApiDocs();
return (
<section className="container">
<ReactSwagger spec={spec} />
</section>
);
};

export default page;
15 changes: 15 additions & 0 deletions app/api/hello/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
* @swagger
* /api/hello:
* get:
* description: Returns the hello world
* responses:
* 200:
* description: Hello World!
*/
export async function GET() {
// Do whatever you want
return new Response('Hello World!', {
status: 200,
});
}
1 change: 1 addition & 0 deletions app/generated/prisma/client.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './index';
3 changes: 3 additions & 0 deletions app/generated/prisma/client.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* !!! This is code generated by Prisma. Do not edit directly. !!!
/* eslint-disable */
module.exports = { ...require('.') };
1 change: 1 addition & 0 deletions app/generated/prisma/default.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './index';
3 changes: 3 additions & 0 deletions app/generated/prisma/default.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* !!! This is code generated by Prisma. Do not edit directly. !!!
/* eslint-disable */
module.exports = { ...require('.') };
1 change: 1 addition & 0 deletions app/generated/prisma/edge.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './default';
246 changes: 246 additions & 0 deletions app/generated/prisma/edge.js

Large diffs are not rendered by default.

227 changes: 227 additions & 0 deletions app/generated/prisma/index-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
/* !!! This is code generated by Prisma. Do not edit directly. !!!
/* eslint-disable */

Object.defineProperty(exports, '__esModule', { value: true });

const {
Decimal,
objectEnumValues,
makeStrictEnum,
Public,
getRuntime,
skip,
} = require('./runtime/index-browser.js');

const Prisma = {};

exports.Prisma = Prisma;
exports.$Enums = {};

/**
* Prisma Client JS version: 6.12.0
* Query Engine version: 8047c96bbd92db98a2abc7c9323ce77c02c89dbc
*/
Prisma.prismaVersion = {
client: '6.12.0',
engine: '8047c96bbd92db98a2abc7c9323ce77c02c89dbc',
};

Prisma.PrismaClientKnownRequestError = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.PrismaClientUnknownRequestError = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.PrismaClientRustPanicError = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.PrismaClientInitializationError = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.PrismaClientValidationError = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.Decimal = Decimal;

/**
* Re-export of sql-template-tag
*/
Prisma.sql = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.empty = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.join = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.raw = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.validator = Public.validator;

/**
* Extensions
*/
Prisma.getExtensionContext = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};
Prisma.defineExtension = () => {
const runtimeName = getRuntime().prettyName;
throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`);
};

/**
* Shorthand utilities for JSON filtering
*/
Prisma.DbNull = objectEnumValues.instances.DbNull;
Prisma.JsonNull = objectEnumValues.instances.JsonNull;
Prisma.AnyNull = objectEnumValues.instances.AnyNull;

Prisma.NullTypes = {
DbNull: objectEnumValues.classes.DbNull,
JsonNull: objectEnumValues.classes.JsonNull,
AnyNull: objectEnumValues.classes.AnyNull,
};

/**
* Enums
*/

exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
ReadUncommitted: 'ReadUncommitted',
ReadCommitted: 'ReadCommitted',
RepeatableRead: 'RepeatableRead',
Serializable: 'Serializable',
});

exports.Prisma.UserScalarFieldEnum = {
id: 'id',
email: 'email',
name: 'name',
};

exports.Prisma.PostScalarFieldEnum = {
id: 'id',
title: 'title',
content: 'content',
published: 'published',
authorId: 'authorId',
};

exports.Prisma.CompanyScalarFieldEnum = {
id: 'id',
name: 'name',
email: 'email',
description: 'description',
website: 'website',
createdAt: 'createdAt',
updatedAt: 'updatedAt',
};

exports.Prisma.TeamScalarFieldEnum = {
id: 'id',
name: 'name',
description: 'description',
createdAt: 'createdAt',
updatedAt: 'updatedAt',
companyId: 'companyId',
};

exports.Prisma.OnboardingScalarFieldEnum = {
id: 'id',
employeeName: 'employeeName',
employeeEmail: 'employeeEmail',
position: 'position',
startDate: 'startDate',
status: 'status',
notes: 'notes',
createdAt: 'createdAt',
updatedAt: 'updatedAt',
companyId: 'companyId',
teamId: 'teamId',
};

exports.Prisma.SortOrder = {
asc: 'asc',
desc: 'desc',
};

exports.Prisma.QueryMode = {
default: 'default',
insensitive: 'insensitive',
};

exports.Prisma.NullsOrder = {
first: 'first',
last: 'last',
};
exports.OnboardingStatus = exports.$Enums.OnboardingStatus = {
PENDING: 'PENDING',
IN_PROGRESS: 'IN_PROGRESS',
COMPLETED: 'COMPLETED',
CANCELLED: 'CANCELLED',
};

exports.Prisma.ModelName = {
User: 'User',
Post: 'Post',
Company: 'Company',
Team: 'Team',
Onboarding: 'Onboarding',
};

/**
* This is a stub Prisma Client that will error at runtime if called.
*/
class PrismaClient {
constructor() {
return new Proxy(this, {
get(target, prop) {
let message;
const runtime = getRuntime();
if (runtime.isEdge) {
message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either:
- Use Prisma Accelerate: https://pris.ly/d/accelerate
- Use Driver Adapters: https://pris.ly/d/driver-adapters
`;
} else {
message =
'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' +
runtime.prettyName +
'`).';
}

message += `
If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report`;

throw new Error(message);
},
});
}
}

exports.PrismaClient = PrismaClient;

Object.assign(exports, Prisma);
Loading