d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
82 lines
3.9 KiB
TypeScript
82 lines
3.9 KiB
TypeScript
// WordPress tools exports
|
|
import { createCategoryTool } from '@/tools/wordpress/create_category'
|
|
import { createCommentTool } from '@/tools/wordpress/create_comment'
|
|
import { createPageTool } from '@/tools/wordpress/create_page'
|
|
import { createPostTool } from '@/tools/wordpress/create_post'
|
|
import { createTagTool } from '@/tools/wordpress/create_tag'
|
|
import { deleteCategoryTool } from '@/tools/wordpress/delete_category'
|
|
import { deleteCommentTool } from '@/tools/wordpress/delete_comment'
|
|
import { deleteMediaTool } from '@/tools/wordpress/delete_media'
|
|
import { deletePageTool } from '@/tools/wordpress/delete_page'
|
|
import { deletePostTool } from '@/tools/wordpress/delete_post'
|
|
import { deleteTagTool } from '@/tools/wordpress/delete_tag'
|
|
import { getCategoryTool } from '@/tools/wordpress/get_category'
|
|
import { getCurrentUserTool } from '@/tools/wordpress/get_current_user'
|
|
import { getMediaTool } from '@/tools/wordpress/get_media'
|
|
import { getPageTool } from '@/tools/wordpress/get_page'
|
|
import { getPostTool } from '@/tools/wordpress/get_post'
|
|
import { getTagTool } from '@/tools/wordpress/get_tag'
|
|
import { getUserTool } from '@/tools/wordpress/get_user'
|
|
import { listCategoriesTool } from '@/tools/wordpress/list_categories'
|
|
import { listCommentsTool } from '@/tools/wordpress/list_comments'
|
|
import { listMediaTool } from '@/tools/wordpress/list_media'
|
|
import { listPagesTool } from '@/tools/wordpress/list_pages'
|
|
import { listPostsTool } from '@/tools/wordpress/list_posts'
|
|
import { listTagsTool } from '@/tools/wordpress/list_tags'
|
|
import { listUsersTool } from '@/tools/wordpress/list_users'
|
|
import { searchContentTool } from '@/tools/wordpress/search_content'
|
|
import { updateCategoryTool } from '@/tools/wordpress/update_category'
|
|
import { updateCommentTool } from '@/tools/wordpress/update_comment'
|
|
import { updatePageTool } from '@/tools/wordpress/update_page'
|
|
import { updatePostTool } from '@/tools/wordpress/update_post'
|
|
import { updateTagTool } from '@/tools/wordpress/update_tag'
|
|
import { uploadMediaTool } from '@/tools/wordpress/upload_media'
|
|
|
|
// Post operations
|
|
export const wordpressCreatePostTool = createPostTool
|
|
export const wordpressUpdatePostTool = updatePostTool
|
|
export const wordpressDeletePostTool = deletePostTool
|
|
export const wordpressGetPostTool = getPostTool
|
|
export const wordpressListPostsTool = listPostsTool
|
|
|
|
// Page operations
|
|
export const wordpressCreatePageTool = createPageTool
|
|
export const wordpressUpdatePageTool = updatePageTool
|
|
export const wordpressDeletePageTool = deletePageTool
|
|
export const wordpressGetPageTool = getPageTool
|
|
export const wordpressListPagesTool = listPagesTool
|
|
|
|
// Media operations
|
|
export const wordpressUploadMediaTool = uploadMediaTool
|
|
export const wordpressGetMediaTool = getMediaTool
|
|
export const wordpressListMediaTool = listMediaTool
|
|
export const wordpressDeleteMediaTool = deleteMediaTool
|
|
|
|
// Comment operations
|
|
export const wordpressCreateCommentTool = createCommentTool
|
|
export const wordpressListCommentsTool = listCommentsTool
|
|
export const wordpressUpdateCommentTool = updateCommentTool
|
|
export const wordpressDeleteCommentTool = deleteCommentTool
|
|
|
|
// Category operations
|
|
export const wordpressCreateCategoryTool = createCategoryTool
|
|
export const wordpressListCategoriesTool = listCategoriesTool
|
|
export const wordpressGetCategoryTool = getCategoryTool
|
|
export const wordpressUpdateCategoryTool = updateCategoryTool
|
|
export const wordpressDeleteCategoryTool = deleteCategoryTool
|
|
|
|
// Tag operations
|
|
export const wordpressCreateTagTool = createTagTool
|
|
export const wordpressListTagsTool = listTagsTool
|
|
export const wordpressGetTagTool = getTagTool
|
|
export const wordpressUpdateTagTool = updateTagTool
|
|
export const wordpressDeleteTagTool = deleteTagTool
|
|
|
|
// User operations
|
|
export const wordpressGetCurrentUserTool = getCurrentUserTool
|
|
export const wordpressListUsersTool = listUsersTool
|
|
export const wordpressGetUserTool = getUserTool
|
|
|
|
// Search operations
|
|
export const wordpressSearchContentTool = searchContentTool
|