Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/bubble-studio/src/pages/CredentialsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ const getServiceNameForCredentialType = (
[CredentialType.NOTION_API]: 'Notion',
[CredentialType.INSFORGE_BASE_URL]: 'InsForge',
[CredentialType.INSFORGE_API_KEY]: 'InsForge',
[CredentialType.OLOSTEP_API_KEY]: 'Olostep',
[CredentialType.CUSTOM_AUTH_KEY]: 'Custom',
[CredentialType.AMAZON_CRED]: 'Amazon',
[CredentialType.BROWSERBASE_CRED]: 'BrowserBase',
Expand Down
5 changes: 5 additions & 0 deletions packages/bubble-core/src/bubble-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ export class BubbleFactory {
'metabase',
'clerk',
'granola',
'olostep',
];
}

Expand Down Expand Up @@ -466,6 +467,9 @@ export class BubbleFactory {
const { GranolaBubble } = await import(
'./bubbles/service-bubble/granola/index.js'
);
const { OlostepBubble } = await import(
'./bubbles/service-bubble/olostep.js'
);

// Create the default factory instance
this.register('hello-world', HelloWorldBubble as BubbleClassWithMetadata);
Expand Down Expand Up @@ -643,6 +647,7 @@ export class BubbleFactory {
this.register('metabase', MetabaseBubble as BubbleClassWithMetadata);
this.register('clerk', ClerkBubble as BubbleClassWithMetadata);
this.register('granola', GranolaBubble as BubbleClassWithMetadata);
this.register('olostep', OlostepBubble as BubbleClassWithMetadata);

// After all default bubbles are registered, auto-populate bubbleDependencies
if (!BubbleFactory.dependenciesPopulated) {
Expand Down
Loading