mirror of
https://github.com/simstudioai/sim.git
synced 2026-08-31 01:11:53 +08:00
chore: re-record the page-graph baseline after staging's growth consumed its allowance
CI's "Repo audits" step failed on `check:tool-registry-boundary`. Measured before touching anything, because the reported growth (+32 and +42 modules on two routes) looked like this branch had dragged the selector registry somewhere new. It had not. Recording a baseline on clean `origin/staging` and diffing against this branch attributes the growth precisely: this branch: +1 to +4 modules per route, +35 total across 25 routes staging: the rest Staging's six merged commits landed both failing routes at exactly their tolerance — knowledge/[id] at +31 of an allowed +31, layout at +41 of +41 — so `check:tool-registry-boundary` passed there with nothing left over. This branch's +1 tipped both past the line. The next PR to touch anything would have tripped it just the same, whatever it contained. The +1..+4 is the selector consolidation's real cost: `selectorRegistry` is one static object, so a page reaching any selector reaches every provider, and this branch adds four (hubspot, managed-agent, imap, workspace). That is the same cost the 27 existing providers already impose, and it is what buys one option-list mechanism that works off the canvas. Also tried deferring the workspace provider's data-layer imports to fetch time. Reverted: this checker follows dynamic imports, so the numbers did not move, leaving only a Promise.all-of-imports shape that reads worse than the 27 sibling providers it sits next to. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -10,49 +10,49 @@
|
||||
"gateways": {}
|
||||
},
|
||||
"app/workspace/[workspaceId]/chat/[chatId]/page.tsx": {
|
||||
"modules": 2959,
|
||||
"modules": 2996,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/home/home.tsx": 1346,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/mothership-view.tsx": 1000,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/index.ts": 865,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/index.ts": 862,
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 312,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 304,
|
||||
"apps/sim/lib/auth/index.ts": 208
|
||||
"apps/sim/app/workspace/[workspaceId]/home/home.tsx": 1366,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/mothership-view.tsx": 1020,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/index.ts": 885,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/index.ts": 882,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 311,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 308,
|
||||
"apps/sim/lib/auth/index.ts": 209
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/files/[fileId]/page.tsx": {
|
||||
"modules": 1968,
|
||||
"modules": 1990,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 335,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/files.tsx": 293,
|
||||
"apps/sim/lib/auth/index.ts": 214,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 334,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/files.tsx": 296,
|
||||
"apps/sim/lib/auth/index.ts": 215,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/index.ts": 144,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/file-viewer.tsx": 130,
|
||||
"apps/sim/lib/api/contracts/index.ts": 108,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 103
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/files/[fileId]/view/page.tsx": {
|
||||
"modules": 58,
|
||||
"modules": 59,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/files/[fileId]/view/file-viewer.tsx": 57,
|
||||
"apps/sim/hooks/queries/workspace-files.ts": 54
|
||||
"apps/sim/app/workspace/[workspaceId]/files/[fileId]/view/file-viewer.tsx": 58,
|
||||
"apps/sim/hooks/queries/workspace-files.ts": 55
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/files/page.tsx": {
|
||||
"modules": 1968,
|
||||
"modules": 1990,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 335,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/files.tsx": 295,
|
||||
"apps/sim/lib/auth/index.ts": 214,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 334,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/files.tsx": 298,
|
||||
"apps/sim/lib/auth/index.ts": 215,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/index.ts": 144,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/file-viewer.tsx": 130,
|
||||
"apps/sim/lib/api/contracts/index.ts": 108,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 103
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/home/layout.tsx": {
|
||||
@@ -60,119 +60,119 @@
|
||||
"gateways": {}
|
||||
},
|
||||
"app/workspace/[workspaceId]/home/page.tsx": {
|
||||
"modules": 2959,
|
||||
"modules": 2996,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/home/home.tsx": 1346,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/mothership-view.tsx": 1000,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/index.ts": 865,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/index.ts": 862,
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 312,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 304,
|
||||
"apps/sim/lib/auth/index.ts": 208
|
||||
"apps/sim/app/workspace/[workspaceId]/home/home.tsx": 1366,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/mothership-view.tsx": 1020,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/index.ts": 885,
|
||||
"apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/index.ts": 882,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 311,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 308,
|
||||
"apps/sim/lib/auth/index.ts": 209
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/integrations/[block]/page.tsx": {
|
||||
"modules": 1300,
|
||||
"modules": 1315,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/[block]/integration-block-detail.tsx": 1273,
|
||||
"apps/sim/blocks/registry.ts": 919,
|
||||
"apps/sim/triggers/index.ts": 484,
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/[block]/integration-block-detail.tsx": 1289,
|
||||
"apps/sim/blocks/registry.ts": 932,
|
||||
"apps/sim/triggers/index.ts": 489,
|
||||
"apps/sim/lib/api/contracts/index.ts": 128,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 67,
|
||||
"apps/sim/hooks/queries/deployments.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 58
|
||||
"apps/sim/blocks/blocks/credential-group.ts": 105,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 80,
|
||||
"apps/sim/hooks/queries/deployments.ts": 73,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 70
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/integrations/connected/[credentialId]/page.tsx": {
|
||||
"modules": 1283,
|
||||
"modules": 1297,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/connected/[credentialId]/connected-credential-detail.tsx": 1282,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 342,
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/connected/[credentialId]/connected-credential-detail.tsx": 1296,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 341,
|
||||
"apps/sim/lib/api/contracts/index.ts": 134,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 64,
|
||||
"apps/sim/hooks/queries/deployments.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 58
|
||||
"apps/sim/stores/workflows/registry/store.ts": 75,
|
||||
"apps/sim/hooks/queries/deployments.ts": 72,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 69,
|
||||
"apps/sim/lib/workflows/comparison/resolve-values.ts": 66
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/integrations/page.tsx": {
|
||||
"modules": 1287,
|
||||
"modules": 1301,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx": 1007,
|
||||
"apps/sim/blocks/registry.ts": 920,
|
||||
"apps/sim/triggers/index.ts": 484,
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx": 1017,
|
||||
"apps/sim/blocks/registry.ts": 933,
|
||||
"apps/sim/triggers/index.ts": 489,
|
||||
"apps/sim/lib/api/contracts/index.ts": 130,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 67,
|
||||
"apps/sim/hooks/queries/deployments.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 58
|
||||
"apps/sim/blocks/blocks/credential-group.ts": 106,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 80,
|
||||
"apps/sim/hooks/queries/deployments.ts": 73,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 70
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/knowledge/[id]/[documentId]/page.tsx": {
|
||||
"modules": 1501,
|
||||
"modules": 1521,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/document.tsx": 1218,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 338,
|
||||
"apps/sim/blocks/registry-maps.ts": 335,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/document.tsx": 1234,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 337,
|
||||
"apps/sim/blocks/registry-maps.ts": 334,
|
||||
"apps/sim/lib/api/contracts/index.ts": 120,
|
||||
"apps/sim/connectors/registry.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 55
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 57
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/knowledge/[id]/page.tsx": {
|
||||
"modules": 1504,
|
||||
"modules": 1536,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/[id]/base.tsx": 1221,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 338,
|
||||
"apps/sim/blocks/registry-maps.ts": 335,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/[id]/base.tsx": 1249,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 337,
|
||||
"apps/sim/blocks/registry-maps.ts": 334,
|
||||
"apps/sim/lib/api/contracts/index.ts": 120,
|
||||
"apps/sim/connectors/registry.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 55
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 57
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/knowledge/page.tsx": {
|
||||
"modules": 2177,
|
||||
"modules": 2203,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 333,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/prefetch.ts": 273,
|
||||
"apps/sim/lib/knowledge/application/knowledge-bases.ts": 218,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/knowledge.tsx": 182,
|
||||
"apps/sim/lib/auth/index.ts": 163,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 332,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/prefetch.ts": 276,
|
||||
"apps/sim/lib/knowledge/application/knowledge-bases.ts": 220,
|
||||
"apps/sim/app/workspace/[workspaceId]/knowledge/knowledge.tsx": 186,
|
||||
"apps/sim/lib/auth/index.ts": 164,
|
||||
"apps/sim/lib/knowledge/orchestration/index.ts": 138,
|
||||
"apps/sim/lib/knowledge/orchestration/connectors.ts": 133
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/layout.tsx": {
|
||||
"modules": 2003,
|
||||
"modules": 2045,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 332,
|
||||
"apps/sim/app/workspace/[workspaceId]/components/workspace-chrome/index.ts": 279,
|
||||
"apps/sim/lib/auth/index.ts": 278,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx": 271,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/index.ts": 176,
|
||||
"apps/sim/lib/api/contracts/index.ts": 110,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 333,
|
||||
"apps/sim/app/workspace/[workspaceId]/components/workspace-chrome/index.ts": 304,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx": 296,
|
||||
"apps/sim/lib/auth/index.ts": 280,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/index.ts": 203,
|
||||
"apps/sim/lib/api/contracts/index.ts": 109,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 103
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/logs/page.tsx": {
|
||||
"modules": 1737,
|
||||
"modules": 1755,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/logs.tsx": 1456,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/components/index.ts": 421,
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/components/log-details/components/execution-snapshot/index.ts": 365,
|
||||
"apps/sim/blocks/registry.ts": 329,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/index.ts": 321,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 286,
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/logs.tsx": 1470,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/components/index.ts": 420,
|
||||
"apps/sim/app/workspace/[workspaceId]/logs/components/log-details/components/execution-snapshot/index.ts": 366,
|
||||
"apps/sim/blocks/registry.ts": 328,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/index.ts": 322,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 287,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx": 255
|
||||
}
|
||||
},
|
||||
@@ -185,16 +185,16 @@
|
||||
"gateways": {}
|
||||
},
|
||||
"app/workspace/[workspaceId]/settings/[section]/page.tsx": {
|
||||
"modules": 2039,
|
||||
"modules": 2062,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/app/workspace/[workspaceId]/settings/[section]/settings.tsx": 434,
|
||||
"apps/sim/blocks/registry.ts": 328,
|
||||
"apps/sim/lib/auth/index.ts": 288,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/app/workspace/[workspaceId]/settings/[section]/settings.tsx": 440,
|
||||
"apps/sim/blocks/registry.ts": 332,
|
||||
"apps/sim/lib/auth/index.ts": 290,
|
||||
"apps/sim/lib/api/contracts/index.ts": 107,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 103,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 59,
|
||||
"apps/sim/lib/uploads/utils/file-utils.server.ts": 42
|
||||
"apps/sim/app/workspace/[workspaceId]/settings/components/recently-deleted/recently-deleted.tsx": 42
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/settings/billing/credit-usage/layout.tsx": {
|
||||
@@ -202,16 +202,16 @@
|
||||
"gateways": {}
|
||||
},
|
||||
"app/workspace/[workspaceId]/settings/billing/credit-usage/page.tsx": {
|
||||
"modules": 1610,
|
||||
"modules": 1627,
|
||||
"gateways": {
|
||||
"apps/sim/lib/auth/index.ts": 1475,
|
||||
"apps/sim/triggers/index.ts": 449,
|
||||
"apps/sim/blocks/registry.ts": 342,
|
||||
"apps/sim/blocks/registry-maps.ts": 339,
|
||||
"apps/sim/lib/api/contracts/index.ts": 123,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 68,
|
||||
"apps/sim/hooks/queries/deployments.ts": 62
|
||||
"apps/sim/lib/auth/index.ts": 1491,
|
||||
"apps/sim/blocks/registry.ts": 621,
|
||||
"apps/sim/blocks/registry-maps.ts": 618,
|
||||
"apps/sim/triggers/index.ts": 453,
|
||||
"apps/sim/blocks/blocks/credential-group.ts": 269,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 252,
|
||||
"apps/sim/hooks/queries/deployments.ts": 244,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 239
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/settings/layout.tsx": {
|
||||
@@ -223,25 +223,25 @@
|
||||
"gateways": {}
|
||||
},
|
||||
"app/workspace/[workspaceId]/settings/secrets/[credentialId]/page.tsx": {
|
||||
"modules": 1317,
|
||||
"modules": 1333,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 344,
|
||||
"apps/sim/blocks/registry-maps.ts": 341,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 343,
|
||||
"apps/sim/blocks/registry-maps.ts": 340,
|
||||
"apps/sim/lib/api/contracts/index.ts": 135,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 64,
|
||||
"apps/sim/app/workspace/[workspaceId]/settings/secrets/[credentialId]/secret-detail.tsx": 63,
|
||||
"apps/sim/hooks/queries/deployments.ts": 61,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60
|
||||
"apps/sim/stores/workflows/registry/store.ts": 75,
|
||||
"apps/sim/hooks/queries/deployments.ts": 72,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 69,
|
||||
"apps/sim/lib/workflows/comparison/resolve-values.ts": 66
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/skills/[skillId]/page.tsx": {
|
||||
"modules": 1402,
|
||||
"modules": 1418,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/[skillId]/skill-detail.tsx": 1401,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 343,
|
||||
"apps/sim/blocks/registry-maps.ts": 341,
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/[skillId]/skill-detail.tsx": 1417,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 342,
|
||||
"apps/sim/blocks/registry-maps.ts": 340,
|
||||
"apps/sim/lib/api/contracts/index.ts": 126,
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/components/skill-fields/index.ts": 89,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/rich-markdown-editor/rich-markdown-field.tsx": 86,
|
||||
@@ -249,12 +249,12 @@
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/skills/new/page.tsx": {
|
||||
"modules": 1400,
|
||||
"modules": 1416,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/new/skill-create.tsx": 1399,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 343,
|
||||
"apps/sim/blocks/registry-maps.ts": 341,
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/new/skill-create.tsx": 1415,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 342,
|
||||
"apps/sim/blocks/registry-maps.ts": 340,
|
||||
"apps/sim/lib/api/contracts/index.ts": 126,
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/components/skill-fields/index.ts": 89,
|
||||
"apps/sim/app/workspace/[workspaceId]/files/components/file-viewer/rich-markdown-editor/rich-markdown-field.tsx": 86,
|
||||
@@ -262,120 +262,120 @@
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/skills/page.tsx": {
|
||||
"modules": 1268,
|
||||
"modules": 1284,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/skills.tsx": 988,
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/components/showcase-with-explore/index.ts": 976,
|
||||
"apps/sim/blocks/registry.ts": 964,
|
||||
"apps/sim/blocks/registry-maps.ts": 962,
|
||||
"apps/sim/triggers/index.ts": 484,
|
||||
"apps/sim/app/workspace/[workspaceId]/skills/skills.tsx": 1000,
|
||||
"apps/sim/app/workspace/[workspaceId]/integrations/components/showcase-with-explore/index.ts": 988,
|
||||
"apps/sim/blocks/registry.ts": 976,
|
||||
"apps/sim/blocks/registry-maps.ts": 974,
|
||||
"apps/sim/triggers/index.ts": 489,
|
||||
"apps/sim/lib/api/contracts/index.ts": 135,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 74,
|
||||
"apps/sim/hooks/queries/deployments.ts": 68
|
||||
"apps/sim/blocks/blocks/credential-group.ts": 119,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 91
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/tables/[tableId]/page.tsx": {
|
||||
"modules": 2236,
|
||||
"modules": 2256,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/tables/[tableId]/table.tsx": 584,
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/index.ts": 335,
|
||||
"apps/sim/blocks/registry.ts": 312,
|
||||
"apps/sim/lib/auth/index.ts": 309,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/index.ts": 293,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 265,
|
||||
"apps/sim/app/workspace/[workspaceId]/tables/[tableId]/table.tsx": 585,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/index.ts": 336,
|
||||
"apps/sim/blocks/registry.ts": 311,
|
||||
"apps/sim/lib/auth/index.ts": 311,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/index.ts": 294,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 266,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx": 235
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/tables/page.tsx": {
|
||||
"modules": 1827,
|
||||
"modules": 1849,
|
||||
"gateways": {
|
||||
"apps/sim/triggers/registry.ts": 448,
|
||||
"apps/sim/blocks/registry.ts": 334,
|
||||
"apps/sim/lib/auth/index.ts": 299,
|
||||
"apps/sim/app/workspace/[workspaceId]/tables/tables.tsx": 140,
|
||||
"apps/sim/triggers/registry.ts": 452,
|
||||
"apps/sim/blocks/registry.ts": 333,
|
||||
"apps/sim/lib/auth/index.ts": 300,
|
||||
"apps/sim/app/workspace/[workspaceId]/tables/tables.tsx": 143,
|
||||
"apps/sim/lib/api/contracts/index.ts": 112,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 102,
|
||||
"apps/sim/lib/webhooks/providers/index.ts": 103,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60,
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 53
|
||||
"apps/sim/app/workspace/[workspaceId]/components/index.ts": 55
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/upgrade/page.tsx": {
|
||||
"modules": 268,
|
||||
"modules": 270,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/upgrade/upgrade.tsx": 261,
|
||||
"apps/sim/app/workspace/[workspaceId]/upgrade/hooks/index.ts": 214,
|
||||
"apps/sim/lib/billing/client/upgrade.ts": 206,
|
||||
"apps/sim/hooks/queries/organization.ts": 202,
|
||||
"apps/sim/hooks/queries/workspace.ts": 194,
|
||||
"apps/sim/lib/api/contracts/index.ts": 192,
|
||||
"apps/sim/app/workspace/[workspaceId]/upgrade/upgrade.tsx": 263,
|
||||
"apps/sim/app/workspace/[workspaceId]/upgrade/hooks/index.ts": 216,
|
||||
"apps/sim/lib/billing/client/upgrade.ts": 208,
|
||||
"apps/sim/hooks/queries/organization.ts": 204,
|
||||
"apps/sim/hooks/queries/workspace.ts": 196,
|
||||
"apps/sim/lib/api/contracts/index.ts": 194,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 61,
|
||||
"apps/sim/lib/api/contracts/v1/index.ts": 38
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/w/[workflowId]/layout.tsx": {
|
||||
"modules": 2187,
|
||||
"modules": 2226,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/error/index.tsx": 2186,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/index.ts": 545,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/index.ts": 462,
|
||||
"apps/sim/blocks/registry.ts": 329,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/error/index.tsx": 2225,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/index.ts": 544,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/index.ts": 461,
|
||||
"apps/sim/blocks/registry.ts": 328,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/index.ts": 289,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 145,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx": 138
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx": 162,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/index.ts": 151
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/w/[workflowId]/page.tsx": {
|
||||
"modules": 2214,
|
||||
"modules": 2253,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 2213,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 329,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx": 2252,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 328,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/index.ts": 308,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/index.ts": 270,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/index.ts": 227,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 143,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx": 136
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/error/index.tsx": 155,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/index.ts": 144
|
||||
}
|
||||
},
|
||||
"app/workspace/[workspaceId]/w/page.tsx": {
|
||||
"modules": 2187,
|
||||
"modules": 2226,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/index.ts": 922,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/index.ts": 462,
|
||||
"apps/sim/blocks/registry.ts": 329,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/index.ts": 947,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/index.ts": 461,
|
||||
"apps/sim/blocks/registry.ts": 328,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/index.ts": 289,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 145,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/error/index.tsx": 139,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx": 138
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/error/index.tsx": 163,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/index.ts": 151,
|
||||
"apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/index.ts": 145
|
||||
}
|
||||
},
|
||||
"app/workspace/layout.tsx": {
|
||||
"modules": 1219,
|
||||
"modules": 1233,
|
||||
"gateways": {
|
||||
"apps/sim/app/workspace/providers/socket-provider.tsx": 1209,
|
||||
"apps/sim/triggers/registry.ts": 483,
|
||||
"apps/sim/blocks/registry.ts": 344,
|
||||
"apps/sim/blocks/registry-maps.ts": 341,
|
||||
"apps/sim/lib/api/contracts/index.ts": 139,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 67,
|
||||
"apps/sim/hooks/queries/deployments.ts": 64,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 61
|
||||
"apps/sim/app/workspace/providers/socket-provider.tsx": 1223,
|
||||
"apps/sim/triggers/registry.ts": 488,
|
||||
"apps/sim/blocks/registry.ts": 343,
|
||||
"apps/sim/blocks/registry-maps.ts": 340,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 271,
|
||||
"apps/sim/hooks/queries/deployments.ts": 268,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 262,
|
||||
"apps/sim/lib/workflows/comparison/resolve-values.ts": 259
|
||||
}
|
||||
},
|
||||
"app/workspace/page.tsx": {
|
||||
"modules": 1213,
|
||||
"modules": 1227,
|
||||
"gateways": {
|
||||
"apps/sim/lib/auth/stale-session-recovery.ts": 981,
|
||||
"apps/sim/triggers/index.ts": 484,
|
||||
"apps/sim/blocks/registry.ts": 344,
|
||||
"apps/sim/blocks/registry-maps.ts": 341,
|
||||
"apps/sim/lib/auth/stale-session-recovery.ts": 993,
|
||||
"apps/sim/triggers/index.ts": 489,
|
||||
"apps/sim/blocks/registry.ts": 343,
|
||||
"apps/sim/blocks/registry-maps.ts": 340,
|
||||
"apps/sim/lib/api/contracts/index.ts": 138,
|
||||
"apps/sim/stores/workflows/registry/store.ts": 66,
|
||||
"apps/sim/hooks/queries/deployments.ts": 60,
|
||||
"apps/sim/lib/api/contracts/tools/index.ts": 60
|
||||
"apps/sim/stores/workflows/registry/store.ts": 81,
|
||||
"apps/sim/hooks/queries/deployments.ts": 74,
|
||||
"apps/sim/lib/workflows/comparison/compare.ts": 71
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user