chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:48 +08:00
commit 77bb5bf71f
3762 changed files with 353249 additions and 0 deletions
@@ -0,0 +1,23 @@
import { z, IntegrationDefinition } from '@botpress/sdk'
import { actions } from './definitions'
export default new IntegrationDefinition({
name: 'mintlify',
title: 'Mintlify',
description: 'Create and retrieve agent jobs in your Mintlify documentation',
version: '1.0.1',
readme: 'hub.md',
icon: 'icon.svg',
configuration: {
schema: z.object({
apiKey: z.string().title('API key').describe('Your Mintlify API key'),
projectId: z.string().title('Project ID').describe('Your Mintlify project ID'),
}),
},
actions,
attributes: {
category: 'File Management',
guideSlug: 'mintlify',
repo: 'botpress',
},
})