Skip to content

Commit

Permalink
Add tokens bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
lluis-protofy-xyz committed Oct 31, 2024
1 parent d053be5 commit b25a9f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/protolib/src/bundles/coreApis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { AssistantAPI } from './assistant/assistantAPI';
import { MasksAPI } from './visualui/masksAPI';
import { LogsAPI } from './logs/logsAPI'
import { ServicesAPI } from './services/servicesAPI'
import { TokensAPI } from './tokens/tokensAPI'
import { StateMachinesDefinitionsApi } from './stateMachines/stateMachineDefinitions/stateMachineDefinitionApi'
import { PackagesAPI } from './packages/packagesAPI'
import { FlowAPI } from './flow/flowAPI';
Expand All @@ -43,7 +44,8 @@ export const AdminAPIBundles = (app, context) => {
AssistantAPI(app, context)
MasksAPI(app, context)
LogsAPI(app, context)
ServicesAPI(app, context)
ServicesAPI(app, context)
TokensAPI(app, context)
PackagesAPI(app, context)
StateMachinesDefinitionsApi(app, context),
FlowAPI(app, context),
Expand Down
2 changes: 2 additions & 0 deletions packages/protolib/src/bundles/objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ObjectModel } from './objects/objectsSchemas'
import { WorkspaceModel } from './workspaces/WorkspaceModel'
import { APIModel } from './apis/APISchemas'
import { PageModel } from './pages/pagesSchemas'
import { TokenModel } from './tokens/tokensSchemas'

export default {
event: EventModel,
Expand All @@ -16,4 +17,5 @@ export default {
workspace: WorkspaceModel,
api: APIModel,
page: PageModel,
token: TokenModel
}

0 comments on commit b25a9f2

Please sign in to comment.