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
+14
View File
@@ -0,0 +1,14 @@
import { runtimeApi, adminApi, filesApi, tablesApi, api as publicApi, billingApi } from '@botpress/api'
const options = {
generator: 'opapi',
ignoreDefaultParameters: true,
ignoreSecurity: true,
} as const
void publicApi.exportClient('./src/gen/public', { generator: 'opapi' })
void runtimeApi.exportClient('./src/gen/runtime', options)
void adminApi.exportClient('./src/gen/admin', options)
void filesApi.exportClient('./src/gen/files', options)
void tablesApi.exportClient('./src/gen/tables', options)
void billingApi.exportClient('./src/gen/billing', options)