Update package names

This commit is contained in:
Darren Clarke 2024-06-05 08:52:41 +02:00
parent 89d229eba9
commit 85a0fc11e5
106 changed files with 1908 additions and 2686 deletions

View file

@ -1,4 +1,4 @@
import { Database } from "bridge-common";
import { Database } from "@link-stack/bridge-common";
import {
createAction,
updateAction,

View file

@ -1,6 +1,6 @@
import { NextRequest, NextResponse } from "next/server";
import { Service } from "./service";
import { db, getWorkerUtils } from "bridge-common";
import { db, getWorkerUtils } from "@link-stack/bridge-common";
export class Facebook extends Service {
async handleWebhook(req: NextRequest) {

View file

@ -1,6 +1,6 @@
import { NextRequest, NextResponse } from "next/server";
import { GridColDef } from "@mui/x-data-grid-pro";
import { Database, db, getWorkerUtils } from "bridge-common";
import { Database, db, getWorkerUtils } from "@link-stack/bridge-common";
import { getServiceTable } from "../config/config";
const entities = [

View file

@ -1,5 +1,5 @@
import { NextResponse } from "next/server";
import { db } from "bridge-common";
import { db } from "@link-stack/bridge-common";
import { revalidatePath } from "next/cache";
import { Service, ServiceParams } from "./service";