Skip to content

Commit dcf3302

Browse files
authored
v0.6.49: deploy sockets event, resolver, logs improvements, monday.com integration, atlassian triggers
2 parents 8a50f18 + 38864fa commit dcf3302

File tree

135 files changed

+9015
-466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+9015
-466
lines changed

apps/docs/components/icons.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3602,6 +3602,29 @@ export function OpenRouterIcon(props: SVGProps<SVGSVGElement>) {
36023602
)
36033603
}
36043604

3605+
export function MondayIcon(props: SVGProps<SVGSVGElement>) {
3606+
return (
3607+
<svg
3608+
{...props}
3609+
viewBox='0 -50 256 256'
3610+
xmlns='http://www.w3.org/2000/svg'
3611+
preserveAspectRatio='xMidYMid'
3612+
>
3613+
<g>
3614+
<path
3615+
d='M31.8458633,153.488694 C20.3244423,153.513586 9.68073708,147.337265 3.98575204,137.321731 C-1.62714067,127.367831 -1.29055839,115.129325 4.86093879,105.498969 L62.2342919,15.4033556 C68.2125882,5.54538256 79.032489,-0.333585033 90.5563073,0.0146553508 C102.071737,0.290611552 112.546041,6.74705604 117.96667,16.9106216 C123.315033,27.0238906 122.646488,39.1914174 116.240607,48.6847625 L58.9037201,138.780375 C52.9943022,147.988884 42.7873202,153.537154 31.8458633,153.488694 L31.8458633,153.488694 Z'
3616+
fill='#F62B54'
3617+
/>
3618+
<path
3619+
d='M130.25575,153.488484 C118.683837,153.488484 108.035731,147.301291 102.444261,137.358197 C96.8438154,127.431292 97.1804475,115.223704 103.319447,105.620522 L160.583402,15.7315506 C166.47539,5.73210989 177.327374,-0.284878136 188.929728,0.0146553508 C200.598885,0.269918151 211.174058,6.7973526 216.522421,17.0078646 C221.834319,27.2183766 221.056375,39.4588356 214.456008,48.9278699 L157.204209,138.816842 C151.313487,147.985468 141.153618,153.5168 130.25575,153.488484 Z'
3620+
fill='#FFCC00'
3621+
/>
3622+
<ellipse fill='#00CA72' cx='226.465527' cy='125.324379' rx='29.5375538' ry='28.9176274' />
3623+
</g>
3624+
</svg>
3625+
)
3626+
}
3627+
36053628
export function MongoDBIcon(props: SVGProps<SVGSVGElement>) {
36063629
return (
36073630
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'>

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ import {
119119
MicrosoftSharepointIcon,
120120
MicrosoftTeamsIcon,
121121
MistralIcon,
122+
MondayIcon,
122123
MongoDBIcon,
123124
MySQLIcon,
124125
Neo4jIcon,
@@ -327,6 +328,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
327328
microsoft_teams: MicrosoftTeamsIcon,
328329
mistral_parse: MistralIcon,
329330
mistral_parse_v3: MistralIcon,
331+
monday: MondayIcon,
330332
mongodb: MongoDBIcon,
331333
mysql: MySQLIcon,
332334
neo4j: Neo4jIcon,

apps/docs/content/docs/en/execution/costs.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -367,12 +367,12 @@ Sim uses a **base subscription + overage** billing model:
367367

368368
### Threshold Billing
369369

370-
When on-demand is enabled and unbilled overage reaches $50, Sim automatically bills the full unbilled amount.
370+
When on-demand is enabled and unbilled overage reaches $100, Sim automatically bills the full unbilled amount.
371371

372372
**Example:**
373-
- Day 10: $70 overage → Bill $70 immediately
374-
- Day 15: Additional $35 usage ($105 total) → Already billed, no action
375-
- Day 20: Another $50 usage ($155 total, $85 unbilled) → Bill $85 immediately
373+
- Day 10: $120 overage → Bill $120 immediately
374+
- Day 15: Additional $60 usage ($180 total) → Already billed, no action
375+
- Day 20: Another $80 usage ($260 total, $140 unbilled) → Bill $140 immediately
376376

377377
This spreads large overage charges throughout the month instead of one large bill at period end.
378378

@@ -480,5 +480,5 @@ import { FAQ } from '@/components/ui/faq'
480480
{ question: "What happens when I exceed my plan's credit limit?", answer: "By default, your usage is capped at your plan's included credits and runs will stop. If you enable on-demand billing or manually raise your usage limit in Settings, you can continue running workflows and pay for the overage at the end of the billing period." },
481481
{ question: "How does the 1.1x hosted model multiplier work?", answer: "When you use Sim's hosted API keys (instead of bringing your own), a 1.1x multiplier is applied to the base model pricing for Agent blocks. This covers infrastructure and API management costs. You can avoid this multiplier by using your own API keys via the BYOK feature." },
482482
{ question: "Are there any free options for AI models?", answer: "Yes. If you run local models through Ollama or VLLM, there are no API costs for those model calls. You still pay the base run charge of 1 credit per run." },
483-
{ question: "When does threshold billing trigger?", answer: "When on-demand billing is enabled and your unbilled overage reaches $50, Sim automatically bills the full unbilled amount. This spreads large charges throughout the month instead of accumulating one large bill at period end." },
483+
{ question: "When does threshold billing trigger?", answer: "When on-demand billing is enabled and your unbilled overage reaches $100, Sim automatically bills the full unbilled amount. This spreads large charges throughout the month instead of accumulating one large bill at period end." },
484484
]} />

apps/docs/content/docs/en/tools/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
"microsoft_planner",
116116
"microsoft_teams",
117117
"mistral_parse",
118+
"monday",
118119
"mongodb",
119120
"mysql",
120121
"neo4j",

0 commit comments

Comments
 (0)