mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 22:37:29 +00:00
21 lines
519 B
TypeScript
21 lines
519 B
TypeScript
import type { PluginManifest } from "@logicsrc/plugin-core";
|
|
|
|
export const uGigManifest: PluginManifest = {
|
|
id: "ugig",
|
|
name: "uGig",
|
|
version: "1.0.0",
|
|
type: ["jobs", "gigs", "marketplace"],
|
|
default: true,
|
|
capabilities: [
|
|
"jobs.import",
|
|
"jobs.publish",
|
|
"gigs.sync",
|
|
"candidates.link",
|
|
"agents.link",
|
|
"tasks.publish_to_marketplace",
|
|
"bids.sync",
|
|
"reputation.sync"
|
|
],
|
|
commands: ["jobs", "gigs", "publish"],
|
|
env: ["UGIG_API_URL", "UGIG_API_KEY", "UGIG_WEBHOOK_SECRET"]
|
|
};
|