@botpress/api 1.53.0 → 1.53.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -5
- package/package.json +1 -1
- package/.turbo/turbo-openapi.log +0 -51
- package/src/gen/admin/metadata.json +0 -1
- package/src/gen/admin/openapi.json +0 -1
- package/src/gen/admin/state.ts +0 -18313
- package/src/gen/files/metadata.json +0 -1
- package/src/gen/files/openapi.json +0 -1
- package/src/gen/files/state.ts +0 -2824
- package/src/gen/metadata.json +0 -1
- package/src/gen/openapi.json +0 -1
- package/src/gen/runtime/metadata.json +0 -1
- package/src/gen/runtime/openapi.json +0 -1
- package/src/gen/runtime/state.ts +0 -4528
- package/src/gen/state.ts +0 -24549
- package/src/gen/tables/metadata.json +0 -1
- package/src/gen/tables/openapi.json +0 -1
- package/src/gen/tables/state.ts +0 -2553
- package/src/index.ts +0 -21
package/src/index.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { OpenApi } from '@bpinternal/opapi'
|
|
2
|
-
import { state as runtimeState } from './gen/runtime/state'
|
|
3
|
-
import { state as adminState } from './gen/admin/state'
|
|
4
|
-
import { state as filesState } from './gen/files/state'
|
|
5
|
-
import { state as tablesState } from './gen/tables/state'
|
|
6
|
-
import { state as publicState } from './gen/state'
|
|
7
|
-
|
|
8
|
-
export * from './gen/state'
|
|
9
|
-
export const api = OpenApi.fromState(publicState)
|
|
10
|
-
|
|
11
|
-
export * as runtime from './gen/runtime/state'
|
|
12
|
-
export const runtimeApi = OpenApi.fromState(runtimeState)
|
|
13
|
-
|
|
14
|
-
export * as admin from './gen/admin/state'
|
|
15
|
-
export const adminApi = OpenApi.fromState(adminState)
|
|
16
|
-
|
|
17
|
-
export * as files from './gen/files/state'
|
|
18
|
-
export const filesApi = OpenApi.fromState(filesState)
|
|
19
|
-
|
|
20
|
-
export * as tables from './gen/tables/state'
|
|
21
|
-
export const tablesApi = OpenApi.fromState(tablesState)
|