Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge development into main #34

Merged
merged 17 commits into from
Jan 16, 2025
Merged
Changes from 1 commit
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
Next Next commit
chore: bump sdk
  • Loading branch information
gentlementlegen committed Jan 8, 2025

Verified

This commit was signed with the committer’s verified signature.
gcotelli Gabriel Omar Cotelli
commit 65e3ae5464d540417b1a25c89c1878e43f092fff
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createClient } from "@supabase/supabase-js";
import { createPlugin } from "@ubiquity-os/plugin-sdk";
import { createPlugin } from "@ubq-meniole/plugin-sdk";
import { ExecutionContext } from "hono";
import manifest from "../manifest.json";
import { createAdapters } from "./adapters";
@@ -9,7 +9,7 @@ import { Database } from "./types/database";
import { Env, envSchema } from "./types/env";
import { PluginSettings, pluginSettingsSchema } from "./types/plugin-input";
import { Command } from "./types/command";
import { Manifest } from "@ubiquity-os/plugin-sdk/manifest";
import { Manifest } from "@ubq-meniole/plugin-sdk/manifest";

export default {
async fetch(request: Request, env: Env, executionContext: ExecutionContext) {
2 changes: 1 addition & 1 deletion src/types/context.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Context as PluginContext } from "@ubiquity-os/plugin-sdk";
import { Context as PluginContext } from "@ubq-meniole/plugin-sdk";
import { createAdapters } from "../adapters";
import { Env } from "./env";
import { PluginSettings } from "./plugin-input";