diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6113ef8768..9825437213 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: runs-on: ubuntu-latest outputs: docs_only: ${{ steps.docs_only_route.outputs.docs_only }} + frontend_only: ${{ steps.docs_only_route.outputs.frontend_only }} all_changed: ${{ steps.filter.outputs.all_changed }} core_code: ${{ steps.filter.outputs.core_code }} product_runtime: ${{ steps.filter.outputs.product_runtime }} @@ -130,18 +131,29 @@ jobs: console_web: - 'apps/aevatar-console-web/**' - '.github/workflows/ci.yml' + frontend_paths: + - 'apps/aevatar-console-web/**' - - name: Resolve Doc-Only Route + - name: Resolve Change Scope id: docs_only_route env: ALL_CHANGED_COUNT: ${{ steps.filter.outputs.all_changed_count }} DOCS_ONLY_COUNT: ${{ steps.filter.outputs.docs_only_count }} + FRONTEND_CHANGED_COUNT: ${{ steps.filter.outputs.frontend_paths_count }} run: | if [ "${ALL_CHANGED_COUNT:-0}" != "0" ] && [ "${ALL_CHANGED_COUNT:-0}" = "${DOCS_ONLY_COUNT:-0}" ]; then echo "docs_only=true" >> "$GITHUB_OUTPUT" else echo "docs_only=false" >> "$GITHUB_OUTPUT" fi + if [ "${ALL_CHANGED_COUNT:-0}" != "0" ] && [ "${ALL_CHANGED_COUNT:-0}" = "${FRONTEND_CHANGED_COUNT:-0}" ]; then + echo "frontend_only=true" >> "$GITHUB_OUTPUT" + else + echo "frontend_only=false" >> "$GITHUB_OUTPUT" + fi + + - name: Verify Change Scope Routing + run: python3 tools/ci/tests/test_ci_change_scope.py fkst-host-policy: if: | @@ -233,19 +245,54 @@ jobs: - name: Test Stability Guards run: bash tools/ci/test_stability_guards.sh + console-web-tests: + if: needs.changes.outputs.docs_only == 'false' && needs.changes.outputs.console_web == 'true' + needs: changes + runs-on: ubuntu-latest + timeout-minutes: 35 + strategy: + fail-fast: false + matrix: + shard: [1, 2, 3, 4] + steps: + - uses: actions/checkout@v4 + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10.2.1 + run_install: false + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: pnpm + cache-dependency-path: apps/aevatar-console-web/pnpm-lock.yaml + + - name: Install console-web dependencies + run: pnpm --dir apps/aevatar-console-web install --frozen-lockfile + + - name: Test console-web shard + run: pnpm --dir apps/aevatar-console-web test --runInBand --shard=${{ matrix.shard }}/4 + console-web: # Refactor (iter16/cluster-ci-systemic-refactor): # Old pattern: console-web skipped scheduled CI and ran for every PR, workflow_dispatch, main/dev push, or console_web changes # New principle: gate on changes.outputs.console_web per Phase 9 #716 r3 consensus A - if: needs.changes.outputs.docs_only == 'false' && needs.changes.outputs.console_web == 'true' - needs: changes + # Keep the existing required check name and fail it if any test shard fails + # or is cancelled. All tests run once across the four Jest partitions. + if: always() && needs.changes.outputs.docs_only == 'false' && needs.changes.outputs.console_web == 'true' + needs: [changes, console-web-tests] runs-on: ubuntu-latest - # The serial suite grew into this budget: recent runs took 19m02s, 19m35s, - # 19m57s, then 20m10s and 20m17s, the last two cancelled mid-test at the - # 20m cap. The ~18m of test work is real, so give it headroom rather than - # letting every run decide the build on runner jitter. - timeout-minutes: 35 + # Retain the base branch's budget for typecheck, build, and canvas benchmark. + timeout-minutes: 45 steps: + - name: Require all console-web test shards + env: + TEST_SHARDS_RESULT: ${{ needs.console-web-tests.result }} + run: test "$TEST_SHARDS_RESULT" = success + - uses: actions/checkout@v4 - name: Setup pnpm @@ -267,12 +314,22 @@ jobs: - name: Type-check console-web run: pnpm --dir apps/aevatar-console-web tsc - - name: Test console-web - run: pnpm --dir apps/aevatar-console-web test --runInBand - - name: Build console-web + env: + AEVATAR_WORKFLOW_CANVAS_BENCHMARK: '1' run: pnpm --dir apps/aevatar-console-web build + - name: Benchmark workflow canvas + run: pnpm --dir apps/aevatar-console-web benchmark:workflow-canvas + + - name: Upload workflow canvas benchmark + if: always() + uses: actions/upload-artifact@v4 + with: + name: workflow-canvas-benchmark + path: apps/aevatar-console-web/artifacts/workflow-canvas-benchmark + if-no-files-found: warn + slow-test-guards: needs: changes # Refactor (iter18/cluster-019-strict-coverage-aevatar-slnx): @@ -388,11 +445,17 @@ jobs: # Old pattern: coverage_quality_guard.sh 吞 test fail 继续 emit coverage;split-test-guards 漏跑 22 orphan project # New principle: strict-coverage fail-fast(不吞 fail);aevatar.slnx-or-slow-test 唯一测试权威; # retire slnf 测试执行(只保留 slnf build boundary);slow-tests 独立 CI job + # Frontend-only PRs do not need backend coverage, regardless of their target branch. + # Mixed changes and changes to CI/build infrastructure retain this gate. if: | github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev')) || - needs.changes.outputs.docs_only == 'false' + ( + github.event_name == 'pull_request' && + needs.changes.outputs.frontend_only != 'true' && + needs.changes.outputs.docs_only == 'false' + ) runs-on: ubuntu-latest # Full coverage takes 34-35 minutes after a roughly 10-minute restore/build, # then still needs time to upload the report. Keep the fail-fast guard while diff --git a/apps/aevatar-console-web/AGENTS.md b/apps/aevatar-console-web/AGENTS.md index c4085866da..7a345d6867 100644 --- a/apps/aevatar-console-web/AGENTS.md +++ b/apps/aevatar-console-web/AGENTS.md @@ -133,6 +133,58 @@ pnpm --dir apps/aevatar-console-web build - Do not add or preserve hidden `/teams/:scopeId...` compatibility routes. Parse paths by resource name, not by fragile segment indexes. +## Workflow Activity vNext Baseline + +- Before changing any route, page, component, hook, query, adapter, model, + style, locale, or test for + `/scopes/:scopeId/workflow-activity-vnext`, read all three of these sources + completely: + `docs/design-baselines/workflow-activity-vnext/README.md` and + `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-design.md` and + `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-user-paths.md`. +- Treat + `docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.excalidraw` + as the primary visual, information-architecture, and interaction reference. + Treat the design specification as the normative route, product identity, + API, state, and backend-compatibility contract. Treat the user-path + specification as the normative journey, decision, recovery, and completion + evidence contract. +- The PNG and HTML prototypes are reference artifacts, not runtime data + sources. Never copy their hard-coded records, `localStorage` persistence, + timers, simulated receipts, or successful-looking defaults into production + code. +- Production remote state must come from real API responses or real user + actions acknowledged by those APIs. When an API is pending, empty, + unavailable, delayed, or failed, render that exact state; do not insert mock + or fixture fallback data. +- Keep mock and fixture data in clearly named test-only files. Production + routes, components, hooks, queries, and API adapters must not import them. +- Reuse the existing protected-route, `/login`, `/auth/callback`, + `NyxIDAuthClient`, sanitized `returnTo`, session restoration, sign-in, + sign-out, and service-access review behavior. Do not create a vNext auth + route, provider, callback, token cache, session store, or identity fallback. +- Reuse the existing Umi locale configuration, `ConsoleLanguageSwitch`, + `getLocale`/`setLocale`, message helpers, and `en-US`/`zh-CN` catalogues. Add + every new vNext message to both catalogues; do not create a vNext locale + context, storage key, or hard-coded visible-copy path. +- Login, callback, language, and account presentation may adopt the vNext + visual system, but auth, redirect, callback, session, language, persistence, + error, and accessibility behavior must remain unchanged. If vNext hides the + global header, reuse its existing language/account actions inside the local + shell rather than cloning their logic. +- Include the design-baseline declaration from + `docs/design-baselines/workflow-activity-vnext/README.md` in every vNext + implementation task and pull request so the Excalidraw hash, contract + documents, user paths, and real-API-only data-source rule are reviewable. +- Run + `python3 docs/design-baselines/workflow-activity-vnext/verify-baseline.py` + from `apps/aevatar-console-web/` before and after changing the baseline. The + verifier must confirm the declared hash, deterministic generator output, and + exact 17-frame inventory. +- Keep this feature frontend-only and isolated to its new route namespace. + Do not change backend code or alter existing Workflow, Run, Settings, Studio, + Team, member, redirect, or menu behavior to implement it. + ## UI and Interaction - For page, component, console, playground, or visual-polish work, follow @@ -148,6 +200,32 @@ pnpm --dir apps/aevatar-console-web build magic values. - Treat the console as an operational tool: prioritize scannability, clear hierarchy, predictable navigation, and efficient repeated actions. +- Every visible title or heading must add distinct orientation, resource + identity, current-state, or task meaning. Do not repeat the same noun at the + modal/drawer shell and content levels, and do not add helper copy that merely + paraphrases an adjacent heading. Prefer one resource-owned container title; + add a nested heading only when it names a genuinely different state, view, + or user task. +- Scope asynchronous loading feedback to the data region owned by the query or + command. Keep committed sibling regions mounted and usable, preserving their + selection and scroll position when they are not being reloaded. Use a + whole-workspace loading state only when the initiating operation actually + invalidates or blocks the whole workspace. +- Reuse the shared loading language instead of composing page-local spinners or + indicator cards: use `AevatarContentSkeleton` for an initial structured data + surface, `AevatarLoadingOverlay` when a command temporarily blocks committed + content, and `AevatarLoadingDots` only for compact inline progress. +- Default user-facing surfaces must show only information needed to understand + the current task, result, or next action. Do not expose backend architecture, + transport, storage, or consistency terminology such as `read model`, + `projection`, `materialization`, `receipt`, raw actor/command/correlation + identifiers, state versions/watermarks, DTO or endpoint names, or query + sampling limits in page titles, descriptions, helper copy, primary tables, + empty states, or primary error messages. Preserve truthful loading, accepted, + delayed, and failed semantics in plain product language. When raw values are + genuinely useful for support or debugging, place them behind an explicit, + user-opened technical-details disclosure instead of making them the default + interface. - Preserve responsive behavior, keyboard access, focus visibility, semantic controls, and readable contrast. Verify dense real content and narrow mobile widths without overlap, clipping, or inaccessible actions. @@ -157,6 +235,34 @@ pnpm --dir apps/aevatar-console-web build - Use established icon libraries and control patterns. Add accessible names or tooltips for icon-only or unfamiliar actions. +### Action Feedback and Toasts + +- Use the shared `ConsoleToastProvider` and `useConsoleToast` from + `src/shared/ui/ConsoleToast.tsx` for transient user-action feedback. Do not + introduce new direct `antd` `message` or `notification` calls inside React + product surfaces. Non-React transport error boundaries retain their existing + handling unless the boundary receives a deliberate React-safe migration. +- A success toast is evidence of a completed user-visible action, not of a + click, request dispatch, `202 Accepted` response, local optimistic update, + or background observation still in progress. Show it only after the API + contract has reached the state the copy claims. +- Keep a toast short, localized, and action-oriented. Do not put endpoint + names, DTO fields, request IDs, raw backend errors, or recovery diagnostics + in it; expose those through the surface's existing technical-details path. +- Report transient API request failures through the shared error toast. Do not + add page-wide warning or error banners above otherwise usable content, and + do not render an error while another request required to classify the same + state is still pending. +- Use persistent inline state, alerts, or panels for loading, accepted, + observing, delayed, retryable, authorization, forbidden, and primary-content + failures where the user needs a durable next step. A toast must not be the + only evidence of a durable status or recovery action. +- Emit at most one toast for one user action. Avoid success toasts for local + form edits that still require an explicit page-level save. Migrate touched + user-feedback paths to the shared abstraction while preserving legacy + behavior outside the requested surface unless a deliberate migration is in + scope. + ## Change and Review Hygiene - Branch names use `/YYYY-MM-DD_`, where `` is one of diff --git a/apps/aevatar-console-web/config/config.ts b/apps/aevatar-console-web/config/config.ts index 04da71021f..e84a9615db 100644 --- a/apps/aevatar-console-web/config/config.ts +++ b/apps/aevatar-console-web/config/config.ts @@ -1,9 +1,9 @@ // https://umijs.org/config/ import { defineConfig } from '@umijs/max'; +import { aevatarThemeConfig } from '../src/shared/ui/aevatarWorkbench'; import defaultSettings from './defaultSettings'; import proxy from './proxy'; -import { aevatarThemeConfig } from '../src/shared/ui/aevatarWorkbench'; import routes from './routes'; @@ -15,7 +15,9 @@ function resolvePublicPath(value?: string): string { return '/'; } - const rootRelative = normalized.startsWith('/') ? normalized : `/${normalized}`; + const rootRelative = normalized.startsWith('/') + ? normalized + : `/${normalized}`; return rootRelative.endsWith('/') ? rootRelative : `${rootRelative}/`; } @@ -157,13 +159,14 @@ const config: ReturnType = defineConfig({ define: { 'process.env.CI': JSON.stringify(process.env.CI), 'process.env.NYXID_BASE_URL': JSON.stringify(process.env.NYXID_BASE_URL), - 'process.env.NYXID_CLIENT_ID': JSON.stringify( - process.env.NYXID_CLIENT_ID, - ), + 'process.env.NYXID_CLIENT_ID': JSON.stringify(process.env.NYXID_CLIENT_ID), 'process.env.NYXID_REDIRECT_URI': JSON.stringify( process.env.NYXID_REDIRECT_URI, ), 'process.env.NYXID_SCOPE': JSON.stringify(process.env.NYXID_SCOPE), + 'process.env.AEVATAR_CHANNEL_WEBHOOK_BASE_URL': JSON.stringify( + process.env.AEVATAR_CHANNEL_WEBHOOK_BASE_URL, + ), 'process.env.ORNN_BASE_URL': JSON.stringify(process.env.ORNN_BASE_URL), 'process.env.AEVATAR_CONSOLE_TEAM_FIRST_ENABLED': JSON.stringify( process.env.AEVATAR_CONSOLE_TEAM_FIRST_ENABLED, @@ -171,6 +174,9 @@ const config: ReturnType = defineConfig({ 'process.env.AEVATAR_CONSOLE_PUBLIC_PATH': JSON.stringify( process.env.AEVATAR_CONSOLE_PUBLIC_PATH, ), + 'process.env.AEVATAR_WORKFLOW_CANVAS_BENCHMARK': JSON.stringify( + process.env.AEVATAR_WORKFLOW_CANVAS_BENCHMARK, + ), }, }); diff --git a/apps/aevatar-console-web/config/proxy.ts b/apps/aevatar-console-web/config/proxy.ts index 7dcbb001e3..3007ed9c48 100644 --- a/apps/aevatar-console-web/config/proxy.ts +++ b/apps/aevatar-console-web/config/proxy.ts @@ -10,8 +10,7 @@ * @doc https://umijs.org/docs/guides/proxy */ const apiTarget = process.env.AEVATAR_API_TARGET || 'http://127.0.0.1:5080'; -const studioApiTarget = - process.env.AEVATAR_STUDIO_API_TARGET || apiTarget; +const studioApiTarget = process.env.AEVATAR_STUDIO_API_TARGET || apiTarget; const preserveAuthHost = process.env.AEVATAR_PROXY_PRESERVE_AUTH_HOST; const buildProxyTarget = (target: string) => ({ @@ -35,8 +34,8 @@ const buildAuthProxyTarget = (target: string) => ? buildHostPreservingProxyTarget(target) : buildProxyTarget(target) : shouldPreserveHost(target) - ? buildHostPreservingProxyTarget(target) - : buildProxyTarget(target); + ? buildHostPreservingProxyTarget(target) + : buildProxyTarget(target); const studioProxyEntries = [ '/api/app', @@ -46,35 +45,34 @@ const studioProxyEntries = [ '/api/executions', '/api/roles', '/api/studio', + '/api/user-config', '/api/workspace', -].reduce>>((entries, path) => { - const proxyFactory = path === '/api/auth' - ? buildAuthProxyTarget - : buildProxyTarget; - entries[`^${path}$`] = proxyFactory(studioApiTarget); - entries[`${path}/`] = proxyFactory(studioApiTarget); - return entries; -}, {}); + '/api/workflow-templates', +].reduce>>( + (entries, path) => { + const proxyFactory = + path === '/api/auth' ? buildAuthProxyTarget : buildProxyTarget; + entries[`^${path}$`] = proxyFactory(studioApiTarget); + entries[`${path}/`] = proxyFactory(studioApiTarget); + return entries; + }, + {}, +); const studioScopeProxyEntries = { - '^/api/scopes/[^/]+/chat-history(?:/.*)?$': - buildProxyTarget(studioApiTarget), - '^/api/scopes/[^/]+/teams/[^/]+/invoke(?:/.*)?$': - buildProxyTarget(apiTarget), - '^/api/scopes/[^/]+/teams(?:/.*)?$': - buildProxyTarget(studioApiTarget), - '^/api/scopes/[^/]+/members$': - buildProxyTarget(studioApiTarget), - '^/api/scopes/[^/]+/members/[^/]+$': - buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/chat-history(?:/.*)?$': buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/teams/[^/]+/invoke(?:/.*)?$': buildProxyTarget(apiTarget), + '^/api/scopes/[^/]+/teams(?:/.*)?$': buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/members$': buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/members/[^/]+$': buildProxyTarget(studioApiTarget), '^/api/scopes/[^/]+/members/[^/]+/(?:binding(?:/.*)?|binding-runs(?:/.*)?|endpoints/[^/]+/contract)$': buildProxyTarget(studioApiTarget), - '^/api/scopes/[^/]+/scripts/draft-run$': - buildProxyTarget(studioApiTarget), - '^/api/scopes/[^/]+/workflow/draft-run$': - buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/scripts/draft-run$': buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/workflow/draft-run$': buildProxyTarget(studioApiTarget), '^/api/scopes/[^/]+/workflows:save-and-bind$': buildProxyTarget(studioApiTarget), + '^/api/scopes/[^/]+/workflow-templates/[^/]+:instantiate$': + buildProxyTarget(studioApiTarget), '^/api/scripts/validate$': buildProxyTarget(studioApiTarget), '^/api/scripts/generator$': buildProxyTarget(studioApiTarget), '^/api/workflows/generator$': buildProxyTarget(studioApiTarget), diff --git a/apps/aevatar-console-web/config/routes.ts b/apps/aevatar-console-web/config/routes.ts index c383962060..ff5fd185d4 100644 --- a/apps/aevatar-console-web/config/routes.ts +++ b/apps/aevatar-console-web/config/routes.ts @@ -10,281 +10,354 @@ * @param icon 配置路由的图标,取值参考 https://ant.design/components/icon-cn, 注意去除风格后缀和大小写,如想要配置图标为 则取值应为 stepBackward 或 StepBackward,如想要配置图标为 则取值应为 user 或者 User * @doc https://umijs.org/docs/guides/routes */ +import { CONSOLE_HOME_ROUTE } from '../src/shared/navigation/consoleHome'; + +const workflowCanvasBenchmarkRoutes = + process.env.AEVATAR_WORKFLOW_CANVAS_BENCHMARK === '1' + ? [ + { + path: '/workflow-canvas-benchmark', + component: './workflow-canvas-benchmark', + hideInMenu: true, + layout: false, + }, + ] + : []; + export default [ + ...workflowCanvasBenchmarkRoutes, { - path: "/login", - component: "./login", + path: '/login', + component: './login', layout: false, }, { - path: "/auth/callback", - component: "./auth/callback", + path: '/auth/callback', + component: './auth/callback', layout: false, }, { - path: "/overview", - redirect: "/scopes", + path: '/overview', + redirect: CONSOLE_HOME_ROUTE, hideInMenu: true, }, { - path: "/chat", - name: "Chat", - component: "./chat", - menuGroupKey: "chat", + path: '/chat', + name: 'Chat', + component: './chat', + menuGroupKey: 'chat', hideInMenu: false, }, { - path: "/scopes", - name: "My Teams", - component: "./teams", - menuGroupKey: "teams", - hideInMenu: false, + path: '/scopes', + component: './scopes', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext', + redirect: '/scopes/:scopeId/workflow-activity-vnext/workflows', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/workflows', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/workflows/new', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/workflows/new/templates', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/workflows/:workflowId', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/activity', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/activity/:runId', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/channels', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/channels/bind/:botId', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/channels/:registrationId/edit', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/channels/:registrationId', + component: './workflow-activity-vnext', + hideInMenu: true, + }, + { + path: '/scopes/:scopeId/workflow-activity-vnext/settings', + component: './workflow-activity-vnext', + hideInMenu: true, }, { - path: "/scopes/:scopeId/teams/new", - name: "Create Team", - component: "./teams/new", + path: '/scopes/:scopeId/teams/new', + name: 'Create Team', + component: './teams/new', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams", - name: "My Teams", - component: "./teams", + path: '/scopes/:scopeId/teams', + name: 'My Teams', + component: './teams', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/members/new/workflow", - name: "Team Member Workflow Studio", - component: "./team-member-workflow-studio", + path: '/scopes/:scopeId/teams/:teamId/members/new/workflow', + name: 'Team Member Workflow Studio', + component: './team-member-workflow-studio', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/members/:memberId/workflow", - name: "Team Member Workflow Studio", - component: "./team-member-workflow-studio", + path: '/scopes/:scopeId/teams/:teamId/members/:memberId/workflow', + name: 'Team Member Workflow Studio', + component: './team-member-workflow-studio', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/members/:memberId/invoke", - name: "Team Member Invoke", - component: "./team-member-invoke", + path: '/scopes/:scopeId/teams/:teamId/members/:memberId/invoke', + name: 'Team Member Invoke', + component: './team-member-invoke', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/members/:memberId/runs", - name: "Team Member Published Runs", - component: "./runtime-published-runs", + path: '/scopes/:scopeId/teams/:teamId/members/:memberId/runs', + name: 'Team Member Published Runs', + component: './runtime-published-runs', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/members/:memberId/automations", - component: "./teams/detail", + path: '/scopes/:scopeId/teams/:teamId/members/:memberId/automations', + component: './teams/detail', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId/work-orders/:workOrderId", - name: "WorkOrder Details", - component: "./team-work-order-detail", + path: '/scopes/:scopeId/teams/:teamId/work-orders/:workOrderId', + name: 'WorkOrder Details', + component: './team-work-order-detail', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/:scopeId/teams/:teamId", - name: "Team Details", - component: "./teams/detail", + path: '/scopes/:scopeId/teams/:teamId', + name: 'Team Details', + component: './teams/detail', hideInMenu: true, - parentKeys: ["/scopes"], + parentKeys: ['/scopes'], }, { - path: "/scopes/assets", - component: "./scopes/assets", + path: '/scopes/assets', + component: './scopes/assets', hideInMenu: true, }, { - path: "/scopes/files", - name: "Files", - component: "./scopes/files", - menuGroupKey: "build", + path: '/scopes/files', + name: 'Files', + component: './scopes/files', + menuGroupKey: 'build', }, { - path: "/studio", - component: "./studio", + path: '/studio', + component: './studio', hideInMenu: true, }, { - path: "/runtime/workflows", - component: "./workflows", + path: '/runtime/workflows', + component: './workflows', hideInMenu: true, }, { - path: "/runtime/primitives", - name: "Connectors", - component: "./primitives", + path: '/runtime/primitives', + name: 'Connectors', + component: './primitives', hideInMenu: true, }, { - path: "/scopes/invoke", - component: "./scopes/invoke", + path: '/scopes/invoke', + component: './scopes/invoke', hideInMenu: true, }, { - path: "/runtime/runs", - name: "Event Stream", - component: "./runs", - menuGroupKey: "platform", + path: '/runtime/runs', + name: 'Event Stream', + component: './runs', + menuGroupKey: 'platform', }, { - path: "/runtime/mission-control", - name: "Mission Control", - component: "./MissionControl", + path: '/runtime/mission-control', + name: 'Mission Control', + component: './MissionControl', hideInMenu: true, }, { - path: "/runtime/mission-wall", - component: "./MissionWall", + path: '/runtime/mission-wall', + component: './MissionWall', hideInMenu: true, }, { - path: "/services", - name: "Services", - component: "./services", - menuGroupKey: "platform", + path: '/services', + name: 'Services', + component: './services', + menuGroupKey: 'platform', }, { - path: "/services/:serviceId", - component: "./services", + path: '/services/:serviceId', + component: './services', hideInMenu: true, - parentKeys: ["/services"], + parentKeys: ['/services'], }, { - path: "/governance", - name: "Governance", - component: "./governance", - menuGroupKey: "platform", + path: '/governance', + name: 'Governance', + component: './governance', + menuGroupKey: 'platform', }, { - path: "/governance/policies", - component: "./governance/policies", + path: '/governance/policies', + component: './governance/policies', hideInMenu: true, - parentKeys: ["/governance"], + parentKeys: ['/governance'], }, { - path: "/governance/bindings", - component: "./governance/bindings", + path: '/governance/bindings', + component: './governance/bindings', hideInMenu: true, - parentKeys: ["/governance"], + parentKeys: ['/governance'], }, { - path: "/governance/endpoints", - component: "./governance/endpoints", + path: '/governance/endpoints', + component: './governance/endpoints', hideInMenu: true, - parentKeys: ["/governance"], + parentKeys: ['/governance'], }, { - path: "/governance/activation", - component: "./governance/activation", + path: '/governance/activation', + component: './governance/activation', hideInMenu: true, - parentKeys: ["/governance"], + parentKeys: ['/governance'], }, { - path: "/deployments", - name: "Deployments", - component: "./Deployments", - menuGroupKey: "platform", + path: '/deployments', + name: 'Deployments', + component: './Deployments', + menuGroupKey: 'platform', }, { - path: "/runtime/explorer", - name: "Topology", - component: "./actors", - menuGroupKey: "platform", + path: '/runtime/explorer', + name: 'Topology', + component: './actors', + menuGroupKey: 'platform', }, { - path: "/runtime/explorer/detail", - component: "./actors/detail", + path: '/runtime/explorer/detail', + component: './actors/detail', hideInMenu: true, - parentKeys: ["/runtime/explorer"], + parentKeys: ['/runtime/explorer'], }, { - path: "/runtime/gagents", - name: "Members", - component: "./gagents", + path: '/runtime/gagents', + name: 'Members', + component: './gagents', hideInMenu: true, }, { - path: "/scopes/overview", - component: "./scopes/overview", + path: '/scopes/overview', + component: './scopes/overview', hideInMenu: true, }, { - path: "/settings", - name: "Settings", - component: "./settings", - menuGroupKey: "settings", + path: '/settings', + name: 'Settings', + component: './settings', + menuGroupKey: 'settings', }, { - path: "/scopes/workflows", - redirect: "/runtime/workflows", + path: '/scopes/workflows', + redirect: '/runtime/workflows', hideInMenu: true, }, { - path: "/scopes/scripts", - redirect: "/studio?tab=scripts", + path: '/scopes/scripts', + redirect: '/studio?tab=scripts', hideInMenu: true, }, { - path: "/governance/audit", - redirect: "/governance?view=changes", + path: '/governance/audit', + redirect: '/governance?view=changes', hideInMenu: true, }, { - path: "/workflows", - redirect: "/runtime/workflows", + path: '/workflows', + component: './workflow-activity-vnext/WorkflowHomePage', hideInMenu: true, }, { - path: "/primitives", - redirect: "/runtime/primitives", + path: '/primitives', + redirect: '/runtime/primitives', hideInMenu: true, }, { - path: "/runs", - redirect: "/runtime/runs", + path: '/runs', + redirect: '/runtime/runs', hideInMenu: true, }, { - path: "/actors", - redirect: "/runtime/explorer", + path: '/actors', + redirect: '/runtime/explorer', hideInMenu: true, }, { - path: "/gagents", - redirect: "/runtime/gagents", + path: '/gagents', + redirect: '/runtime/gagents', hideInMenu: true, }, { - path: "/mission-control", - redirect: "/runtime/mission-control", + path: '/mission-control', + redirect: '/runtime/mission-control', hideInMenu: true, }, { - path: "/mission-wall", - redirect: "/runtime/mission-wall", + path: '/mission-wall', + redirect: '/runtime/mission-wall', hideInMenu: true, }, { - path: "/", - redirect: "/scopes", + path: '/', + redirect: CONSOLE_HOME_ROUTE, }, { - component: "404", + component: '404', layout: false, - path: "/*", + path: '/*', }, ]; diff --git a/apps/aevatar-console-web/docs/2026-09-15-channel-runtime-editor.md b/apps/aevatar-console-web/docs/2026-09-15-channel-runtime-editor.md new file mode 100644 index 0000000000..c5424646f6 --- /dev/null +++ b/apps/aevatar-console-web/docs/2026-09-15-channel-runtime-editor.md @@ -0,0 +1,111 @@ +# Channel Runtime Editor + +> Superseded by [Channel Bot Adoption](superpowers/specs/2026-09-17-channel-bot-adoption.md). +> The current editor shares the binding form, uses the registration detail/update +> endpoints, and supports Skill and Services alongside the existing NyxID Label +> action. The runtime-config API and token-based creation described below are historical. + +Channel details now provides an Edit action at +`/scopes/:scopeId/workflow-activity-vnext/channels/:registrationId/edit`. +Edit and Remove sit at the top right beside the breadcrumb, with a 12px gap. +On narrow screens, the action group wraps below the breadcrumb and stays right aligned. +The editor follows the approved [Figma frame](https://www.figma.com/design/FaVJx5IZeQX9jHcUi55ndB/?node-id=63-327) +and the existing Telegram connection form, with the September 16 request +to limit editing to Label and Skill name. + +## Shared Components + +- `ChannelSkillField` is shared by connection and editing, including its label, + optional state, input, and field error presentation. +- Both pages reuse the existing connection styles, centered content, shell, + loading skeleton, and toast provider. +- The edit form contains only Label and Skill name. It does not load the + UserService inventory or display a Services selector. Creation retains its + existing service selection; details retain their read-only authorization list. +- Bot tokens are not editable. Tool sets, extra tool names, instructions, + service selectors, skill version, and credential source are retained from the + loaded config (clearing Skill name also clears its version). + +## API Behavior + +The runtime-config contract was checked against `origin/feature/integrate` at +`6c929a00db3d7636c91bc719478043a5fd331f7c`, specifically `ChannelCallbackEndpoints.cs`. Label updates use NyxID's existing +`backend/src/handlers/channel_bots.rs` contract; no backend changes are required. + +- GET and POST use `/api/channels/registrations/{registrationId}/runtime-config`. + Detail identity and scope must match the route. +- Opening the editor requires fresh successful config, registration-list, and + personal NyxID bot-list reads, even when Query has cached data. The exact owned + registration's `nyx_channel_bot_id` and matching platform identify the bot. + Missing/cross-scope identities block the editor; registration IDs never serve + as bot IDs. Later readback never resets user input. +- Label uses the actual NyxID bot label, not the runtime-config `label` placeholder + (currently the registration ID). Only a changed label triggers + `PATCH /api/v1/channel-bots/{botId}` with `{ "label": "..." }`. NyxID requires a + non-empty trimmed label of at most 128 UTF-8 bytes. The PATCH response must + confirm the exact bot ID, platform, and label before the safe query cache is + updated; credential fields and raw diagnostic bodies are discarded. +- A changed Skill name submits the complete known runtime config because omitted + runtime fields are not patches. Only Skill name is trimmed; other fields are + retained. The request omits `authorization_mode` and `service_ids`, allowing + the backend to preserve its current service selection, including legacy + defaults and explicit empty allowlists. Backend authorization checks still + apply; there is no frontend authorization override. +- When both fields change, Label saves first, then Skill name. A rejected Label + request leaves both inputs intact and skips the runtime update. If Label has + saved but Skill fails, the editor explicitly reports partial success and a + retry submits only the still-unsaved changes. The two APIs are not atomic. +- A Label-only save returns to details after the confirmed PATCH without + submitting runtime config or performing an unnecessary config readback. +- After an acknowledged POST, the form makes one GET for accurate feedback and + returns to channel details. The Save action remains busy across both requests + and rejects duplicate submission. There is no separate confirmation step, + Check again button, background polling, or automatic resubmission. +- A saved toast requires that GET to match the submitted configuration and have + an authoritative state version newer than the initial GET. Otherwise an + informational toast reports only that changes were submitted; a failed GET + produces a warning that the latest configuration could not be loaded. Details + reloads real data on entry and never substitutes submitted values as saved + facts. The user may refresh details later to see the current configuration. +- A rejected POST keeps the edited values, reports the error through a toast, + and unlocks the form for correction and another explicit Save. +- Backend errors for editable fields map to localized field messages; errors + for other fields use the shared save-failure toast. Raw diagnostic messages + are not retained. Unrecognized config modes fail closed; unexpected credential + fields are discarded by the adapter. +- Cancel and shell navigation protect unsaved changes. Reload/close uses the + native before-unload warning. Late responses after unmount cannot navigate or + report success. + +## Design Baseline + +- Baseline directory: `docs/design-baselines/workflow-activity-vnext/`. +- Primary design: `aevatar-workflow-activity-vnext.excalidraw`. +- SHA-256: `30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de`. +- Contract: `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-design.md`. +- User paths: `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-user-paths.md`. +- The approved Figma frame supplements the baseline for Channel editing. +- Authentication, callback, session, returnTo, and Umi localization are reused. +- Production data comes only from real APIs and API-acknowledged user actions. + Fixtures remain test-only; no backend, mock, or credential fallback is added. + +## Verification Scope + +Focused integration cases cover exact identity, safe decoding, unsupported +config, detail-to-edit navigation, whole-config preservation, accepted readback, +explicit clearing, label validation and exact bot identity, partial-save retry, +field errors, cached detail revalidation, +legacy authorization, delayed/failed readback navigation, duplicate-submit +protection, failed-save retry, unsaved navigation, and unmounts during POST/GET. +Existing creation, channel listing/details, API, navigation, route configuration, +and locale tests protect the reused surfaces. + +The original editor was verified against the configured remote backend for +configuration prefill and desktop and 390px layouts. The names-only revision is +covered by API-boundary integration tests. No live bot configuration is changed +for verification. + +Local verification is restricted to affected Jest files, changed-file Biome, +the test stability guard, baseline integrity, and diff checks. Full frontend +tests, typecheck, and production build are delegated to GitHub CI; no native +affected TypeScript target is available. diff --git a/apps/aevatar-console-web/docs/2026-09-15-workflow-operation-feedback.md b/apps/aevatar-console-web/docs/2026-09-15-workflow-operation-feedback.md new file mode 100644 index 0000000000..6d2795e835 --- /dev/null +++ b/apps/aevatar-console-web/docs/2026-09-15-workflow-operation-feedback.md @@ -0,0 +1,57 @@ +# Workflow generation and change feedback + +The Workflow Activity vNext creation and catalogue surfaces distinguish a +request being accepted from its completed result. + +## Describe + +- Generate and open shows generation, validation, and saving as separate + stages. Real server progress and generated text are available in a bounded, + expandable Generation details section. +- Generation and validation have a two-minute deadline. Cancel generation or + Change method stops waiting and prevents that attempt from creating a draft. + The entered name and description remain available. Leaving the page or scope + invalidates the pending attempt, including a late successful response. +- Once saving starts, cancellation is no longer offered. Draft creation and + accepted-save observation retain their existing completion/recovery contract. +- A stream ending without a nonempty completed workflow is an error, including + an HTTP 200 response containing only a partial YAML document. Only the final + result is parsed and submitted for draft creation. +- Full generation progress still depends on the backend sending events while + it works. Backend issue #3631 tracks buffering in the reference backend. + +## Archive and delete draft + +- The confirmation dialog identifies the selected workflow by name. It blocks + duplicate submission while the command is pending. +- After acceptance, it automatically checks the exact scoped workflow for up + to 30 seconds, including time spent waiting for a read request. Archive uses + the archived catalogue and requires Deactivated; deletion requires the exact + workflow to be absent from the all-workflows catalogue. +- A delayed result remains unconfirmed. A failed check has its own persistent + status and technical details. Neither is labelled as a completed deletion. +- Check again only reads the accepted operation's result. Closing stops active + checks without undoing the submitted request. Reopening the same selected + operation while the page retains it preserves acceptance and offers another + check. Selecting a different operation or leaving the page ends that local + recovery context; a later page visit reloads authoritative catalogue state. +- Only observed completion produces a success toast and refreshes the list. + Old reads cannot close a newer dialog or report stale success. + +## Verification scope + +Nine added regression cases cover real progress and cancellation followed by +retry, timeout during validation, generation unmount, archive completion beyond +the former short window, failed deletion-check recovery, a hung read with +close/reopen and stale completion, final validated SSE output, and truncated SSE +rejection. The ninth case verifies that confirmed deletion remains distinct +from a failed subsequent list refresh, with a read-only recovery action. Existing catalogue, creation, observation, and Studio adapter tests +also remain part of the focused validation set. + +The design continues the Operational Automation Ledger direction and the +17-frame Excalidraw baseline with SHA-256 +`30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de`. +The contract and user-path specifications remain +`docs/superpowers/specs/2026-08-04-workflow-activity-vnext-design.md` and +`docs/superpowers/specs/2026-08-04-workflow-activity-vnext-user-paths.md`. +Remote state comes from real APIs and API-acknowledged actions only. diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/README.md b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/README.md new file mode 100644 index 0000000000..779f8ac6ca --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/README.md @@ -0,0 +1,328 @@ +# Workflow + Activity + Settings vNext + +## Repository Implementation Baseline + +Status: **Normative for the Workflow Activity vNext frontend**. + +Any implementation or review of routes below +`/scopes/:scopeId/workflow-activity-vnext` must read this directory together +with the +[`design specification`](../../superpowers/specs/2026-08-04-workflow-activity-vnext-design.md) +and +[`user paths`](../../superpowers/specs/2026-08-04-workflow-activity-vnext-user-paths.md), +plus the +[`published-workflow schedule supplement`](../../superpowers/specs/2026-08-11-workflow-schedule-design.md) +and the +[`Schedule management and History specification`](../../superpowers/specs/2026-08-21-workflow-schedule-history-design.md) +when Schedule is in scope. + +Use the sources in this order: + +1. `aevatar-workflow-activity-vnext.excalidraw` is the primary visual, + information-architecture, and interaction reference for Workflow, + Activity, and Settings. +2. The design specification is the normative product, route, identity, API, + state, and backend-compatibility contract. +3. `aevatar-workflow-schedule-design.excalidraw`, its generator, and the + published-workflow schedule supplement are normative whenever a Schedule + entry, panel, or resource is changed. They define Schedule as an exact child + of `scopeId + workflowId`, backed by the Workflow-scoped Schedule API, not a + Team member automation, graph node, draft property, or Run property. + Schedule History owns bounded attempts while Activity remains the owner of + actual Runs. +4. The user-path specification is the normative end-to-end journey, decision, + recovery, and completion-evidence contract. +5. The PNG files are viewport references for individual states. Schedule review + uses seven standalone 1440x900 scene PNGs; there is no combined overview. +6. `prototype.html` is an interaction demonstration only; + `prototype-schedule.html` opens its published Workflow Schedule state + directly. +7. `aevatar-workflow-activity-vnext.gen.py` and + `aevatar-workflow-schedule-design.gen.py` are source generators for these + reference artifacts; they are not application runtime code. + +If the Excalidraw or prototype conflicts with a real API contract, follow the +design specification's backend-honest behavior. Do not change the backend and +do not fabricate data to close the gap. + +## Console Home Entry + +The 2026-09-14 home decision supersedes the original preview-only entry rule. +`/workflows` resolves the freshly fetched `/api/auth/me` scope and opens +`/scopes/:scopeId/workflow-activity-vnext/workflows`. `/`, `/overview`, `/scopes`, +and default login/callback recovery use this home. Explicit safe deep links keep +their original destination. There is no fixed workspace or intermediate Teams +home. See the repository-root +[`home specification`](../../../../../docs/superpowers/specs/2026-08-31-workflow-vnext-home-design.md) +for loading, authentication, missing-scope, and retry behavior. This entry change +is the explicit exception to the original restrictions on existing redirects. + +## Production Data Truth Rule + +The production frontend must never make sample, fixture, generated, cached, or +hard-coded data look as though it came from an API. + +- API-owned Workflows, Runs, Run details, settings, identities, receipts, + statuses, timestamps, revisions, usage, lineage, and availability must come + from real API responses or real user actions acknowledged by those APIs. +- While a request is pending or unavailable, render the specified loading, + empty, delayed, unavailable, or error state. Never substitute demonstration + rows or a successful-looking default response. +- An empty state is allowed only after a successful authoritative query returns + no records. A request failure is an error state, not an empty state. +- Browser storage must not act as an Activity, Workflow, account, or settings + backend. Existing session helpers may retain non-authoritative request + recovery facts only when the design specification explicitly permits it. +- Mock and fixture data are allowed only inside clearly named automated test + fixtures or isolated test harnesses. They must not be imported by production + route, component, hook, query, or API-adapter code. +- Versioned, bundled Workflow templates are frontend product content, not API + data. If used, label and model them explicitly as bundled templates; never + present them as a server-returned template catalogue. + +`prototype.html` intentionally contains hard-coded demonstration records, +`localStorage`, and timers so the standalone prototype can be exercised +without a server. Those mechanisms have no API or persistence authority and +must not be copied into the production implementation. + +## Existing Authentication And Localization Contract + +Workflow Activity vNext reuses Aevatar Console authentication and +internationalization behavior. It does not create a vNext-specific auth or +locale system. + +- Protected-route handling continues through the current app runtime, + `ProtectedRouteRedirectGate`, `/login`, `/auth/callback`, + `NyxIDAuthClient`, sanitized `returnTo`, stored/restorable sessions, and + existing sign-in, sign-out, callback recovery, and service-access review. +- The user must return to the original scoped vNext URL after successful login + through the existing `redirect`/`returnTo` behavior. No second callback, + token cache, session store, or auth provider is allowed. +- Language behavior continues through the Umi locale plugin, + `ConsoleLanguageSwitch`, `setLocale`, `t`/`useIntl`, and the existing + `en-US` and `zh-CN` catalogues. New copy must be added to both catalogues. +- If the vNext shell hides the current global chrome, it must reuse the existing + language and account actions inside its own presentation. It must not clone + their state or behavior. +- Login, callback, language, and account controls may receive a visual-only + treatment matching the Operational Automation Ledger direction. Route + names, redirects, auth protocol, return behavior, session lifecycle, locale + keys, language persistence, error recovery, and accessibility behavior stay + unchanged. + +The existing Login page currently uses a decorative gradient and large rounded +card. A later visual implementation may replace those presentation choices +with the vNext dark rail/white work surface, neutral borders, 4-6 px radii, +compact typography, and restrained status colors. That visual change must not +alter what starts login, how callback completion works, or where the user +returns. + +## Required Development And Review Declaration + +Every implementation task and pull request for this vNext route should include +this declaration, updated only when the named baseline changes: + +```text +Design baseline: + apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/ +Primary design: + aevatar-workflow-activity-vnext.excalidraw +Design SHA-256: + 30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de +Contract specification: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-04-workflow-activity-vnext-design.md +Schedule design, when Schedule is in scope: + aevatar-workflow-schedule-design.excalidraw +Schedule design SHA-256: + cd5c84c45ffb0cdb253af31b7e1b7616504b35520298f01773026e3b76882d8a +Schedule supplement, when Schedule is in scope: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-11-workflow-schedule-design.md +Schedule management and History supplement, when Schedule is in scope: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-21-workflow-schedule-history-design.md +User paths: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-04-workflow-activity-vnext-user-paths.md +Authentication and localization: + Existing Aevatar login, callback, session, returnTo, and Umi locale logic; + presentation may change, behavior may not. +Production data source: + Real APIs and API-acknowledged user actions only; no mock fallback. +Baseline integrity: + python3 apps/aevatar-console-web/docs/design-baselines/ + workflow-activity-vnext/verify-baseline.py +``` + +This declaration makes design drift and mock-data substitution explicit review +failures rather than undocumented implementation choices. + +## Imported Source + +这个目录最初根据 2026-08-03 会议结论重新整理为独立版本。用户提供的原始画板、生成器、HTML 和 PNG 是来源资产;后续经评审批准的设计演进会同时修改生成器、画板、校验器和本文档。仓库内副本是后续实现与评审的唯一可移植基准;本机来源路径不构成依赖。 + +## 文件 + +- `aevatar-workflow-activity-vnext.excalidraw`:合并后的 Excalidraw,包含 Workflows、Activity 与 Settings,共 17 个 frame。 +- `aevatar-workflow-schedule-design.excalidraw`:根据用户提供的 Schedule wireframe 重绘的独立 Excalidraw,只包含 Workflows 管理、Workflow 编辑器配置、创建前复核、创建等待、Overview、History 与修改,共 7 个 frame;不包含 Activity 页面。 +- `aevatar-workflow-schedule-design.gen.py`:上述 Schedule 画板的确定性生成器。 +- `render-schedule-png.py`:从 Schedule Excalidraw 确定性地将每个 frame 渲染为独立 1440×900 PNG 的 Pillow 脚本。 +- `aevatar-workflow-activity-vnext.gen.py`:画板生成器,内含画框边界、ID 唯一性和废弃术语检查。 +- `verify-baseline.py`:仓库内校验器,验证主画板和 Schedule 画板 SHA-256、两个生成器的确定性输出、17 个主画板 frame、7 个 Schedule frame、7 张独立 PNG,并拒绝旧的拼板总览图。 +- `prototype.html`:可直接在浏览器打开的交互原型,不需要安装依赖或启动服务。 +- `prototype-schedule.html`:打开后直接进入已发布 Workflow 的新建 Schedule 配置,不需要先从 Draft 列表寻找入口。 +- `schedule-workflows-list-modal.png`:从 Workflows 列表打开的 Schedule 管理 modal;列表行只负责选择 Schedule,不重复堆放生命周期操作。 +- `schedule-workflow-editor-panel.png`:Workflow 编辑器右侧的新建 Schedule panel。 +- `schedule-review.png`:确认 Workflow、名称、周期、时区、可选运行输入、创建后启用状态与五次 next-fire 预览的创建复核页。 +- `schedule-creation-pending.png`:创建命令 `202 Accepted` 后回到列表并显示 Toast 的页面。 +- `schedule-detail.png`:Workflow 内默认打开的 Schedule Overview,展示人类可读规则、当前状态、关键统计和分层动作;展开 Advanced details 后仍先解释运行周期,再显示精确技术格式。 +- `schedule-history.png`:Workflow 内的 Schedule History,展示有界 recent attempts、诚实的 Schedule outcome、失败技术详情折叠,以及有权威 Run ID 时的整行导航。 +- `schedule-edit.png`:Workflow 内修改重复规则、时间、时区和可选运行输入的页面。 +- `prototype-workflows.png`:Workflows 桌面视图截图。 +- `prototype-activity.png`:Activity 桌面视图截图。 +- `prototype-mobile.png`:Activity 移动视图截图。 +- `prototype-create-describe.png`:通过描述生成的 Workflow 草稿。 +- `prototype-create-blank.png`:空白 Workflow 草稿。 +- `prototype-create-import.png`:从 YAML 导入的 Workflow 草稿。 +- `prototype-create-template.png`:从模板创建的 Workflow 草稿。 +- `prototype-editor-canvas.png`:真实 Aevatar Workflow Studio 结构的默认节点画布。 +- `prototype-editor-node.png`:点击节点后打开的 Node configuration 侧面板。 +- `prototype-node-library.png`:从左侧打开并可搜索的 Node library。 +- `prototype-editor-yaml.png`:Workflow YAML 侧面板。 +- `prototype-create-mobile.png`:移动端 Workflow 画布,保留 Run、Add node、Edit YAML、Save 和 Publish。 +- `prototype-editor-mobile-node.png`:移动端点击节点后的底部配置面板。 +- `prototype-settings-llm.png`:重构后的 AI defaults 桌面视图。 +- `prototype-settings-save.png`:展示来源原型中产生修改后才出现的 sticky save bar 与保存确认状态;生产实现按专项设计改为 shell-fixed dock。 +- `prototype-settings-account.png`:Account 身份、会话与 service access 桌面视图。 +- `prototype-settings-advanced.png`:独立的只读 Runtime 与 request values 视图。 +- `prototype-settings-tablet.png`:Settings 的 768px 布局。 +- `prototype-settings-mobile.png`:Settings 的 390px 移动布局。 + +## Workflow Studio 参照 + +本轮没有继续设计新的 Workflow 编辑器,而是以真实 Aevatar 项目现有的 Workflow Studio 为来源: + +- `apps/aevatar-console-web/src/pages/team-member-workflow-studio/index.tsx` +- `components/WorkflowStudioCanvas.tsx` +- `components/WorkflowStudioNodeLibrary.tsx` +- `components/WorkflowStudioNodeDetailPanel.tsx` +- `components/WorkflowStudioYamlPanel.tsx` +- `src/shared/graphs/GraphCanvas.tsx` + +原型因此统一采用“节点画布 + 连线 + 按需侧面板”的编辑模式。Describe、Start blank、Import YAML 和 Template 只负责产生不同的初始 Workflow 文档,不再各自发明编辑行为。 + +## 原型意图与强制偏差 + +下面的原型意图只用于理解视觉和交互方向。它不覆盖本文前面的 +Production Data Truth Rule,也不覆盖设计规范中的 +`Excalidraw-To-Backend Deviations`。后续实现必须应用这些强制偏差: + +- 用户从 Workflows 直接创建 Workflow 草稿,没有其他资源的创建前置步骤。 +- `Run` 是唯一的手动执行入口。`Schedule` 是当前 Workflow 的 recurring resource,由 `scopeId + workflowId` 精确拥有并通过 Workflow-scoped API 管理;它不是 Team member automation、Run 对话框、草稿属性或画布节点。 +- Run 请求开始后先显示真实的 Accepted/Running 状态;只有 Observatory + 返回权威记录后,才能显示为 Activity 记录。 +- `Current draft · revision N`、`Published · vN`、来源、耗时、用量和 + lineage 都是画板中的视觉意图;对应字段没有出现在真实 API 响应时必须省略。 +- Retry 和 Run again 不修改原 Run,并请求创建新 Run;只有真实 receipt + 或后续查询提供的关联事实才能显示新旧 Run 的关系。 +- Activity 是 vNext 内唯一的 Run 历史入口;按 Workflow 筛选只使用权威 + `definitionActorId`,不能按名称或其他 ID 猜测。 +- Workflows、Activity 和 Settings 是隔离 vNext shell 的本地导航。第一期 + 不修改现有全局菜单或旧路由。 + +## Excalidraw 阅读顺序 + +导入 `aevatar-workflow-activity-vnext.excalidraw` 后,建议先缩放到全部内容,再按 frame 名称从 01 看到 17: + +1. `01 Workflows - catalogue`:日常入口、搜索、筛选、Run 和 Open。 +2. `02 New workflow - direct creation`:四种入口都直接创建 Workflow 草稿。 +3. `03 Describe - generated Workflow draft`:描述生成匹配的节点与连线;点击节点后从右侧配置。 +4. `04 Start blank - empty Workflow draft`:真实 Studio 的空画布;添加第一个节点之前不能 Publish 或 Run。 +5. `05 Import YAML - imported Workflow draft`:YAML 中的名称和节点类型进入同一套 Studio 画布。 +6. `06 Template - populated Workflow draft`:模板创建独立草稿,并以连接节点显示。 +7. `07 Run - unified execution dialog`:确认修订、输入、连接和外部影响;底部文案表达保留本次 Run 的产品意图,生产实现仍需等待真实 Activity 观察结果。 +8. `08 Running draft - Studio canvas and Run console`:仍在同一个节点画布中显示运行状态,底部打开 Run console;画板中的 Activity 记录只表达目标状态,生产实现不得在权威查询返回前声称记录已存在。 +9. `09 Activity - filtered by Workflow`:从 Workflows 按当前 Workflow 查看权威 Run 历史;它不属于 Schedule 配置流程。 +10. `10 Activity - all retained Runs`:全局、最新优先的所有 Run 记录。 +11. `11 Run detail - immutable record`:展示 Run 详情的信息层级;修订、来源、耗时、用量、步骤时间线与关联记录仅在真实详情响应提供对应字段时显示。 +12. `12 Failed Run - recovery creates a new record`:失败解释和恢复;Retry 预览明确展示新旧 Run 的关系。 +13. `13 Workflows and Activity - states`:空、加载、错误和移动端信息优先级。 +14. `14 Settings - AI defaults`:正常态只保留 Preferred service 与 Default model 两个决策。 +15. `15 Settings - save and recovery states`:dirty save bar、accepted observation、fallback、catalog unavailable 和保存失败恢复。 +16. `16 Settings - Account`:Profile、claims、Authentication、Sign out 与 Manage service access。 +17. `17 Settings - Advanced and responsive`:单份只读 effective request values 与完整移动端操作布局。 + +Schedule 相关变更请另外导入 `aevatar-workflow-schedule-design.excalidraw`,按下面顺序检查: + +1. `01 · Workflows — schedule management modal`:在 Workflow 列表点击已发布行的 `Schedules`,打开该 Workflow 的管理弹窗;点击现有 Schedule 会在同一弹窗打开 Overview,`New schedule` 进入创建流程。 +2. `02 · Workflow — schedule setup panel`:在画布旁用 `Repeat`、时间和时区构造重复规则;默认只显示人类可读摘要,`write it as cron instead` 才打开 raw cron,Review 时显示 next-fire 预览。 +3. `03 · Schedule — review before creation`:确认 Workflow、Schedule name、周期、时区、可选运行输入、enabled 与五次 next-fire 预览,然后直接创建。 +4. `04 · Schedule — creation pending`:创建命令返回 `202 Accepted` 后立即回到列表并显示 Toast;后台继续刷新当前 Workflow 的 Schedule list/detail,不提前声称 Active 或 next fire 已存在。 +5. `05 · Workflow — schedule overview`:默认页签,在 Workflow canvas 旁查看人类可读周期、enabled、next/last attempt 与计数;Run now 和 Edit 直接显示,Pause/Enable 与 Delete 收进 More。 +6. `06 · Workflow — schedule history`:紧凑展示 `recentFires` 对应的 recent attempts;原始错误只在 Technical details 中出现,相关真实 Runs 通过 Workflow + Schedule 筛选交给 Activity。 +7. `07 · Workflow — change schedule`:在 Workflow panel 修改周期和运行输入,并在 `PUT` 中保留已读取的 enabled 状态;Cancel 返回 Overview。 +上述 7 个 frame 分别渲染为独立 1440×900 PNG;不再生成九宫格或总览拼图。 + +重点不是逐个查看控件,而是沿着这条主路径检查语义是否连贯: + +```text +Workflows + -> New workflow + -> direct draft creation + -> edit connected nodes in Workflow Studio + -> Run + -> Accepted / Running from a real stream or receipt + -> Activity record observed through the real API + -> Run detail + -> Retry / Run again requests a new Run without mutating the source +``` + +## 原型操作路径 + +以下步骤只用于操作独立原型。步骤中的 `localStorage`、计时器、示例用户和 +示例记录不是 API 行为,也不是生产实现要求。 + +1. 打开 `prototype.html`,默认进入 Workflows;点击已发布 Workflow 行的 `Schedules` 会打开该 Workflow 的 Schedule 管理弹窗。列表内的 `New schedule` 进入配置流程,已有 Schedule 可进入编辑和生命周期操作。只评审编辑器 Schedule panel 时可直接打开 `prototype-schedule.html`。 +2. 点击 `New workflow`,分别检查四种方式:描述会生成匹配节点;空白会进入画布空状态;导入会先校验 YAML;模板会先要求选择模板。 +3. 在画布点击节点,右侧打开 Node configuration;`Add node` 从左侧打开 Node library;`Edit YAML` 从右侧打开 YAML 面板。 +4. 打开一个已发布 Workflow,点击编辑器里的 `Schedules` 检查右侧 Workflow schedules 面板,再点击 `New schedule` 检查创建流程仍在右侧 panel;配置态必须以 `Repeat + time + timezone` 为主,只有点击 `write it as cron instead` 才显示 raw cron editor。未发布 Workflow 保持禁用并显示 publish 原因。Workflows 管理 modal 与编辑器 panel 共享 `list -> Overview <-> History -> Edit` 管理模型和 `list -> configure -> previewing -> review -> create -> toast -> list` 创建模型。Overview 不平铺最近 attempts;History 不冒充 Run 历史;点击 `View related runs in Activity` 后,Activity 明确展示 Workflow + Schedule 筛选。有后端 Run 身份的 attempt 可以直接打开对应 Activity Run;成功启动但缺少 Run 身份的旧 attempt 进入同一筛选后的 Activity,不猜测 Run 身份。 +5. 在列表或编辑器点击 `Run`,确认修订、输入、连接和外部影响。 +6. 勾选外部影响确认后点击 `Run`。记录会立即写入浏览器 `localStorage`,编辑器显示运行状态。 +7. 打开 Activity,点击任意一行查看详情。 +8. 对成功记录点击 `Run again`,或对失败记录点击 `Retry`,然后在确认框里创建新的关联记录。 +9. 点击 Settings,在 `AI defaults` 中切换 exact service 和 model。修改后页面底部才会出现 Discard / Save changes;再分别检查 `Account` 和只读的 `Advanced`。 + +原型数据会保留在当前浏览器中;重新打开页面后,新建的 Run 历史仍然存在。 + +四种创建方式共享同一个 Workflow Studio。画布节点、连线、节点库、节点配置、YAML 和 Run 入口保持一致;变化的只是各自创建出来的 Workflow 文档。 + +## Settings 参照 + +Settings 的功能来源仍然是当前 Aevatar Console,但信息架构已经重新设计: + +- `apps/aevatar-console-web/src/pages/settings/index.tsx` +- `apps/aevatar-console-web/src/pages/settings/accountContent.tsx` +- `apps/aevatar-console-web/src/pages/settings/shared.tsx` +- `apps/aevatar-console-web/src/pages/settings/userLlmSelection.ts` +- `apps/aevatar-console-web/src/pages/settings/userLlmSaveObservation.ts` + +重构后分成三个任务分区: + +- `AI defaults`:正常态只保留 Preferred service 与 Default model。适用范围已由页面说明表达,不再重复展示 provider inventory、route note 或保存成功状态。 +- `Account`:当前浏览器身份、User ID、roles、groups、会话到期时间、NyxID provider、scope、Sign in / Sign out 和 Manage service access;字段本身足够明确,不再重复配小节说明。 +- `Advanced`:只保留一份 effective request values。Runtime mode 与 base URL 不再同时出现在只读输入和 raw values 两处。 + +独立原型会把 AI 默认值保存在浏览器 `localStorage`,仅用于演示重开页面后的交互连续性。生产实现必须通过真实 Settings API 读取、保存并观察 AI 默认值,不能读取这份原型存储。选择 exact connected service 时,模型列表会跟着服务切换。默认状态保持安静;只有产生修改后,来源原型中的 sticky save bar 才出现;生产实现必须按 `2026-08-06-settings-save-action-dock-design.md` 使用 shell-fixed dock。保存动作先进入 accepted / confirming saved values,再根据权威查询更新已保存 service。fallback、catalog unavailable 与 provider unavailable 只在异常状态出现。Account 的 Sign in、Sign out 与 service access 继续复用现有真实逻辑。 + +## 基线完整性校验 + +从仓库根目录运行: + +```bash +python3 apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/verify-baseline.py +``` + +校验器会在临时目录运行导入的生成器,不修改仓库文件,并验证生成结果与 +主画板逐字节一致、SHA-256 与声明一致、17 个主画板 frame 的名称和顺序 +完整,以及独立 Schedule 画板的 SHA-256、frame 与关键语义文案完整。任何失败都表示设计基线或声明已经漂移,必须在实现或评审前处理。 diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.excalidraw b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.excalidraw new file mode 100644 index 0000000000..e2e2970bdf --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.excalidraw @@ -0,0 +1,56083 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": [ + { + "id": "t-00001-3326", + "type": "text", + "x": 160.0, + "y": 80.0, + "width": 1040.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 517879736, + "version": 1, + "versionNonce": 1140406283, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Aevatar Workflow + Activity + Settings vNext", + "originalText": "Aevatar Workflow + Activity + Settings vNext", + "fontSize": 32, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00002-6887", + "type": "text", + "x": 160.0, + "y": 132.0, + "width": 980.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 136598626, + "version": 1, + "versionNonce": 1723159338, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "One authoring resource. One Run action. One immutable Activity history.", + "originalText": "One authoring resource. One Run action. One immutable Activity history.", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00003-5943", + "type": "text", + "x": 160.0, + "y": 180.0, + "width": 1180.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1624035407, + "version": 1, + "versionNonce": 1408473053, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Primary path: Workflows -> direct draft -> Run -> Activity. Settings owns LLM defaults and browser identity.", + "originalText": "Primary path: Workflows -> direct draft -> Run -> Activity. Settings owns LLM defaults and browser identity.", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00004-7124", + "type": "frame", + "x": 160.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1523166750, + "version": 1, + "versionNonce": 1950145098, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "01 Workflows - catalogue" + }, + { + "id": "r-00006-5560", + "type": "rectangle", + "x": 160.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 394840533, + "version": 1, + "versionNonce": 152575559, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00007-3352", + "type": "rectangle", + "x": 160.0, + "y": 300.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 434787233, + "version": 1, + "versionNonce": 1859222484, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00008-7098", + "type": "text", + "x": 184.0, + "y": 324.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1253083477, + "version": 1, + "versionNonce": 1309538728, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00009-1297", + "type": "text", + "x": 184.0, + "y": 353.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1978300590, + "version": 1, + "versionNonce": 1205786937, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00010-2781", + "type": "rectangle", + "x": 172.0, + "y": 408.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1417836623, + "version": 1, + "versionNonce": 911048851, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00011-8651", + "type": "ellipse", + "x": 188.0, + "y": 420.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1142714299, + "version": 1, + "versionNonce": 496004083, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00012-1990", + "type": "text", + "x": 208.0, + "y": 416.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1632424781, + "version": 1, + "versionNonce": 262264550, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00013-2195", + "type": "ellipse", + "x": 188.0, + "y": 472.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2028662266, + "version": 1, + "versionNonce": 2030844556, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00014-1660", + "type": "text", + "x": 208.0, + "y": 468.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 929715049, + "version": 1, + "versionNonce": 848751520, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00015-9816", + "type": "ellipse", + "x": 188.0, + "y": 524.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1461285563, + "version": 1, + "versionNonce": 1425986971, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00016-9057", + "type": "text", + "x": 208.0, + "y": 520.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 350304066, + "version": 1, + "versionNonce": 1128414647, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00017-2005", + "type": "text", + "x": 184.0, + "y": 1146.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1683337894, + "version": 1, + "versionNonce": 1229776163, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00018-4250", + "type": "text", + "x": 184.0, + "y": 1172.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1935916886, + "version": 1, + "versionNonce": 156418574, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00019-5100", + "type": "rectangle", + "x": 370.0, + "y": 300.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1858501624, + "version": 1, + "versionNonce": 158400455, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00020-2160", + "type": "text", + "x": 400.0, + "y": 318.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 296691921, + "version": 1, + "versionNonce": 1547591908, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00021-9093", + "type": "text", + "x": 400.0, + "y": 349.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 168862334, + "version": 1, + "versionNonce": 870295758, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Create, edit, publish, and run automations.", + "originalText": "Create, edit, publish, and run automations.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00022-7329", + "type": "rectangle", + "x": 1426.0, + "y": 322.0, + "width": 144.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 914473273, + "version": 1, + "versionNonce": 1176119067, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00023-9539", + "type": "text", + "x": 1434.0, + "y": 331.0, + "width": 128.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1666935788, + "version": 1, + "versionNonce": 1115263221, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "New workflow", + "originalText": "New workflow", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00024-2248", + "type": "text", + "x": 400.0, + "y": 408.0, + "width": 47.879999999999995, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1095350280, + "version": 1, + "versionNonce": 632134050, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SEARCH", + "originalText": "SEARCH", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00025-8832", + "type": "rectangle", + "x": 400.0, + "y": 430.0, + "width": 370.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 893915208, + "version": 1, + "versionNonce": 1698291170, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00026-1189", + "type": "text", + "x": 412.0, + "y": 441.0, + "width": 346.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 509302994, + "version": 1, + "versionNonce": 153046552, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Search workflows", + "originalText": "Search workflows", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00027-8862", + "type": "rectangle", + "x": 796.0, + "y": 430.0, + "width": 73.19999999999999, + "height": 30.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 439540426, + "version": 1, + "versionNonce": 1530202018, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00028-3166", + "type": "text", + "x": 806.0, + "y": 437.0, + "width": 53.19999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1150199719, + "version": 1, + "versionNonce": 1848512635, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "All 5", + "originalText": "All 5", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00029-1910", + "type": "rectangle", + "x": 877.2, + "y": 430.0, + "width": 122.39999999999999, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 542608803, + "version": 1, + "versionNonce": 162002017, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00030-6870", + "type": "text", + "x": 887.2, + "y": 437.0, + "width": 102.39999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1022683653, + "version": 1, + "versionNonce": 802919697, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published 3", + "originalText": "Published 3", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00031-8180", + "type": "rectangle", + "x": 1007.6, + "y": 430.0, + "width": 97.8, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1922336479, + "version": 1, + "versionNonce": 1843337531, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00032-9060", + "type": "text", + "x": 1017.6, + "y": 437.0, + "width": 77.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1427342885, + "version": 1, + "versionNonce": 325237124, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Drafts 2", + "originalText": "Drafts 2", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00033-2798", + "type": "rectangle", + "x": 1113.4, + "y": 430.0, + "width": 106.0, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 153056693, + "version": 1, + "versionNonce": 1980469233, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00034-4906", + "type": "text", + "x": 1123.4, + "y": 437.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1160327554, + "version": 1, + "versionNonce": 224712208, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failing 1", + "originalText": "Failing 1", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00035-4670", + "type": "rectangle", + "x": 400.0, + "y": 494.0, + "width": 1140.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1400816048, + "version": 1, + "versionNonce": 384436219, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00036-4263", + "type": "text", + "x": 414.0, + "y": 507.0, + "width": 382.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1116377547, + "version": 1, + "versionNonce": 1134186838, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WORKFLOW", + "originalText": "WORKFLOW", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00037-2390", + "type": "text", + "x": 824.0, + "y": 507.0, + "width": 142.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 976958319, + "version": 1, + "versionNonce": 774781362, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "VERSION", + "originalText": "VERSION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00038-5174", + "type": "text", + "x": 994.0, + "y": 507.0, + "width": 192.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 709871509, + "version": 1, + "versionNonce": 1203098037, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "LAST RUN", + "originalText": "LAST RUN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00039-9382", + "type": "text", + "x": 1214.0, + "y": 507.0, + "width": 122.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 547366311, + "version": 1, + "versionNonce": 773412357, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "STATE", + "originalText": "STATE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00040-8651", + "type": "text", + "x": 1364.0, + "y": 507.0, + "width": 162.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 342502192, + "version": 1, + "versionNonce": 414243307, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ACTIONS", + "originalText": "ACTIONS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00041-4947", + "type": "rectangle", + "x": 400.0, + "y": 536.0, + "width": 1140.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1829966595, + "version": 1, + "versionNonce": 1639408864, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00042-9407", + "type": "text", + "x": 416.0, + "y": 551.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 531086355, + "version": 1, + "versionNonce": 728213774, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00043-9476", + "type": "text", + "x": 416.0, + "y": 579.0, + "width": 375.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 959723470, + "version": 1, + "versionNonce": 2100303493, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Group feedback and post a weekly summary", + "originalText": "Group feedback and post a weekly summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00044-1086", + "type": "text", + "x": 824.0, + "y": 564.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1794480028, + "version": 1, + "versionNonce": 1277864077, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v7", + "originalText": "v7", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00045-1593", + "type": "rectangle", + "x": 994.0, + "y": 562.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1027195755, + "version": 1, + "versionNonce": 521505030, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00046-3005", + "type": "text", + "x": 1004.0, + "y": 568.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1392785678, + "version": 1, + "versionNonce": 93968000, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00047-6901", + "type": "text", + "x": 1095.0, + "y": 567.0, + "width": 95.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2136670573, + "version": 1, + "versionNonce": 184513834, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "12 min ago", + "originalText": "12 min ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00048-9230", + "type": "rectangle", + "x": 1214.0, + "y": 562.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 938012587, + "version": 1, + "versionNonce": 1064478078, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00049-3164", + "type": "text", + "x": 1224.0, + "y": 568.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1491285223, + "version": 1, + "versionNonce": 1032348848, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00050-8049", + "type": "rectangle", + "x": 1362.0, + "y": 558.0, + "width": 72.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 2147267446, + "version": 1, + "versionNonce": 970649033, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00051-3932", + "type": "text", + "x": 1370.0, + "y": 567.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 254043338, + "version": 1, + "versionNonce": 1541489872, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00052-5029", + "type": "rectangle", + "x": 1444.0, + "y": 558.0, + "width": 76.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 245702973, + "version": 1, + "versionNonce": 1336067291, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00053-8965", + "type": "text", + "x": 1452.0, + "y": 567.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1489094443, + "version": 1, + "versionNonce": 1261217495, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open", + "originalText": "Open", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00054-2498", + "type": "rectangle", + "x": 400.0, + "y": 618.0, + "width": 1140.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 551689451, + "version": 1, + "versionNonce": 786771351, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00055-3366", + "type": "text", + "x": 416.0, + "y": 633.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 443971897, + "version": 1, + "versionNonce": 1527317609, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00056-3411", + "type": "text", + "x": 416.0, + "y": 661.0, + "width": 375.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1254559369, + "version": 1, + "versionNonce": 265118115, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Classify urgent conversations and prepare replies", + "originalText": "Classify urgent conversations and prepare replies", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00057-5110", + "type": "text", + "x": 824.0, + "y": 646.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 583736651, + "version": 1, + "versionNonce": 743125275, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "draft r12", + "originalText": "draft r12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00058-2865", + "type": "rectangle", + "x": 994.0, + "y": 644.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1577742005, + "version": 1, + "versionNonce": 1127063890, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00059-4708", + "type": "text", + "x": 1004.0, + "y": 650.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1289614278, + "version": 1, + "versionNonce": 641504127, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00060-4360", + "type": "text", + "x": 1095.0, + "y": 649.0, + "width": 95.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1725414202, + "version": 1, + "versionNonce": 353367026, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "4 min ago", + "originalText": "4 min ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00061-6433", + "type": "rectangle", + "x": 1214.0, + "y": 644.0, + "width": 68.0, + "height": 28.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1829439043, + "version": 1, + "versionNonce": 75887096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00062-2061", + "type": "text", + "x": 1224.0, + "y": 650.0, + "width": 48.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1657812163, + "version": 1, + "versionNonce": 529458988, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft", + "originalText": "Draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00063-8956", + "type": "rectangle", + "x": 1362.0, + "y": 640.0, + "width": 72.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1746409496, + "version": 1, + "versionNonce": 612545763, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00064-2124", + "type": "text", + "x": 1370.0, + "y": 649.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1496654549, + "version": 1, + "versionNonce": 220596962, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00065-6167", + "type": "rectangle", + "x": 1444.0, + "y": 640.0, + "width": 76.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1435326479, + "version": 1, + "versionNonce": 1348202668, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00066-9872", + "type": "text", + "x": 1452.0, + "y": 649.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1995297981, + "version": 1, + "versionNonce": 701113068, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open", + "originalText": "Open", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00067-9422", + "type": "rectangle", + "x": 400.0, + "y": 700.0, + "width": 1140.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2066972868, + "version": 1, + "versionNonce": 259401317, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00068-2590", + "type": "text", + "x": 416.0, + "y": 715.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1166141698, + "version": 1, + "versionNonce": 1455402352, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Invoice follow-up", + "originalText": "Invoice follow-up", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00069-4586", + "type": "text", + "x": 416.0, + "y": 743.0, + "width": 375.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 198744090, + "version": 1, + "versionNonce": 2102087459, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Prepare overdue invoice reminders for approval", + "originalText": "Prepare overdue invoice reminders for approval", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00070-7065", + "type": "text", + "x": 824.0, + "y": 728.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1354105043, + "version": 1, + "versionNonce": 1597624414, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v4", + "originalText": "v4", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00071-2288", + "type": "rectangle", + "x": 994.0, + "y": 726.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 127652592, + "version": 1, + "versionNonce": 639577668, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00072-1557", + "type": "text", + "x": 1004.0, + "y": 732.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 890573175, + "version": 1, + "versionNonce": 472078081, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00073-2727", + "type": "text", + "x": 1095.0, + "y": 731.0, + "width": 95.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2080967663, + "version": 1, + "versionNonce": 1760835508, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "42 min ago", + "originalText": "42 min ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00074-1406", + "type": "rectangle", + "x": 1214.0, + "y": 726.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1120520558, + "version": 1, + "versionNonce": 1243720374, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00075-2823", + "type": "text", + "x": 1224.0, + "y": 732.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 669922466, + "version": 1, + "versionNonce": 220568617, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00076-8974", + "type": "rectangle", + "x": 1362.0, + "y": 722.0, + "width": 72.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1481854150, + "version": 1, + "versionNonce": 488509408, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00077-7932", + "type": "text", + "x": 1370.0, + "y": 731.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2017699140, + "version": 1, + "versionNonce": 1511799295, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00078-4618", + "type": "rectangle", + "x": 1444.0, + "y": 722.0, + "width": 76.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1808069825, + "version": 1, + "versionNonce": 2116434306, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00079-7720", + "type": "text", + "x": 1452.0, + "y": 731.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2100865816, + "version": 1, + "versionNonce": 874847285, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open", + "originalText": "Open", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00080-5498", + "type": "rectangle", + "x": 400.0, + "y": 782.0, + "width": 1140.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1203534089, + "version": 1, + "versionNonce": 4317943, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00081-2236", + "type": "text", + "x": 416.0, + "y": 797.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1874053866, + "version": 1, + "versionNonce": 2122597077, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Nightly order sync", + "originalText": "Nightly order sync", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00082-1213", + "type": "text", + "x": 416.0, + "y": 825.0, + "width": 375.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 139278044, + "version": 1, + "versionNonce": 1283560239, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Move completed orders into the warehouse", + "originalText": "Move completed orders into the warehouse", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00083-8550", + "type": "text", + "x": 824.0, + "y": 810.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1573087529, + "version": 1, + "versionNonce": 904050530, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v9", + "originalText": "v9", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00084-7944", + "type": "rectangle", + "x": 994.0, + "y": 808.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1847437444, + "version": 1, + "versionNonce": 279061107, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00085-4926", + "type": "text", + "x": 1004.0, + "y": 814.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2135054138, + "version": 1, + "versionNonce": 1496640391, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00086-7750", + "type": "text", + "x": 1095.0, + "y": 813.0, + "width": 95.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 725281272, + "version": 1, + "versionNonce": 1058058823, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "3:04 AM", + "originalText": "3:04 AM", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00087-6522", + "type": "rectangle", + "x": 1214.0, + "y": 808.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1170988998, + "version": 1, + "versionNonce": 661371309, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00088-6806", + "type": "text", + "x": 1224.0, + "y": 814.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1309975006, + "version": 1, + "versionNonce": 1192931498, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00089-7616", + "type": "rectangle", + "x": 1362.0, + "y": 804.0, + "width": 72.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 539512094, + "version": 1, + "versionNonce": 754513799, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00090-6668", + "type": "text", + "x": 1370.0, + "y": 813.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2035422174, + "version": 1, + "versionNonce": 1332733812, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00091-3991", + "type": "rectangle", + "x": 1444.0, + "y": 804.0, + "width": 76.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 202131799, + "version": 1, + "versionNonce": 1773749398, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00092-7259", + "type": "text", + "x": 1452.0, + "y": 813.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2098368041, + "version": 1, + "versionNonce": 96493610, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open", + "originalText": "Open", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00093-3499", + "type": "rectangle", + "x": 400.0, + "y": 864.0, + "width": 1140.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1828061198, + "version": 1, + "versionNonce": 36226060, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00094-2084", + "type": "text", + "x": 416.0, + "y": 879.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 2063029164, + "version": 1, + "versionNonce": 228672405, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Contract review", + "originalText": "Contract review", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00095-4799", + "type": "text", + "x": 416.0, + "y": 907.0, + "width": 375.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1965387534, + "version": 1, + "versionNonce": 161320734, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Flag unusual clauses and prepare a review note", + "originalText": "Flag unusual clauses and prepare a review note", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00096-1101", + "type": "text", + "x": 824.0, + "y": 892.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 198895438, + "version": 1, + "versionNonce": 397435370, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "draft r3", + "originalText": "draft r3", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00097-5249", + "type": "rectangle", + "x": 994.0, + "y": 890.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 2030035673, + "version": 1, + "versionNonce": 818673406, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00098-5172", + "type": "text", + "x": 1004.0, + "y": 896.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 539368758, + "version": 1, + "versionNonce": 1133632936, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Never run", + "originalText": "Never run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00099-1407", + "type": "text", + "x": 1095.0, + "y": 895.0, + "width": 95.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1013210926, + "version": 1, + "versionNonce": 152046176, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00100-1161", + "type": "rectangle", + "x": 1214.0, + "y": 890.0, + "width": 68.0, + "height": 28.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1606034548, + "version": 1, + "versionNonce": 537233589, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00101-7564", + "type": "text", + "x": 1224.0, + "y": 896.0, + "width": 48.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1427963066, + "version": 1, + "versionNonce": 1834163296, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft", + "originalText": "Draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00102-8642", + "type": "rectangle", + "x": 1362.0, + "y": 886.0, + "width": 72.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1503420307, + "version": 1, + "versionNonce": 1336382264, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00103-7771", + "type": "text", + "x": 1370.0, + "y": 895.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 392173482, + "version": 1, + "versionNonce": 664176744, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00104-2946", + "type": "rectangle", + "x": 1444.0, + "y": 886.0, + "width": 76.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": { + "type": 3 + }, + "seed": 1343311786, + "version": 1, + "versionNonce": 529652258, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00105-9298", + "type": "text", + "x": 1452.0, + "y": 895.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 1423319694, + "version": 1, + "versionNonce": 1366635492, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open", + "originalText": "Open", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00106-7546", + "type": "text", + "x": 400.0, + "y": 1166.0, + "width": 760.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-00" + ], + "frameId": "frame-00004-7124", + "roundness": null, + "seed": 419971090, + "version": 1, + "versionNonce": 1051660726, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "5 workflows | Every Run, including a draft revision, is retained in Activity.", + "originalText": "5 workflows | Every Run, including a draft revision, is retained in Activity.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00107-3590", + "type": "frame", + "x": 1920.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1047681375, + "version": 1, + "versionNonce": 267910118, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "02 New workflow - direct creation" + }, + { + "id": "r-00109-5643", + "type": "rectangle", + "x": 1920.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 2078501908, + "version": 1, + "versionNonce": 45018908, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00110-8148", + "type": "rectangle", + "x": 1920.0, + "y": 300.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1657807126, + "version": 1, + "versionNonce": 838548178, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00111-2082", + "type": "text", + "x": 1944.0, + "y": 324.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 562029954, + "version": 1, + "versionNonce": 738084348, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00112-7991", + "type": "text", + "x": 1944.0, + "y": 353.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1026264163, + "version": 1, + "versionNonce": 1226451813, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00113-7097", + "type": "rectangle", + "x": 1932.0, + "y": 408.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1105378700, + "version": 1, + "versionNonce": 1413894393, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00114-8958", + "type": "ellipse", + "x": 1948.0, + "y": 420.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1185473168, + "version": 1, + "versionNonce": 904185499, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00115-2046", + "type": "text", + "x": 1968.0, + "y": 416.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 607984635, + "version": 1, + "versionNonce": 1051729033, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00116-1448", + "type": "ellipse", + "x": 1948.0, + "y": 472.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 104652390, + "version": 1, + "versionNonce": 506763862, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00117-7946", + "type": "text", + "x": 1968.0, + "y": 468.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1492942084, + "version": 1, + "versionNonce": 1273932104, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00118-9479", + "type": "ellipse", + "x": 1948.0, + "y": 524.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1994607107, + "version": 1, + "versionNonce": 284610339, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00119-4312", + "type": "text", + "x": 1968.0, + "y": 520.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 778736701, + "version": 1, + "versionNonce": 1652364614, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00120-1861", + "type": "text", + "x": 1944.0, + "y": 1146.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 960574767, + "version": 1, + "versionNonce": 1840481642, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00121-7062", + "type": "text", + "x": 1944.0, + "y": 1172.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1410835928, + "version": 1, + "versionNonce": 2110584509, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00122-5016", + "type": "rectangle", + "x": 2130.0, + "y": 300.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 2077632551, + "version": 1, + "versionNonce": 1648183085, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00123-1011", + "type": "text", + "x": 2160.0, + "y": 318.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 2019191807, + "version": 1, + "versionNonce": 899677294, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "New workflow", + "originalText": "New workflow", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00124-6566", + "type": "text", + "x": 2160.0, + "y": 349.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 333240417, + "version": 1, + "versionNonce": 62887508, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Choose a starting point. Each option creates a workflow draft directly.", + "originalText": "Choose a starting point. Each option creates a workflow draft directly.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00125-5720", + "type": "rectangle", + "x": 3242.0, + "y": 322.0, + "width": 88.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1048525063, + "version": 1, + "versionNonce": 1909292836, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00126-7564", + "type": "text", + "x": 3250.0, + "y": 331.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 87149875, + "version": 1, + "versionNonce": 529363887, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Cancel", + "originalText": "Cancel", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00127-5056", + "type": "rectangle", + "x": 2160.0, + "y": 424.0, + "width": 362.0, + "height": 180.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 7660660, + "version": 1, + "versionNonce": 1459646542, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00128-9451", + "type": "text", + "x": 2182.0, + "y": 448.0, + "width": 318.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 576999098, + "version": 1, + "versionNonce": 1818273304, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Describe what you need", + "originalText": "Describe what you need", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00129-7500", + "type": "text", + "x": 2182.0, + "y": 488.0, + "width": 310.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 334533754, + "version": 1, + "versionNonce": 1734837888, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Turn a plain-language goal into a reviewable first draft.", + "originalText": "Turn a plain-language goal into a reviewable first draft.", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00130-1854", + "type": "rectangle", + "x": 2182.0, + "y": 548.0, + "width": 130.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1067996867, + "version": 1, + "versionNonce": 570154809, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00131-4505", + "type": "text", + "x": 2190.0, + "y": 557.0, + "width": 114.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1449787118, + "version": 1, + "versionNonce": 1448760770, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Describe", + "originalText": "Describe", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00132-4674", + "type": "rectangle", + "x": 2550.0, + "y": 424.0, + "width": 362.0, + "height": 180.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1885854156, + "version": 1, + "versionNonce": 1426784786, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00133-1177", + "type": "text", + "x": 2572.0, + "y": 448.0, + "width": 318.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 124382589, + "version": 1, + "versionNonce": 1657275537, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Start blank", + "originalText": "Start blank", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00134-6756", + "type": "text", + "x": 2572.0, + "y": 488.0, + "width": 310.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1744679103, + "version": 1, + "versionNonce": 345652397, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open an empty workflow canvas and add the first node.", + "originalText": "Open an empty workflow canvas and add the first node.", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00135-7802", + "type": "rectangle", + "x": 2572.0, + "y": 548.0, + "width": 130.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 859114451, + "version": 1, + "versionNonce": 865092965, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00136-6134", + "type": "text", + "x": 2580.0, + "y": 557.0, + "width": 114.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1996490564, + "version": 1, + "versionNonce": 1668102960, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Start blank", + "originalText": "Start blank", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00137-6248", + "type": "rectangle", + "x": 2940.0, + "y": 424.0, + "width": 362.0, + "height": 180.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 780101623, + "version": 1, + "versionNonce": 953776377, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00138-2179", + "type": "text", + "x": 2962.0, + "y": 448.0, + "width": 318.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1460198614, + "version": 1, + "versionNonce": 1060399244, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Import YAML", + "originalText": "Import YAML", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00139-6881", + "type": "text", + "x": 2962.0, + "y": 488.0, + "width": 310.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 2119391740, + "version": 1, + "versionNonce": 1875548861, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Create a draft from an existing workflow definition.", + "originalText": "Create a draft from an existing workflow definition.", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00140-6073", + "type": "rectangle", + "x": 2962.0, + "y": 548.0, + "width": 130.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 2035943306, + "version": 1, + "versionNonce": 1220851826, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00141-1476", + "type": "text", + "x": 2970.0, + "y": 557.0, + "width": 114.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1435557830, + "version": 1, + "versionNonce": 1488630631, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Import", + "originalText": "Import", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00142-3165", + "type": "text", + "x": 2160.0, + "y": 650.0, + "width": 180.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 503932428, + "version": 1, + "versionNonce": 1864255781, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TEMPLATES", + "originalText": "TEMPLATES", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00143-5238", + "type": "rectangle", + "x": 2160.0, + "y": 688.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 100021162, + "version": 1, + "versionNonce": 241295709, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00144-8338", + "type": "text", + "x": 2178.0, + "y": 706.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1410640628, + "version": 1, + "versionNonce": 1651414920, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00145-4297", + "type": "text", + "x": 2178.0, + "y": 736.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 629775828, + "version": 1, + "versionNonce": 798050102, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "6 steps | Lark", + "originalText": "6 steps | Lark", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00146-7118", + "type": "text", + "x": 2178.0, + "y": 766.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1921310982, + "version": 1, + "versionNonce": 1499046985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 240 times", + "originalText": "Used 240 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00147-7826", + "type": "rectangle", + "x": 2378.0, + "y": 780.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 42454932, + "version": 1, + "versionNonce": 959259493, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00148-6104", + "type": "text", + "x": 2386.0, + "y": 789.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 73401437, + "version": 1, + "versionNonce": 58509815, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00149-7001", + "type": "rectangle", + "x": 2550.0, + "y": 688.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1371654517, + "version": 1, + "versionNonce": 961234423, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00150-2238", + "type": "text", + "x": 2568.0, + "y": 706.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 631776827, + "version": 1, + "versionNonce": 1990256290, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Escalation triage", + "originalText": "Escalation triage", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00151-4579", + "type": "text", + "x": 2568.0, + "y": 736.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1813641465, + "version": 1, + "versionNonce": 1881968262, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "9 steps | Lark + Linear", + "originalText": "9 steps | Lark + Linear", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00152-3948", + "type": "text", + "x": 2568.0, + "y": 766.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 973746391, + "version": 1, + "versionNonce": 852102617, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 180 times", + "originalText": "Used 180 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00153-6588", + "type": "rectangle", + "x": 2768.0, + "y": 780.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1374100357, + "version": 1, + "versionNonce": 945340954, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00154-9950", + "type": "text", + "x": 2776.0, + "y": 789.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 657624235, + "version": 1, + "versionNonce": 1206950047, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00155-2548", + "type": "rectangle", + "x": 2940.0, + "y": 688.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 999527852, + "version": 1, + "versionNonce": 562099883, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00156-7676", + "type": "text", + "x": 2958.0, + "y": 706.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 517729393, + "version": 1, + "versionNonce": 1620646105, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Invoice follow-up", + "originalText": "Invoice follow-up", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00157-4559", + "type": "text", + "x": 2958.0, + "y": 736.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1902934931, + "version": 1, + "versionNonce": 705221614, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "11 steps | Xero + Gmail", + "originalText": "11 steps | Xero + Gmail", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00158-4687", + "type": "text", + "x": 2958.0, + "y": 766.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 579590472, + "version": 1, + "versionNonce": 1880288115, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 96 times", + "originalText": "Used 96 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00159-4268", + "type": "rectangle", + "x": 3158.0, + "y": 780.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1359438051, + "version": 1, + "versionNonce": 797431452, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00160-4988", + "type": "text", + "x": 3166.0, + "y": 789.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 2115112707, + "version": 1, + "versionNonce": 818885024, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00161-3244", + "type": "rectangle", + "x": 2160.0, + "y": 860.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 462843401, + "version": 1, + "versionNonce": 1612310543, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00162-2355", + "type": "text", + "x": 2178.0, + "y": 878.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 44600397, + "version": 1, + "versionNonce": 1300051572, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Standup digest", + "originalText": "Standup digest", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00163-7859", + "type": "text", + "x": 2178.0, + "y": 908.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 448747415, + "version": 1, + "versionNonce": 910774201, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "5 steps | Lark", + "originalText": "5 steps | Lark", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00164-3980", + "type": "text", + "x": 2178.0, + "y": 938.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1576393772, + "version": 1, + "versionNonce": 1673400139, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 88 times", + "originalText": "Used 88 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00165-1679", + "type": "rectangle", + "x": 2378.0, + "y": 952.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1681655430, + "version": 1, + "versionNonce": 1368236930, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00166-1199", + "type": "text", + "x": 2386.0, + "y": 961.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 993231635, + "version": 1, + "versionNonce": 1976862746, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00167-2742", + "type": "rectangle", + "x": 2550.0, + "y": 860.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 520777183, + "version": 1, + "versionNonce": 908378459, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00168-3379", + "type": "text", + "x": 2568.0, + "y": 878.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 816295054, + "version": 1, + "versionNonce": 1308337046, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "On-call summary", + "originalText": "On-call summary", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00169-8555", + "type": "text", + "x": 2568.0, + "y": 908.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 327595501, + "version": 1, + "versionNonce": 1964822773, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "5 steps | PagerDuty", + "originalText": "5 steps | PagerDuty", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00170-6269", + "type": "text", + "x": 2568.0, + "y": 938.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1393681104, + "version": 1, + "versionNonce": 1899536926, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 61 times", + "originalText": "Used 61 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00171-9949", + "type": "rectangle", + "x": 2768.0, + "y": 952.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1690553178, + "version": 1, + "versionNonce": 1275066386, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00172-3321", + "type": "text", + "x": 2776.0, + "y": 961.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 513460525, + "version": 1, + "versionNonce": 144696948, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00173-9909", + "type": "rectangle", + "x": 2940.0, + "y": 860.0, + "width": 362.0, + "height": 148.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1931629847, + "version": 1, + "versionNonce": 1912899231, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00174-9115", + "type": "text", + "x": 2958.0, + "y": 878.0, + "width": 320.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1831064348, + "version": 1, + "versionNonce": 1311845583, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Contract review", + "originalText": "Contract review", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00175-1870", + "type": "text", + "x": 2958.0, + "y": 908.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1337663713, + "version": 1, + "versionNonce": 17683050, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "7 steps | Drive", + "originalText": "7 steps | Drive", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00176-9476", + "type": "text", + "x": 2958.0, + "y": 938.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1893189053, + "version": 1, + "versionNonce": 1865536677, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Used 44 times", + "originalText": "Used 44 times", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00177-4899", + "type": "rectangle", + "x": 3158.0, + "y": 952.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": { + "type": 3 + }, + "seed": 1263821278, + "version": 1, + "versionNonce": 1768657285, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00178-2998", + "type": "text", + "x": 3166.0, + "y": 961.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-01" + ], + "frameId": "frame-00107-3590", + "roundness": null, + "seed": 1577025033, + "version": 1, + "versionNonce": 1030317630, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Use template", + "originalText": "Use template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00179-4597", + "type": "frame", + "x": 3680.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 941152409, + "version": 1, + "versionNonce": 126634037, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "03 Describe - generated Workflow draft" + }, + { + "id": "r-00181-6614", + "type": "rectangle", + "x": 3680.0, + "y": 300.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 619292691, + "version": 1, + "versionNonce": 1791971550, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00182-7935", + "type": "rectangle", + "x": 3680.0, + "y": 300.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 510935215, + "version": 1, + "versionNonce": 558760984, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00183-1303", + "type": "text", + "x": 3704.0, + "y": 324.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1382309349, + "version": 1, + "versionNonce": 161947161, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00184-1645", + "type": "text", + "x": 3704.0, + "y": 353.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 511242457, + "version": 1, + "versionNonce": 2116271982, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00185-1779", + "type": "rectangle", + "x": 3692.0, + "y": 408.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1826137216, + "version": 1, + "versionNonce": 934124905, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00186-1949", + "type": "ellipse", + "x": 3708.0, + "y": 420.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1494420084, + "version": 1, + "versionNonce": 1336410523, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00187-9795", + "type": "text", + "x": 3728.0, + "y": 416.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1185508963, + "version": 1, + "versionNonce": 677139188, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00188-1023", + "type": "ellipse", + "x": 3708.0, + "y": 472.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 238905058, + "version": 1, + "versionNonce": 1664959803, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00189-5299", + "type": "text", + "x": 3728.0, + "y": 468.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2065615911, + "version": 1, + "versionNonce": 1662655822, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00190-7032", + "type": "ellipse", + "x": 3708.0, + "y": 524.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2060407546, + "version": 1, + "versionNonce": 1468435342, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00191-4129", + "type": "text", + "x": 3728.0, + "y": 520.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 315570214, + "version": 1, + "versionNonce": 531161442, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00192-3271", + "type": "text", + "x": 3704.0, + "y": 1146.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 849471132, + "version": 1, + "versionNonce": 1511307963, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00193-5367", + "type": "text", + "x": 3704.0, + "y": 1172.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 74852097, + "version": 1, + "versionNonce": 1576716008, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00194-2574", + "type": "rectangle", + "x": 3890.0, + "y": 300.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 373612242, + "version": 1, + "versionNonce": 1483147711, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00195-2218", + "type": "text", + "x": 3920.0, + "y": 318.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 927006300, + "version": 1, + "versionNonce": 645785096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Monday feedback summary", + "originalText": "Monday feedback summary", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00196-8625", + "type": "text", + "x": 3920.0, + "y": 349.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1870486891, + "version": 1, + "versionNonce": 1171057319, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "originalText": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00197-7800", + "type": "rectangle", + "x": 4610.0, + "y": 324.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 767683730, + "version": 1, + "versionNonce": 1365705744, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00198-8892", + "type": "text", + "x": 4618.0, + "y": 333.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 750143146, + "version": 1, + "versionNonce": 2094369600, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00199-7387", + "type": "rectangle", + "x": 4692.0, + "y": 324.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1154249968, + "version": 1, + "versionNonce": 1075623388, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00200-2223", + "type": "text", + "x": 4700.0, + "y": 333.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 825736954, + "version": 1, + "versionNonce": 1309283410, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00201-5142", + "type": "rectangle", + "x": 4794.0, + "y": 324.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 587856776, + "version": 1, + "versionNonce": 2043684792, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00202-9653", + "type": "text", + "x": 4802.0, + "y": 333.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 171104060, + "version": 1, + "versionNonce": 546655221, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00203-3868", + "type": "rectangle", + "x": 4896.0, + "y": 324.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 818346034, + "version": 1, + "versionNonce": 1139283946, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00204-6848", + "type": "text", + "x": 4904.0, + "y": 333.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1604873388, + "version": 1, + "versionNonce": 1490443945, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00205-6698", + "type": "rectangle", + "x": 4988.0, + "y": 324.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 2146384416, + "version": 1, + "versionNonce": 1341071092, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00206-4992", + "type": "text", + "x": 4996.0, + "y": 333.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 470042625, + "version": 1, + "versionNonce": 1196619506, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00207-4841", + "type": "rectangle", + "x": 3900.0, + "y": 392.0, + "width": 1210.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1258635159, + "version": 1, + "versionNonce": 887923239, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00208-1965", + "type": "line", + "x": 3980.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2136311406, + "version": 1, + "versionNonce": 1713398008, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00209-7004", + "type": "line", + "x": 4100.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 466026979, + "version": 1, + "versionNonce": 1472119802, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00210-4238", + "type": "line", + "x": 4220.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 553811249, + "version": 1, + "versionNonce": 606831489, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00211-5985", + "type": "line", + "x": 4340.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2131559997, + "version": 1, + "versionNonce": 1641707317, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00212-3414", + "type": "line", + "x": 4460.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1297666127, + "version": 1, + "versionNonce": 620837169, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00213-3697", + "type": "line", + "x": 4580.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 985854720, + "version": 1, + "versionNonce": 496962118, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00214-9074", + "type": "line", + "x": 4700.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 174981774, + "version": 1, + "versionNonce": 1609837859, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00215-5198", + "type": "line", + "x": 4820.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1602817946, + "version": 1, + "versionNonce": 589261530, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00216-7133", + "type": "line", + "x": 4940.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1980012199, + "version": 1, + "versionNonce": 621240189, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00217-5895", + "type": "line", + "x": 5060.0, + "y": 392.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1225561655, + "version": 1, + "versionNonce": 1258889751, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00218-9929", + "type": "line", + "x": 3900.0, + "y": 472.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1439276568, + "version": 1, + "versionNonce": 111380559, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00219-2964", + "type": "line", + "x": 3900.0, + "y": 592.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 706725634, + "version": 1, + "versionNonce": 25545325, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00220-1782", + "type": "line", + "x": 3900.0, + "y": 712.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 938635866, + "version": 1, + "versionNonce": 228319219, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00221-2642", + "type": "line", + "x": 3900.0, + "y": 832.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1189114470, + "version": 1, + "versionNonce": 922071722, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00222-2518", + "type": "line", + "x": 3900.0, + "y": 952.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 796561954, + "version": 1, + "versionNonce": 1369816104, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00223-8007", + "type": "line", + "x": 3900.0, + "y": 1072.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1467756532, + "version": 1, + "versionNonce": 499905299, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00224-3596", + "type": "line", + "x": 3900.0, + "y": 1192.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 448038822, + "version": 1, + "versionNonce": 627198832, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00225-1760", + "type": "rectangle", + "x": 3916.0, + "y": 408.0, + "width": 211.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 561905591, + "version": 1, + "versionNonce": 1611409252, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00226-6752", + "type": "text", + "x": 3926.0, + "y": 414.0, + "width": 191.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1524315040, + "version": 1, + "versionNonce": 1525813120, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Description", + "originalText": "Created from Description", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "a-00227-5847", + "type": "arrow", + "x": 4158.0, + "y": 564.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1133340364, + "version": 1, + "versionNonce": 1411973777, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00228-6844", + "type": "arrow", + "x": 4406.0, + "y": 564.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1143874693, + "version": 1, + "versionNonce": 1684112365, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00229-6943", + "type": "arrow", + "x": 4654.0, + "y": 564.0, + "width": 214.0, + "height": 236.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 698984606, + "version": 1, + "versionNonce": 1824010118, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -214.0, + 236.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00230-5055", + "type": "arrow", + "x": 4654.0, + "y": 800.0, + "width": 214.0, + "height": 236.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1600932963, + "version": 1, + "versionNonce": 1340732644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -214.0, + 236.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r-00231-3245", + "type": "rectangle", + "x": 3944.0, + "y": 504.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1085264909, + "version": 1, + "versionNonce": 633434405, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00232-5976", + "type": "rectangle", + "x": 3944.0, + "y": 504.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 449599964, + "version": 1, + "versionNonce": 145448097, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00233-4556", + "type": "ellipse", + "x": 3938.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 858687473, + "version": 1, + "versionNonce": 1814785680, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00234-1469", + "type": "ellipse", + "x": 4152.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1457975126, + "version": 1, + "versionNonce": 738179719, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00235-1753", + "type": "rectangle", + "x": 3958.0, + "y": 518.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 668158073, + "version": 1, + "versionNonce": 1415605121, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00236-8751", + "type": "text", + "x": 3958.0, + "y": 527.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1099423128, + "version": 1, + "versionNonce": 890450943, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "T", + "originalText": "T", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00237-1649", + "type": "text", + "x": 4004.0, + "y": 517.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 681593593, + "version": 1, + "versionNonce": 331548110, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule every Monday", + "originalText": "Schedule every Monday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00238-3951", + "type": "text", + "x": 4004.0, + "y": 543.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1267982350, + "version": 1, + "versionNonce": 217028593, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00239-3485", + "type": "line", + "x": 3956.0, + "y": 566.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1323999936, + "version": 1, + "versionNonce": 1114575607, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00240-6075", + "type": "text", + "x": 3958.0, + "y": 580.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1448462034, + "version": 1, + "versionNonce": 2015177290, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Every Monday at 09:00", + "originalText": "Every Monday at 09:00", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00241-6353", + "type": "rectangle", + "x": 4192.0, + "y": 504.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 65897026, + "version": 1, + "versionNonce": 1881701955, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00242-3683", + "type": "rectangle", + "x": 4192.0, + "y": 504.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 170322328, + "version": 1, + "versionNonce": 2077990909, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00243-4761", + "type": "ellipse", + "x": 4186.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1530932214, + "version": 1, + "versionNonce": 2109535548, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00244-1428", + "type": "ellipse", + "x": 4400.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 181399569, + "version": 1, + "versionNonce": 1933626037, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00245-4452", + "type": "rectangle", + "x": 4206.0, + "y": 518.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 419512166, + "version": 1, + "versionNonce": 749242005, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00246-4984", + "type": "text", + "x": 4206.0, + "y": 527.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 115767746, + "version": 1, + "versionNonce": 1027248310, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00247-9971", + "type": "text", + "x": 4252.0, + "y": 517.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2012936015, + "version": 1, + "versionNonce": 1612582283, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Collect recent feedback", + "originalText": "Collect recent feedback", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00248-6635", + "type": "text", + "x": 4252.0, + "y": 543.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1109297118, + "version": 1, + "versionNonce": 1633746459, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark messages", + "originalText": "Lark messages", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00249-1229", + "type": "line", + "x": 4204.0, + "y": 566.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1795410792, + "version": 1, + "versionNonce": 1474969056, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00250-6728", + "type": "text", + "x": 4206.0, + "y": 580.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 188871057, + "version": 1, + "versionNonce": 155849285, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00251-9341", + "type": "rectangle", + "x": 4440.0, + "y": 504.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1093332563, + "version": 1, + "versionNonce": 1971200117, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00252-3917", + "type": "rectangle", + "x": 4440.0, + "y": 504.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 292432474, + "version": 1, + "versionNonce": 1980452580, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00253-5590", + "type": "ellipse", + "x": 4434.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1213868931, + "version": 1, + "versionNonce": 572326681, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00254-8688", + "type": "ellipse", + "x": 4648.0, + "y": 558.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 766985476, + "version": 1, + "versionNonce": 224026526, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00255-1604", + "type": "rectangle", + "x": 4454.0, + "y": 518.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 49670202, + "version": 1, + "versionNonce": 1095324737, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00256-2131", + "type": "text", + "x": 4454.0, + "y": 527.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1868916435, + "version": 1, + "versionNonce": 46642639, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00257-8932", + "type": "text", + "x": 4500.0, + "y": 517.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1589721236, + "version": 1, + "versionNonce": 1545931885, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Group feedback themes", + "originalText": "Group feedback themes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00258-3549", + "type": "text", + "x": 4500.0, + "y": 543.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1948341332, + "version": 1, + "versionNonce": 264452942, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00259-6431", + "type": "line", + "x": 4452.0, + "y": 566.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2018958728, + "version": 1, + "versionNonce": 918349221, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00260-1936", + "type": "text", + "x": 4454.0, + "y": 580.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 655971894, + "version": 1, + "versionNonce": 866724465, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00261-8922", + "type": "rectangle", + "x": 4440.0, + "y": 740.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 201762234, + "version": 1, + "versionNonce": 439560707, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00262-2696", + "type": "rectangle", + "x": 4440.0, + "y": 740.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1847938695, + "version": 1, + "versionNonce": 1147472528, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00263-4560", + "type": "ellipse", + "x": 4434.0, + "y": 794.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 416758094, + "version": 1, + "versionNonce": 1333191385, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00264-2645", + "type": "ellipse", + "x": 4648.0, + "y": 794.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 944383850, + "version": 1, + "versionNonce": 998145644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00265-8336", + "type": "rectangle", + "x": 4454.0, + "y": 754.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 267960454, + "version": 1, + "versionNonce": 2061737178, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00266-9171", + "type": "text", + "x": 4454.0, + "y": 763.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 958312472, + "version": 1, + "versionNonce": 1510403854, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00267-1569", + "type": "text", + "x": 4500.0, + "y": 753.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 213216345, + "version": 1, + "versionNonce": 1957588969, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft concise summary", + "originalText": "Draft concise summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00268-6545", + "type": "text", + "x": 4500.0, + "y": 779.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1540860241, + "version": 1, + "versionNonce": 2138444123, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00269-8391", + "type": "line", + "x": 4452.0, + "y": 802.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1564867787, + "version": 1, + "versionNonce": 595906136, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00270-6614", + "type": "text", + "x": 4454.0, + "y": 816.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1293146404, + "version": 1, + "versionNonce": 73526054, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00271-8366", + "type": "rectangle", + "x": 4440.0, + "y": 976.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 958929808, + "version": 1, + "versionNonce": 565380060, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00272-8669", + "type": "rectangle", + "x": 4440.0, + "y": 976.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 685586677, + "version": 1, + "versionNonce": 1123562527, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00273-8780", + "type": "ellipse", + "x": 4434.0, + "y": 1030.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1663423181, + "version": 1, + "versionNonce": 1667460693, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00274-5315", + "type": "ellipse", + "x": 4648.0, + "y": 1030.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 346522571, + "version": 1, + "versionNonce": 1043907599, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00275-2668", + "type": "rectangle", + "x": 4454.0, + "y": 990.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1108071382, + "version": 1, + "versionNonce": 2040281320, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00276-4296", + "type": "text", + "x": 4454.0, + "y": 999.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 632025954, + "version": 1, + "versionNonce": 542459938, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00277-7532", + "type": "text", + "x": 4500.0, + "y": 989.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1415755504, + "version": 1, + "versionNonce": 1869832633, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Post feedback summary", + "originalText": "Post feedback summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00278-2411", + "type": "text", + "x": 4500.0, + "y": 1015.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 865337512, + "version": 1, + "versionNonce": 1632647139, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00279-3204", + "type": "line", + "x": 4452.0, + "y": 1038.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 896537753, + "version": 1, + "versionNonce": 1121235239, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00280-1167", + "type": "text", + "x": 4454.0, + "y": 1052.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2033260413, + "version": 1, + "versionNonce": 1811351210, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00281-8695", + "type": "rectangle", + "x": 3916.0, + "y": 1082.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1095424036, + "version": 1, + "versionNonce": 114314282, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00282-8319", + "type": "text", + "x": 3924.0, + "y": 1091.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 775126905, + "version": 1, + "versionNonce": 274829809, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00283-1034", + "type": "rectangle", + "x": 3916.0, + "y": 1118.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 74579709, + "version": 1, + "versionNonce": 397347995, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00284-5314", + "type": "text", + "x": 3924.0, + "y": 1127.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1917992649, + "version": 1, + "versionNonce": 2122747661, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00285-3748", + "type": "rectangle", + "x": 3916.0, + "y": 1154.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1488384017, + "version": 1, + "versionNonce": 258931500, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00286-7228", + "type": "text", + "x": 3924.0, + "y": 1163.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1115102660, + "version": 1, + "versionNonce": 2014631740, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00287-2834", + "type": "rectangle", + "x": 4556.0, + "y": 1106.0, + "width": 138.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1096816586, + "version": 1, + "versionNonce": 600526684, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00288-1413", + "type": "rectangle", + "x": 4566.0, + "y": 1122.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 2144961277, + "version": 1, + "versionNonce": 698302925, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00289-6722", + "type": "rectangle", + "x": 4606.0, + "y": 1122.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 488970030, + "version": 1, + "versionNonce": 1656664951, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00290-6169", + "type": "rectangle", + "x": 4646.0, + "y": 1122.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 342539583, + "version": 1, + "versionNonce": 542933312, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00291-9429", + "type": "rectangle", + "x": 4566.0, + "y": 1150.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1190326036, + "version": 1, + "versionNonce": 862601533, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00292-6447", + "type": "rectangle", + "x": 4606.0, + "y": 1150.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 313574622, + "version": 1, + "versionNonce": 2128119794, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00293-9302", + "type": "rectangle", + "x": 4720.0, + "y": 392.0, + "width": 390.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#e5e7eb", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 858710666, + "version": 1, + "versionNonce": 1417432104, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00294-3138", + "type": "text", + "x": 4740.0, + "y": 410.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 606075863, + "version": 1, + "versionNonce": 471407912, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Node configuration", + "originalText": "Node configuration", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00295-3449", + "type": "text", + "x": 4740.0, + "y": 440.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 882316004, + "version": 1, + "versionNonce": 2058637860, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule every Monday", + "originalText": "Schedule every Monday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00296-4145", + "type": "text", + "x": 5064.0, + "y": 409.0, + "width": 24.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1001425296, + "version": 1, + "versionNonce": 1612682349, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x", + "originalText": "x", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00297-1710", + "type": "line", + "x": 4720.0, + "y": 468.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1618034771, + "version": 1, + "versionNonce": 980149182, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00298-9610", + "type": "text", + "x": 4740.0, + "y": 492.0, + "width": 71.82, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 790426006, + "version": 1, + "versionNonce": 1674773579, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NODE NAME", + "originalText": "NODE NAME", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00299-3915", + "type": "rectangle", + "x": 4740.0, + "y": 514.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1416091167, + "version": 1, + "versionNonce": 1038382237, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00300-3680", + "type": "text", + "x": 4752.0, + "y": 525.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 66141781, + "version": 1, + "versionNonce": 726820429, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule every Monday", + "originalText": "Schedule every Monday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00301-6634", + "type": "text", + "x": 4740.0, + "y": 580.0, + "width": 31.919999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2014475214, + "version": 1, + "versionNonce": 1864518595, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TYPE", + "originalText": "TYPE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00302-2676", + "type": "rectangle", + "x": 4740.0, + "y": 602.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 58914059, + "version": 1, + "versionNonce": 1558790760, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00303-1587", + "type": "text", + "x": 4752.0, + "y": 613.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1184971013, + "version": 1, + "versionNonce": 261181265, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00304-5414", + "type": "text", + "x": 4740.0, + "y": 668.0, + "width": 71.82, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1197572192, + "version": 1, + "versionNonce": 1285598344, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "FREQUENCY", + "originalText": "FREQUENCY", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00305-8730", + "type": "rectangle", + "x": 4740.0, + "y": 690.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1536659718, + "version": 1, + "versionNonce": 2110000981, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00306-3013", + "type": "text", + "x": 4752.0, + "y": 701.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1059428017, + "version": 1, + "versionNonce": 2142435693, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Every Monday at 09:00", + "originalText": "Every Monday at 09:00", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00307-6275", + "type": "text", + "x": 4740.0, + "y": 756.0, + "width": 63.839999999999996, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1276402982, + "version": 1, + "versionNonce": 786694950, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TIMEZONE", + "originalText": "TIMEZONE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00308-2487", + "type": "rectangle", + "x": 4740.0, + "y": 778.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 126078861, + "version": 1, + "versionNonce": 318476850, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00309-4116", + "type": "text", + "x": 4752.0, + "y": 789.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1603733352, + "version": 1, + "versionNonce": 264845589, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Asia/Shanghai", + "originalText": "Asia/Shanghai", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00310-5448", + "type": "line", + "x": 4720.0, + "y": 1148.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1869707965, + "version": 1, + "versionNonce": 1882828120, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00311-5257", + "type": "rectangle", + "x": 4914.0, + "y": 1162.0, + "width": 78.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 1147673080, + "version": 1, + "versionNonce": 332343003, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00312-6488", + "type": "text", + "x": 4922.0, + "y": 1171.0, + "width": 62.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 1828813987, + "version": 1, + "versionNonce": 1973693551, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Delete", + "originalText": "Delete", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00313-6658", + "type": "rectangle", + "x": 5002.0, + "y": 1162.0, + "width": 88.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": { + "type": 3 + }, + "seed": 638741813, + "version": 1, + "versionNonce": 1527692760, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00314-7692", + "type": "text", + "x": 5010.0, + "y": 1171.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-02" + ], + "frameId": "frame-00179-4597", + "roundness": null, + "seed": 2007675807, + "version": 1, + "versionNonce": 1973788005, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Apply", + "originalText": "Apply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00315-3022", + "type": "frame", + "x": 160.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 42557187, + "version": 1, + "versionNonce": 983898766, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "04 Start blank - empty Workflow draft" + }, + { + "id": "r-00317-5462", + "type": "rectangle", + "x": 160.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 2283132, + "version": 1, + "versionNonce": 17327505, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00318-8515", + "type": "rectangle", + "x": 160.0, + "y": 1480.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1259272673, + "version": 1, + "versionNonce": 444069262, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00319-4624", + "type": "text", + "x": 184.0, + "y": 1504.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1937579970, + "version": 1, + "versionNonce": 2040487640, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00320-7714", + "type": "text", + "x": 184.0, + "y": 1533.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1678315007, + "version": 1, + "versionNonce": 1814353859, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00321-4560", + "type": "rectangle", + "x": 172.0, + "y": 1588.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 858902989, + "version": 1, + "versionNonce": 659842308, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00322-5118", + "type": "ellipse", + "x": 188.0, + "y": 1600.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 438963308, + "version": 1, + "versionNonce": 2081649833, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00323-6978", + "type": "text", + "x": 208.0, + "y": 1596.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 880520027, + "version": 1, + "versionNonce": 2048586288, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00324-8218", + "type": "ellipse", + "x": 188.0, + "y": 1652.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 953335281, + "version": 1, + "versionNonce": 1712703414, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00325-5938", + "type": "text", + "x": 208.0, + "y": 1648.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1120101386, + "version": 1, + "versionNonce": 550130064, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00326-5417", + "type": "ellipse", + "x": 188.0, + "y": 1704.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 452349976, + "version": 1, + "versionNonce": 854362230, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00327-6114", + "type": "text", + "x": 208.0, + "y": 1700.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1305364217, + "version": 1, + "versionNonce": 1391595430, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00328-1183", + "type": "text", + "x": 184.0, + "y": 2326.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1310101204, + "version": 1, + "versionNonce": 2016589689, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00329-8284", + "type": "text", + "x": 184.0, + "y": 2352.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1095768232, + "version": 1, + "versionNonce": 394241251, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00330-2690", + "type": "rectangle", + "x": 370.0, + "y": 1480.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 12503718, + "version": 1, + "versionNonce": 944448609, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00331-5130", + "type": "text", + "x": 400.0, + "y": 1498.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1131450871, + "version": 1, + "versionNonce": 405947081, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Untitled workflow", + "originalText": "Untitled workflow", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00332-7144", + "type": "text", + "x": 400.0, + "y": 1529.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1453471729, + "version": 1, + "versionNonce": 1302574345, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "originalText": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00333-4287", + "type": "rectangle", + "x": 1090.0, + "y": 1504.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 2017795932, + "version": 1, + "versionNonce": 1033670969, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00334-3746", + "type": "text", + "x": 1098.0, + "y": 1513.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1004426732, + "version": 1, + "versionNonce": 137356904, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00335-2664", + "type": "rectangle", + "x": 1172.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 729875190, + "version": 1, + "versionNonce": 876892230, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00336-9820", + "type": "text", + "x": 1180.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1352267811, + "version": 1, + "versionNonce": 507442455, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00337-8978", + "type": "rectangle", + "x": 1274.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 458022298, + "version": 1, + "versionNonce": 313088696, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00338-3382", + "type": "text", + "x": 1282.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1923686879, + "version": 1, + "versionNonce": 884670832, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00339-8902", + "type": "rectangle", + "x": 1376.0, + "y": 1504.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1944820142, + "version": 1, + "versionNonce": 1878136582, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00340-8063", + "type": "text", + "x": 1384.0, + "y": 1513.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 231096130, + "version": 1, + "versionNonce": 823537119, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00341-5301", + "type": "rectangle", + "x": 1468.0, + "y": 1504.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 511275896, + "version": 1, + "versionNonce": 1650692772, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00342-6841", + "type": "text", + "x": 1476.0, + "y": 1513.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1962365347, + "version": 1, + "versionNonce": 632369453, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00343-7129", + "type": "rectangle", + "x": 380.0, + "y": 1572.0, + "width": 1210.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1783601389, + "version": 1, + "versionNonce": 2130566188, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00344-1682", + "type": "line", + "x": 460.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 516782545, + "version": 1, + "versionNonce": 374773894, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00345-8064", + "type": "line", + "x": 580.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 850915205, + "version": 1, + "versionNonce": 2131168694, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00346-1436", + "type": "line", + "x": 700.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 410612334, + "version": 1, + "versionNonce": 1121739985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00347-6513", + "type": "line", + "x": 820.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1025833937, + "version": 1, + "versionNonce": 347215111, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00348-4791", + "type": "line", + "x": 940.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 339796898, + "version": 1, + "versionNonce": 2108855840, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00349-3736", + "type": "line", + "x": 1060.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1279470552, + "version": 1, + "versionNonce": 1594583881, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00350-8665", + "type": "line", + "x": 1180.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1091985185, + "version": 1, + "versionNonce": 13547251, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00351-2748", + "type": "line", + "x": 1300.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1107782610, + "version": 1, + "versionNonce": 508066236, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00352-4133", + "type": "line", + "x": 1420.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1988609540, + "version": 1, + "versionNonce": 1396654306, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00353-5915", + "type": "line", + "x": 1540.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 229708895, + "version": 1, + "versionNonce": 1745747624, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00354-5164", + "type": "line", + "x": 380.0, + "y": 1652.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 808700537, + "version": 1, + "versionNonce": 1010909192, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00355-1254", + "type": "line", + "x": 380.0, + "y": 1772.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 561426437, + "version": 1, + "versionNonce": 201138841, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00356-7306", + "type": "line", + "x": 380.0, + "y": 1892.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 720971524, + "version": 1, + "versionNonce": 650587655, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00357-7744", + "type": "line", + "x": 380.0, + "y": 2012.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 356346214, + "version": 1, + "versionNonce": 1085209217, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00358-9499", + "type": "line", + "x": 380.0, + "y": 2132.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1638361495, + "version": 1, + "versionNonce": 1486709379, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00359-7012", + "type": "line", + "x": 380.0, + "y": 2252.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1955058767, + "version": 1, + "versionNonce": 76519465, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00360-6302", + "type": "line", + "x": 380.0, + "y": 2372.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 496145280, + "version": 1, + "versionNonce": 1512397418, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00361-4618", + "type": "rectangle", + "x": 396.0, + "y": 1588.0, + "width": 164.4, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1230651726, + "version": 1, + "versionNonce": 1643179365, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00362-4197", + "type": "text", + "x": 406.0, + "y": 1594.0, + "width": 144.4, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 780112178, + "version": 1, + "versionNonce": 1423736381, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Blank", + "originalText": "Created from Blank", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00363-6216", + "type": "rectangle", + "x": 929.0, + "y": 1895.0, + "width": 112.0, + "height": 112.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1086815180, + "version": 1, + "versionNonce": 1631195342, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00364-3127", + "type": "text", + "x": 929.0, + "y": 1923.0, + "width": 112.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 665448921, + "version": 1, + "versionNonce": 570616313, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 32, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00365-9217", + "type": "text", + "x": 835.0, + "y": 2025.0, + "width": 300.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 213473822, + "version": 1, + "versionNonce": 1836158962, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add first step", + "originalText": "Add first step", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00366-6391", + "type": "text", + "x": 765.0, + "y": 2063.0, + "width": 440.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 208552174, + "version": 1, + "versionNonce": 432886256, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Start this workflow by adding the first step.", + "originalText": "Start this workflow by adding the first step.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00367-4867", + "type": "rectangle", + "x": 396.0, + "y": 2262.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1860302457, + "version": 1, + "versionNonce": 1221754845, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00368-6644", + "type": "text", + "x": 404.0, + "y": 2271.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1753532650, + "version": 1, + "versionNonce": 1174014866, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00369-8813", + "type": "rectangle", + "x": 396.0, + "y": 2298.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1896250950, + "version": 1, + "versionNonce": 1880989829, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00370-8271", + "type": "text", + "x": 404.0, + "y": 2307.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 1011863622, + "version": 1, + "versionNonce": 1784772485, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00371-3884", + "type": "rectangle", + "x": 396.0, + "y": 2334.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": { + "type": 3 + }, + "seed": 1487119837, + "version": 1, + "versionNonce": 1731683853, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00372-8045", + "type": "text", + "x": 404.0, + "y": 2343.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-03" + ], + "frameId": "frame-00315-3022", + "roundness": null, + "seed": 2131149974, + "version": 1, + "versionNonce": 1344082925, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00373-4230", + "type": "frame", + "x": 1920.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 894017045, + "version": 1, + "versionNonce": 132502651, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "05 Import YAML - imported Workflow draft" + }, + { + "id": "r-00375-6590", + "type": "rectangle", + "x": 1920.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1066768897, + "version": 1, + "versionNonce": 571719350, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00376-7755", + "type": "rectangle", + "x": 1920.0, + "y": 1480.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1650838828, + "version": 1, + "versionNonce": 565701919, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00377-9643", + "type": "text", + "x": 1944.0, + "y": 1504.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 548016263, + "version": 1, + "versionNonce": 279775350, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00378-9274", + "type": "text", + "x": 1944.0, + "y": 1533.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1050175930, + "version": 1, + "versionNonce": 1737295992, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00379-8077", + "type": "rectangle", + "x": 1932.0, + "y": 1588.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 652033221, + "version": 1, + "versionNonce": 446347078, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00380-2291", + "type": "ellipse", + "x": 1948.0, + "y": 1600.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 948885946, + "version": 1, + "versionNonce": 371961739, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00381-1824", + "type": "text", + "x": 1968.0, + "y": 1596.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 620696319, + "version": 1, + "versionNonce": 1859692279, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00382-4337", + "type": "ellipse", + "x": 1948.0, + "y": 1652.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 612296472, + "version": 1, + "versionNonce": 1267435577, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00383-1700", + "type": "text", + "x": 1968.0, + "y": 1648.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 889149494, + "version": 1, + "versionNonce": 1611736151, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00384-2721", + "type": "ellipse", + "x": 1948.0, + "y": 1704.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 198661835, + "version": 1, + "versionNonce": 1011842532, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00385-6958", + "type": "text", + "x": 1968.0, + "y": 1700.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1247346228, + "version": 1, + "versionNonce": 604293774, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00386-6695", + "type": "text", + "x": 1944.0, + "y": 2326.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1264159160, + "version": 1, + "versionNonce": 696200860, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00387-7296", + "type": "text", + "x": 1944.0, + "y": 2352.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 963781976, + "version": 1, + "versionNonce": 129929634, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00388-1776", + "type": "rectangle", + "x": 2130.0, + "y": 1480.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 383026340, + "version": 1, + "versionNonce": 1814126832, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00389-9515", + "type": "text", + "x": 2160.0, + "y": 1498.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 167239364, + "version": 1, + "versionNonce": 1423445626, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Daily order exception report", + "originalText": "Daily order exception report", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00390-2947", + "type": "text", + "x": 2160.0, + "y": 1529.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1974425555, + "version": 1, + "versionNonce": 798039837, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 1 \u00b7 Imported just now", + "originalText": "Current draft \u00b7 revision 1 \u00b7 Imported just now", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00391-6290", + "type": "rectangle", + "x": 2850.0, + "y": 1504.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1889887093, + "version": 1, + "versionNonce": 1968710775, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00392-6895", + "type": "text", + "x": 2858.0, + "y": 1513.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2058324767, + "version": 1, + "versionNonce": 1458336462, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00393-1231", + "type": "rectangle", + "x": 2932.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1363548493, + "version": 1, + "versionNonce": 770861111, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00394-3538", + "type": "text", + "x": 2940.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 447585636, + "version": 1, + "versionNonce": 1595914718, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00395-9017", + "type": "rectangle", + "x": 3034.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 426106756, + "version": 1, + "versionNonce": 180552981, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00396-9297", + "type": "text", + "x": 3042.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 229377819, + "version": 1, + "versionNonce": 1051576803, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00397-2057", + "type": "rectangle", + "x": 3136.0, + "y": 1504.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 979702586, + "version": 1, + "versionNonce": 975810671, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00398-4302", + "type": "text", + "x": 3144.0, + "y": 1513.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1861849773, + "version": 1, + "versionNonce": 1573531956, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00399-6299", + "type": "rectangle", + "x": 3228.0, + "y": 1504.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 518830164, + "version": 1, + "versionNonce": 1990591369, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00400-3272", + "type": "text", + "x": 3236.0, + "y": 1513.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1759040550, + "version": 1, + "versionNonce": 46565691, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00401-6395", + "type": "rectangle", + "x": 2140.0, + "y": 1572.0, + "width": 1210.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 800882108, + "version": 1, + "versionNonce": 1524822334, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00402-9735", + "type": "line", + "x": 2220.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1124803193, + "version": 1, + "versionNonce": 1780043816, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00403-1639", + "type": "line", + "x": 2340.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1473242142, + "version": 1, + "versionNonce": 1125577164, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00404-7780", + "type": "line", + "x": 2460.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 470611028, + "version": 1, + "versionNonce": 1819928665, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00405-4476", + "type": "line", + "x": 2580.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1982717731, + "version": 1, + "versionNonce": 1928603786, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00406-4184", + "type": "line", + "x": 2700.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 555336086, + "version": 1, + "versionNonce": 1694509733, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00407-5605", + "type": "line", + "x": 2820.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 613531729, + "version": 1, + "versionNonce": 1384965803, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00408-7932", + "type": "line", + "x": 2940.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 343632542, + "version": 1, + "versionNonce": 919502337, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00409-9000", + "type": "line", + "x": 3060.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 449773164, + "version": 1, + "versionNonce": 2023689952, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00410-9883", + "type": "line", + "x": 3180.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 360880803, + "version": 1, + "versionNonce": 420610877, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00411-4016", + "type": "line", + "x": 3300.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 702926291, + "version": 1, + "versionNonce": 1260009592, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00412-5247", + "type": "line", + "x": 2140.0, + "y": 1652.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 113496579, + "version": 1, + "versionNonce": 245319262, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00413-9227", + "type": "line", + "x": 2140.0, + "y": 1772.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 401820249, + "version": 1, + "versionNonce": 1634534107, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00414-5874", + "type": "line", + "x": 2140.0, + "y": 1892.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1169817713, + "version": 1, + "versionNonce": 851760780, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00415-7242", + "type": "line", + "x": 2140.0, + "y": 2012.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2031198241, + "version": 1, + "versionNonce": 316920407, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00416-6290", + "type": "line", + "x": 2140.0, + "y": 2132.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2087033620, + "version": 1, + "versionNonce": 1987312844, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00417-4072", + "type": "line", + "x": 2140.0, + "y": 2252.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 933729539, + "version": 1, + "versionNonce": 922584770, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00418-3639", + "type": "line", + "x": 2140.0, + "y": 2372.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1956549775, + "version": 1, + "versionNonce": 460277284, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00419-8145", + "type": "rectangle", + "x": 2156.0, + "y": 1588.0, + "width": 172.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 870691716, + "version": 1, + "versionNonce": 1564414197, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00420-7124", + "type": "text", + "x": 2166.0, + "y": 1594.0, + "width": 152.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 387367722, + "version": 1, + "versionNonce": 1133770345, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Import", + "originalText": "Created from Import", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "a-00421-7100", + "type": "arrow", + "x": 2398.0, + "y": 1744.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1133459987, + "version": 1, + "versionNonce": 2147272685, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00422-8081", + "type": "arrow", + "x": 2646.0, + "y": 1744.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 359074719, + "version": 1, + "versionNonce": 1573270907, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00423-7143", + "type": "arrow", + "x": 2894.0, + "y": 1744.0, + "width": 214.0, + "height": 236.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1336653315, + "version": 1, + "versionNonce": 1863663777, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -214.0, + 236.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r-00424-6209", + "type": "rectangle", + "x": 2184.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 690332460, + "version": 1, + "versionNonce": 817501434, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00425-9762", + "type": "rectangle", + "x": 2184.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 931309064, + "version": 1, + "versionNonce": 131757949, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00426-3882", + "type": "ellipse", + "x": 2178.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 589036927, + "version": 1, + "versionNonce": 125765451, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00427-5425", + "type": "ellipse", + "x": 2392.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1576632388, + "version": 1, + "versionNonce": 1555900735, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00428-6896", + "type": "rectangle", + "x": 2198.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 363975874, + "version": 1, + "versionNonce": 413198224, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00429-5115", + "type": "text", + "x": 2198.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 451147796, + "version": 1, + "versionNonce": 1505883401, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "T", + "originalText": "T", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00430-6605", + "type": "text", + "x": 2244.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2016158021, + "version": 1, + "versionNonce": 1275248107, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule every weekday", + "originalText": "Schedule every weekday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00431-1541", + "type": "text", + "x": 2244.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1913742875, + "version": 1, + "versionNonce": 1343190612, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00432-8108", + "type": "line", + "x": 2196.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1218824084, + "version": 1, + "versionNonce": 558676590, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00433-2958", + "type": "text", + "x": 2198.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 216631248, + "version": 1, + "versionNonce": 485935105, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00434-2326", + "type": "rectangle", + "x": 2432.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1105355300, + "version": 1, + "versionNonce": 1154669100, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00435-7870", + "type": "rectangle", + "x": 2432.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "#0891b2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 578100903, + "version": 1, + "versionNonce": 363214318, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00436-7145", + "type": "ellipse", + "x": 2426.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "#0891b2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1927497171, + "version": 1, + "versionNonce": 898768112, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00437-3586", + "type": "ellipse", + "x": 2640.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "#0891b2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1989017601, + "version": 1, + "versionNonce": 1484151114, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00438-9110", + "type": "rectangle", + "x": 2446.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 590375721, + "version": 1, + "versionNonce": 1028010992, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00439-1242", + "type": "text", + "x": 2446.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#0891b2", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2092560323, + "version": 1, + "versionNonce": 2060118286, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "D", + "originalText": "D", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00440-9327", + "type": "text", + "x": 2492.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1157642155, + "version": 1, + "versionNonce": 724129063, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Find order exceptions", + "originalText": "Find order exceptions", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00441-7404", + "type": "text", + "x": 2492.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 935463053, + "version": 1, + "versionNonce": 631626389, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Data query", + "originalText": "Data query", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00442-5116", + "type": "line", + "x": 2444.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1231730879, + "version": 1, + "versionNonce": 1812108254, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00443-5214", + "type": "text", + "x": 2446.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1247118585, + "version": 1, + "versionNonce": 2129318375, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Orders", + "originalText": "Orders", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00444-1039", + "type": "rectangle", + "x": 2680.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 113432608, + "version": 1, + "versionNonce": 1070713033, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00445-1701", + "type": "rectangle", + "x": 2680.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1725622613, + "version": 1, + "versionNonce": 1197335082, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00446-1169", + "type": "ellipse", + "x": 2674.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 674711124, + "version": 1, + "versionNonce": 866386896, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00447-3852", + "type": "ellipse", + "x": 2888.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 359942413, + "version": 1, + "versionNonce": 790658582, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00448-2853", + "type": "rectangle", + "x": 2694.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1349647054, + "version": 1, + "versionNonce": 1656665502, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00449-1880", + "type": "text", + "x": 2694.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1162698083, + "version": 1, + "versionNonce": 965254476, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00450-1611", + "type": "text", + "x": 2740.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2076173996, + "version": 1, + "versionNonce": 1357515334, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Summarize exceptions", + "originalText": "Summarize exceptions", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00451-3509", + "type": "text", + "x": 2740.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 80224444, + "version": 1, + "versionNonce": 745539407, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00452-6291", + "type": "line", + "x": 2692.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2132993665, + "version": 1, + "versionNonce": 868582197, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00453-8652", + "type": "text", + "x": 2694.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 888454877, + "version": 1, + "versionNonce": 1677801418, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00454-4336", + "type": "rectangle", + "x": 2680.0, + "y": 1920.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1032351350, + "version": 1, + "versionNonce": 1386739540, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00455-1877", + "type": "rectangle", + "x": 2680.0, + "y": 1920.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2091494065, + "version": 1, + "versionNonce": 1954718944, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00456-5613", + "type": "ellipse", + "x": 2674.0, + "y": 1974.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1142287261, + "version": 1, + "versionNonce": 1790329915, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00457-3305", + "type": "ellipse", + "x": 2888.0, + "y": 1974.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 628828323, + "version": 1, + "versionNonce": 1146136573, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00458-3452", + "type": "rectangle", + "x": 2694.0, + "y": 1934.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 2042464788, + "version": 1, + "versionNonce": 596321335, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00459-7182", + "type": "text", + "x": 2694.0, + "y": 1943.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 575847588, + "version": 1, + "versionNonce": 1442388324, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00460-2993", + "type": "text", + "x": 2740.0, + "y": 1933.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1751620069, + "version": 1, + "versionNonce": 562758755, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Send operations summary", + "originalText": "Send operations summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00461-3804", + "type": "text", + "x": 2740.0, + "y": 1959.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2030209434, + "version": 1, + "versionNonce": 1047402106, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00462-1113", + "type": "line", + "x": 2692.0, + "y": 1982.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 241326731, + "version": 1, + "versionNonce": 87554638, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00463-1426", + "type": "text", + "x": 2694.0, + "y": 1996.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 463866723, + "version": 1, + "versionNonce": 1342771574, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00464-1147", + "type": "rectangle", + "x": 2156.0, + "y": 2262.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 559676673, + "version": 1, + "versionNonce": 1205560567, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00465-7139", + "type": "text", + "x": 2164.0, + "y": 2271.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1913006616, + "version": 1, + "versionNonce": 2132308979, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00466-7509", + "type": "rectangle", + "x": 2156.0, + "y": 2298.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1416230354, + "version": 1, + "versionNonce": 386160336, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00467-6199", + "type": "text", + "x": 2164.0, + "y": 2307.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1580684773, + "version": 1, + "versionNonce": 1595253345, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00468-4215", + "type": "rectangle", + "x": 2156.0, + "y": 2334.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1136802612, + "version": 1, + "versionNonce": 1777703197, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00469-5174", + "type": "text", + "x": 2164.0, + "y": 2343.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1642294323, + "version": 1, + "versionNonce": 780318946, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00470-3921", + "type": "rectangle", + "x": 2796.0, + "y": 2286.0, + "width": 138.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1349111837, + "version": 1, + "versionNonce": 2048119173, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00471-6316", + "type": "rectangle", + "x": 2806.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 215472825, + "version": 1, + "versionNonce": 780004938, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00472-1428", + "type": "rectangle", + "x": 2846.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 784717305, + "version": 1, + "versionNonce": 643934769, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00473-2790", + "type": "rectangle", + "x": 2886.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 56625910, + "version": 1, + "versionNonce": 186612890, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00474-9236", + "type": "rectangle", + "x": 2806.0, + "y": 2330.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 2013795494, + "version": 1, + "versionNonce": 2008008781, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00475-9318", + "type": "rectangle", + "x": 2960.0, + "y": 1572.0, + "width": 390.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#e5e7eb", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 846798613, + "version": 1, + "versionNonce": 949354913, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00476-8202", + "type": "text", + "x": 2980.0, + "y": 1590.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 684792509, + "version": 1, + "versionNonce": 1569638094, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Node configuration", + "originalText": "Node configuration", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00477-4558", + "type": "text", + "x": 2980.0, + "y": 1620.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 44571204, + "version": 1, + "versionNonce": 2133681118, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Find order exceptions", + "originalText": "Find order exceptions", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00478-3476", + "type": "text", + "x": 3304.0, + "y": 1589.0, + "width": 24.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1919668463, + "version": 1, + "versionNonce": 1215516350, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x", + "originalText": "x", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00479-9275", + "type": "line", + "x": 2960.0, + "y": 1648.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1987261006, + "version": 1, + "versionNonce": 1386567819, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00480-3744", + "type": "text", + "x": 2980.0, + "y": 1672.0, + "width": 71.82, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1505466352, + "version": 1, + "versionNonce": 540012733, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NODE NAME", + "originalText": "NODE NAME", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00481-6406", + "type": "rectangle", + "x": 2980.0, + "y": 1694.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 888787557, + "version": 1, + "versionNonce": 2035742007, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00482-3361", + "type": "text", + "x": 2992.0, + "y": 1705.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 423651487, + "version": 1, + "versionNonce": 318838013, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Find order exceptions", + "originalText": "Find order exceptions", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00483-9355", + "type": "text", + "x": 2980.0, + "y": 1760.0, + "width": 31.919999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 846448227, + "version": 1, + "versionNonce": 2093466681, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TYPE", + "originalText": "TYPE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00484-5633", + "type": "rectangle", + "x": 2980.0, + "y": 1782.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 167250139, + "version": 1, + "versionNonce": 1689055260, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00485-9527", + "type": "text", + "x": 2992.0, + "y": 1793.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1234329338, + "version": 1, + "versionNonce": 1937225415, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Data query", + "originalText": "Data query", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00486-2659", + "type": "text", + "x": 2980.0, + "y": 1848.0, + "width": 47.879999999999995, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 2001238317, + "version": 1, + "versionNonce": 2117212282, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SOURCE", + "originalText": "SOURCE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00487-4248", + "type": "rectangle", + "x": 2980.0, + "y": 1870.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 849091520, + "version": 1, + "versionNonce": 1864618112, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00488-3093", + "type": "text", + "x": 2992.0, + "y": 1881.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 530027516, + "version": 1, + "versionNonce": 110130534, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Orders", + "originalText": "Orders", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00489-7683", + "type": "text", + "x": 2980.0, + "y": 1936.0, + "width": 47.879999999999995, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1368585613, + "version": 1, + "versionNonce": 1821626862, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "FILTER", + "originalText": "FILTER", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00490-5771", + "type": "rectangle", + "x": 2980.0, + "y": 1958.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 48068245, + "version": 1, + "versionNonce": 1332841767, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00491-3538", + "type": "text", + "x": 2992.0, + "y": 1969.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 1627277313, + "version": 1, + "versionNonce": 99958022, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "status = exception", + "originalText": "status = exception", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00492-7766", + "type": "line", + "x": 2960.0, + "y": 2328.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 728408978, + "version": 1, + "versionNonce": 1116456365, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00493-8594", + "type": "rectangle", + "x": 3154.0, + "y": 2342.0, + "width": 78.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1540293338, + "version": 1, + "versionNonce": 633615825, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00494-4373", + "type": "text", + "x": 3162.0, + "y": 2351.0, + "width": 62.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 484679513, + "version": 1, + "versionNonce": 744165405, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Delete", + "originalText": "Delete", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00495-6070", + "type": "rectangle", + "x": 3242.0, + "y": 2342.0, + "width": 88.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": { + "type": 3 + }, + "seed": 1414343000, + "version": 1, + "versionNonce": 1576107066, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00496-4873", + "type": "text", + "x": 3250.0, + "y": 2351.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-04" + ], + "frameId": "frame-00373-4230", + "roundness": null, + "seed": 430208822, + "version": 1, + "versionNonce": 1255412657, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Apply", + "originalText": "Apply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00497-1095", + "type": "frame", + "x": 3680.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 13269160, + "version": 1, + "versionNonce": 1011063864, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "06 Template - populated Workflow draft" + }, + { + "id": "r-00499-9798", + "type": "rectangle", + "x": 3680.0, + "y": 1480.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 583711047, + "version": 1, + "versionNonce": 1326515533, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00500-7284", + "type": "rectangle", + "x": 3680.0, + "y": 1480.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1973535551, + "version": 1, + "versionNonce": 1968115255, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00501-7180", + "type": "text", + "x": 3704.0, + "y": 1504.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1994264986, + "version": 1, + "versionNonce": 1024805867, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00502-9317", + "type": "text", + "x": 3704.0, + "y": 1533.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1335769668, + "version": 1, + "versionNonce": 1244840994, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00503-2598", + "type": "rectangle", + "x": 3692.0, + "y": 1588.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1870449888, + "version": 1, + "versionNonce": 986152151, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00504-5460", + "type": "ellipse", + "x": 3708.0, + "y": 1600.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 298446521, + "version": 1, + "versionNonce": 1972974574, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00505-3572", + "type": "text", + "x": 3728.0, + "y": 1596.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 933370169, + "version": 1, + "versionNonce": 743733077, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00506-8790", + "type": "ellipse", + "x": 3708.0, + "y": 1652.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 239847797, + "version": 1, + "versionNonce": 1471327341, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00507-7587", + "type": "text", + "x": 3728.0, + "y": 1648.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1206099618, + "version": 1, + "versionNonce": 128006646, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00508-7215", + "type": "ellipse", + "x": 3708.0, + "y": 1704.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 614389668, + "version": 1, + "versionNonce": 1171936549, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00509-2420", + "type": "text", + "x": 3728.0, + "y": 1700.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 480704553, + "version": 1, + "versionNonce": 2096635357, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00510-9056", + "type": "text", + "x": 3704.0, + "y": 2326.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1615369727, + "version": 1, + "versionNonce": 745251070, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00511-5137", + "type": "text", + "x": 3704.0, + "y": 2352.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1823868379, + "version": 1, + "versionNonce": 1050462843, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00512-9815", + "type": "rectangle", + "x": 3890.0, + "y": 1480.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 302045654, + "version": 1, + "versionNonce": 648983536, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00513-6256", + "type": "text", + "x": 3920.0, + "y": 1498.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1324179997, + "version": 1, + "versionNonce": 1617935925, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Standup digest copy", + "originalText": "Standup digest copy", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00514-2995", + "type": "text", + "x": 3920.0, + "y": 1529.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1499233681, + "version": 1, + "versionNonce": 2037723742, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "originalText": "Current draft \u00b7 revision 1 \u00b7 Saved just now", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00515-1650", + "type": "rectangle", + "x": 4610.0, + "y": 1504.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1993396562, + "version": 1, + "versionNonce": 1291552109, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00516-8686", + "type": "text", + "x": 4618.0, + "y": 1513.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 2047653892, + "version": 1, + "versionNonce": 1485901770, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00517-5899", + "type": "rectangle", + "x": 4692.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 2091871812, + "version": 1, + "versionNonce": 1865289533, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00518-5391", + "type": "text", + "x": 4700.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 397901424, + "version": 1, + "versionNonce": 1559987500, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00519-1489", + "type": "rectangle", + "x": 4794.0, + "y": 1504.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1420860191, + "version": 1, + "versionNonce": 315094120, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00520-5452", + "type": "text", + "x": 4802.0, + "y": 1513.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 602156002, + "version": 1, + "versionNonce": 1958438664, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00521-4830", + "type": "rectangle", + "x": 4896.0, + "y": 1504.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1354937448, + "version": 1, + "versionNonce": 74933065, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00522-8477", + "type": "text", + "x": 4904.0, + "y": 1513.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 504762185, + "version": 1, + "versionNonce": 1279662512, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00523-6450", + "type": "rectangle", + "x": 4988.0, + "y": 1504.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1901702757, + "version": 1, + "versionNonce": 1048416333, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00524-8015", + "type": "text", + "x": 4996.0, + "y": 1513.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1584852074, + "version": 1, + "versionNonce": 986627134, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00525-7260", + "type": "rectangle", + "x": 3900.0, + "y": 1572.0, + "width": 1210.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 213177491, + "version": 1, + "versionNonce": 486439660, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00526-6797", + "type": "line", + "x": 3980.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 389912412, + "version": 1, + "versionNonce": 446990868, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00527-1965", + "type": "line", + "x": 4100.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1702639914, + "version": 1, + "versionNonce": 1750772127, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00528-6675", + "type": "line", + "x": 4220.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1954427704, + "version": 1, + "versionNonce": 1381922415, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00529-7564", + "type": "line", + "x": 4340.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 357567464, + "version": 1, + "versionNonce": 721517804, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00530-6028", + "type": "line", + "x": 4460.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 700799571, + "version": 1, + "versionNonce": 962551275, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00531-6008", + "type": "line", + "x": 4580.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 670800506, + "version": 1, + "versionNonce": 1057176836, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00532-3279", + "type": "line", + "x": 4700.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 649671098, + "version": 1, + "versionNonce": 121188035, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00533-1125", + "type": "line", + "x": 4820.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1584205375, + "version": 1, + "versionNonce": 1974068546, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00534-6559", + "type": "line", + "x": 4940.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 67846565, + "version": 1, + "versionNonce": 1422612681, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00535-4204", + "type": "line", + "x": 5060.0, + "y": 1572.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 2002138020, + "version": 1, + "versionNonce": 366471899, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00536-1153", + "type": "line", + "x": 3900.0, + "y": 1652.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 54308665, + "version": 1, + "versionNonce": 1457200466, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00537-6206", + "type": "line", + "x": 3900.0, + "y": 1772.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1846780993, + "version": 1, + "versionNonce": 103213386, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00538-6951", + "type": "line", + "x": 3900.0, + "y": 1892.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1958819957, + "version": 1, + "versionNonce": 76138036, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00539-6205", + "type": "line", + "x": 3900.0, + "y": 2012.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 325532565, + "version": 1, + "versionNonce": 695414663, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00540-9039", + "type": "line", + "x": 3900.0, + "y": 2132.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1375210318, + "version": 1, + "versionNonce": 604281084, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00541-9956", + "type": "line", + "x": 3900.0, + "y": 2252.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1316341297, + "version": 1, + "versionNonce": 858486099, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00542-3627", + "type": "line", + "x": 3900.0, + "y": 2372.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1146529667, + "version": 1, + "versionNonce": 1789878911, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00543-4744", + "type": "rectangle", + "x": 3916.0, + "y": 1588.0, + "width": 187.79999999999998, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 295580701, + "version": 1, + "versionNonce": 1187394902, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00544-6569", + "type": "text", + "x": 3926.0, + "y": 1594.0, + "width": 167.79999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1021866757, + "version": 1, + "versionNonce": 452667072, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Template", + "originalText": "Created from Template", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "a-00545-2651", + "type": "arrow", + "x": 4158.0, + "y": 1744.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 2064985107, + "version": 1, + "versionNonce": 11266225, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00546-4084", + "type": "arrow", + "x": 4406.0, + "y": 1744.0, + "width": 34.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1278195399, + "version": 1, + "versionNonce": 1073963741, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00547-6394", + "type": "arrow", + "x": 4654.0, + "y": 1744.0, + "width": 214.0, + "height": 236.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 269929932, + "version": 1, + "versionNonce": 773525106, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -214.0, + 236.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r-00548-5270", + "type": "rectangle", + "x": 3944.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1659994984, + "version": 1, + "versionNonce": 652166569, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00549-3885", + "type": "rectangle", + "x": 3944.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1585045107, + "version": 1, + "versionNonce": 1854066836, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00550-7196", + "type": "ellipse", + "x": 3938.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 790591997, + "version": 1, + "versionNonce": 1358778253, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00551-3693", + "type": "ellipse", + "x": 4152.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#6941c6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 616519725, + "version": 1, + "versionNonce": 1668155666, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00552-1396", + "type": "rectangle", + "x": 3958.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 134673925, + "version": 1, + "versionNonce": 88651768, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00553-1046", + "type": "text", + "x": 3958.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 703087946, + "version": 1, + "versionNonce": 713543490, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "T", + "originalText": "T", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00554-4252", + "type": "text", + "x": 4004.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1181732128, + "version": 1, + "versionNonce": 1082862052, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule every weekday", + "originalText": "Schedule every weekday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00555-5468", + "type": "text", + "x": 4004.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1388780674, + "version": 1, + "versionNonce": 1235523764, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00556-7371", + "type": "line", + "x": 3956.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1956863056, + "version": 1, + "versionNonce": 875601681, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00557-8914", + "type": "text", + "x": 3958.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1033267833, + "version": 1, + "versionNonce": 1154085775, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00558-5488", + "type": "rectangle", + "x": 4192.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1855843825, + "version": 1, + "versionNonce": 234716122, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00559-4857", + "type": "rectangle", + "x": 4192.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 833133788, + "version": 1, + "versionNonce": 147176378, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00560-7541", + "type": "ellipse", + "x": 4186.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 810676266, + "version": 1, + "versionNonce": 1404609099, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00561-9634", + "type": "ellipse", + "x": 4400.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 2060259672, + "version": 1, + "versionNonce": 450662015, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00562-7183", + "type": "rectangle", + "x": 4206.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 496691920, + "version": 1, + "versionNonce": 920159656, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00563-6321", + "type": "text", + "x": 4206.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 386508028, + "version": 1, + "versionNonce": 1385710002, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00564-2249", + "type": "text", + "x": 4252.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1805018423, + "version": 1, + "versionNonce": 1813340642, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Collect contributor updates", + "originalText": "Collect contributor updates", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00565-6661", + "type": "text", + "x": 4252.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 555689753, + "version": 1, + "versionNonce": 496194664, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark messages", + "originalText": "Lark messages", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00566-2127", + "type": "line", + "x": 4204.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 470541522, + "version": 1, + "versionNonce": 973754534, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00567-1911", + "type": "text", + "x": 4206.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 957680163, + "version": 1, + "versionNonce": 1653296336, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00568-9041", + "type": "rectangle", + "x": 4440.0, + "y": 1684.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 631735678, + "version": 1, + "versionNonce": 545648037, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00569-9696", + "type": "rectangle", + "x": 4440.0, + "y": 1684.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1643719722, + "version": 1, + "versionNonce": 1044977644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00570-3014", + "type": "ellipse", + "x": 4434.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1669564179, + "version": 1, + "versionNonce": 1259848295, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00571-4383", + "type": "ellipse", + "x": 4648.0, + "y": 1738.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 841662619, + "version": 1, + "versionNonce": 1733074358, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00572-1616", + "type": "rectangle", + "x": 4454.0, + "y": 1698.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 440910706, + "version": 1, + "versionNonce": 1970073991, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00573-4747", + "type": "text", + "x": 4454.0, + "y": 1707.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 332335135, + "version": 1, + "versionNonce": 1179587402, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00574-8409", + "type": "text", + "x": 4500.0, + "y": 1697.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 780181255, + "version": 1, + "versionNonce": 971194053, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft standup digest", + "originalText": "Draft standup digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00575-9688", + "type": "text", + "x": 4500.0, + "y": 1723.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1200460183, + "version": 1, + "versionNonce": 642197253, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00576-8477", + "type": "line", + "x": 4452.0, + "y": 1746.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 149300529, + "version": 1, + "versionNonce": 865281785, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00577-9523", + "type": "text", + "x": 4454.0, + "y": 1760.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 895949961, + "version": 1, + "versionNonce": 1804729281, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Group updates into completed, planned, and blocked.", + "originalText": "Group updates into completed, planned, and blocked.", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00578-4135", + "type": "rectangle", + "x": 4440.0, + "y": 1920.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1887236953, + "version": 1, + "versionNonce": 689768362, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00579-7435", + "type": "rectangle", + "x": 4440.0, + "y": 1920.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1960400721, + "version": 1, + "versionNonce": 1929740314, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00580-7801", + "type": "ellipse", + "x": 4434.0, + "y": 1974.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1726870499, + "version": 1, + "versionNonce": 1957094805, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00581-8753", + "type": "ellipse", + "x": 4648.0, + "y": 1974.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1649220325, + "version": 1, + "versionNonce": 303547821, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00582-2231", + "type": "rectangle", + "x": 4454.0, + "y": 1934.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1908750776, + "version": 1, + "versionNonce": 1953786600, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00583-2416", + "type": "text", + "x": 4454.0, + "y": 1943.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 539535662, + "version": 1, + "versionNonce": 426552255, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00584-6318", + "type": "text", + "x": 4500.0, + "y": 1933.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 192529532, + "version": 1, + "versionNonce": 1924122947, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Post standup digest", + "originalText": "Post standup digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00585-4294", + "type": "text", + "x": 4500.0, + "y": 1959.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 2016805091, + "version": 1, + "versionNonce": 675891455, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00586-5611", + "type": "line", + "x": 4452.0, + "y": 1982.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1773474006, + "version": 1, + "versionNonce": 1488189502, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00587-8138", + "type": "text", + "x": 4454.0, + "y": 1996.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 386975751, + "version": 1, + "versionNonce": 1419569263, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00588-8647", + "type": "rectangle", + "x": 3916.0, + "y": 2262.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 798988729, + "version": 1, + "versionNonce": 1216325153, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00589-9535", + "type": "text", + "x": 3924.0, + "y": 2271.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 713338221, + "version": 1, + "versionNonce": 1854319591, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00590-7903", + "type": "rectangle", + "x": 3916.0, + "y": 2298.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 522809342, + "version": 1, + "versionNonce": 48214625, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00591-8586", + "type": "text", + "x": 3924.0, + "y": 2307.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 738394344, + "version": 1, + "versionNonce": 486059083, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00592-2828", + "type": "rectangle", + "x": 3916.0, + "y": 2334.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 155554173, + "version": 1, + "versionNonce": 15579895, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00593-8271", + "type": "text", + "x": 3924.0, + "y": 2343.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 974369482, + "version": 1, + "versionNonce": 419794290, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00594-6875", + "type": "rectangle", + "x": 4556.0, + "y": 2286.0, + "width": 138.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1311360359, + "version": 1, + "versionNonce": 1920727665, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00595-8356", + "type": "rectangle", + "x": 4566.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 172972468, + "version": 1, + "versionNonce": 124692797, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00596-6567", + "type": "rectangle", + "x": 4606.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1929504929, + "version": 1, + "versionNonce": 1439612762, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00597-8461", + "type": "rectangle", + "x": 4646.0, + "y": 2302.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1963318816, + "version": 1, + "versionNonce": 724971308, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00598-8636", + "type": "rectangle", + "x": 4566.0, + "y": 2330.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 388520946, + "version": 1, + "versionNonce": 1786284098, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00599-3996", + "type": "rectangle", + "x": 4720.0, + "y": 1572.0, + "width": 390.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#e5e7eb", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1496277612, + "version": 1, + "versionNonce": 498707589, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00600-9761", + "type": "text", + "x": 4740.0, + "y": 1590.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 446073869, + "version": 1, + "versionNonce": 97658155, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Node configuration", + "originalText": "Node configuration", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00601-5542", + "type": "text", + "x": 4740.0, + "y": 1620.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 528703378, + "version": 1, + "versionNonce": 505295562, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft standup digest", + "originalText": "Draft standup digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00602-5607", + "type": "text", + "x": 5064.0, + "y": 1589.0, + "width": 24.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1392839513, + "version": 1, + "versionNonce": 264196685, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x", + "originalText": "x", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00603-7533", + "type": "line", + "x": 4720.0, + "y": 1648.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1757016018, + "version": 1, + "versionNonce": 366308299, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00604-9756", + "type": "text", + "x": 4740.0, + "y": 1672.0, + "width": 71.82, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 282852408, + "version": 1, + "versionNonce": 758647785, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NODE NAME", + "originalText": "NODE NAME", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00605-5746", + "type": "rectangle", + "x": 4740.0, + "y": 1694.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1287028775, + "version": 1, + "versionNonce": 17715181, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00606-3310", + "type": "text", + "x": 4752.0, + "y": 1705.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1067327293, + "version": 1, + "versionNonce": 1276057975, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft standup digest", + "originalText": "Draft standup digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00607-1543", + "type": "text", + "x": 4740.0, + "y": 1760.0, + "width": 31.919999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1752171904, + "version": 1, + "versionNonce": 1237918507, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TYPE", + "originalText": "TYPE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00608-6245", + "type": "rectangle", + "x": 4740.0, + "y": 1782.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 539171088, + "version": 1, + "versionNonce": 1486646985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00609-1921", + "type": "text", + "x": 4752.0, + "y": 1793.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1321631672, + "version": 1, + "versionNonce": 1113997790, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00610-8938", + "type": "text", + "x": 4740.0, + "y": 1848.0, + "width": 87.77999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1397446847, + "version": 1, + "versionNonce": 1040708949, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "INSTRUCTION", + "originalText": "INSTRUCTION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00611-4773", + "type": "rectangle", + "x": 4740.0, + "y": 1870.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 631037415, + "version": 1, + "versionNonce": 64135026, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00612-2557", + "type": "text", + "x": 4752.0, + "y": 1881.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1124744145, + "version": 1, + "versionNonce": 1399709537, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Group updates into completed, planned, and blocked.", + "originalText": "Group updates into completed, planned, and blocked.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00613-1305", + "type": "text", + "x": 4740.0, + "y": 1936.0, + "width": 31.919999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1943106480, + "version": 1, + "versionNonce": 1725508972, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TONE", + "originalText": "TONE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00614-8273", + "type": "rectangle", + "x": 4740.0, + "y": 1958.0, + "width": 350.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1394505852, + "version": 1, + "versionNonce": 795661565, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00615-9589", + "type": "text", + "x": 4752.0, + "y": 1969.0, + "width": 326.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1441801691, + "version": 1, + "versionNonce": 1229826638, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Concise", + "originalText": "Concise", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00616-3663", + "type": "line", + "x": 4720.0, + "y": 2328.0, + "width": 390.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 520687506, + "version": 1, + "versionNonce": 1675645074, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 390.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00617-5680", + "type": "rectangle", + "x": 4914.0, + "y": 2342.0, + "width": 78.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1987390011, + "version": 1, + "versionNonce": 259098794, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00618-9233", + "type": "text", + "x": 4922.0, + "y": 2351.0, + "width": 62.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 265786387, + "version": 1, + "versionNonce": 1380529045, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Delete", + "originalText": "Delete", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00619-5489", + "type": "rectangle", + "x": 5002.0, + "y": 2342.0, + "width": 88.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": { + "type": 3 + }, + "seed": 1599552097, + "version": 1, + "versionNonce": 1699680222, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00620-9055", + "type": "text", + "x": 5010.0, + "y": 2351.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-05" + ], + "frameId": "frame-00497-1095", + "roundness": null, + "seed": 1902297582, + "version": 1, + "versionNonce": 102090287, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Apply", + "originalText": "Apply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00621-6168", + "type": "frame", + "x": 160.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1335595176, + "version": 1, + "versionNonce": 1982957977, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "07 Run - unified execution dialog" + }, + { + "id": "r-00623-3774", + "type": "rectangle", + "x": 160.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 264703568, + "version": 1, + "versionNonce": 512641121, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00624-2684", + "type": "rectangle", + "x": 160.0, + "y": 2660.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1835520340, + "version": 1, + "versionNonce": 1430948710, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00625-5229", + "type": "text", + "x": 184.0, + "y": 2684.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 748051209, + "version": 1, + "versionNonce": 1857717936, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00626-6185", + "type": "text", + "x": 184.0, + "y": 2713.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 895057130, + "version": 1, + "versionNonce": 871166264, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00627-9394", + "type": "rectangle", + "x": 172.0, + "y": 2768.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1263755682, + "version": 1, + "versionNonce": 1629150105, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00628-3669", + "type": "ellipse", + "x": 188.0, + "y": 2780.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1436962452, + "version": 1, + "versionNonce": 553795908, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00629-4663", + "type": "text", + "x": 208.0, + "y": 2776.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1845037515, + "version": 1, + "versionNonce": 577200592, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00630-1782", + "type": "ellipse", + "x": 188.0, + "y": 2832.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1788926571, + "version": 1, + "versionNonce": 829065470, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00631-3758", + "type": "text", + "x": 208.0, + "y": 2828.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1289547133, + "version": 1, + "versionNonce": 1135084330, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00632-6707", + "type": "ellipse", + "x": 188.0, + "y": 2884.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1863333264, + "version": 1, + "versionNonce": 1943284102, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00633-4567", + "type": "text", + "x": 208.0, + "y": 2880.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1369666237, + "version": 1, + "versionNonce": 1082240096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00634-5762", + "type": "text", + "x": 184.0, + "y": 3506.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1858150985, + "version": 1, + "versionNonce": 1352858898, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00635-7427", + "type": "text", + "x": 184.0, + "y": 3532.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1209760612, + "version": 1, + "versionNonce": 651814990, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00636-7123", + "type": "rectangle", + "x": 370.0, + "y": 2660.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1098956797, + "version": 1, + "versionNonce": 77499511, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00637-5661", + "type": "text", + "x": 400.0, + "y": 2678.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 338743391, + "version": 1, + "versionNonce": 1523752307, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00638-1203", + "type": "text", + "x": 400.0, + "y": 2709.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 2120049584, + "version": 1, + "versionNonce": 1233321378, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft revision 12 | Saved just now", + "originalText": "Draft revision 12 | Saved just now", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00639-5220", + "type": "rectangle", + "x": 1090.0, + "y": 2684.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 457269733, + "version": 1, + "versionNonce": 1794181280, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00640-7071", + "type": "text", + "x": 1098.0, + "y": 2693.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 593012798, + "version": 1, + "versionNonce": 1351448565, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00641-7279", + "type": "rectangle", + "x": 1172.0, + "y": 2684.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1022752697, + "version": 1, + "versionNonce": 1487218531, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00642-6153", + "type": "text", + "x": 1180.0, + "y": 2693.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1148329110, + "version": 1, + "versionNonce": 1872175802, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00643-9698", + "type": "rectangle", + "x": 1274.0, + "y": 2684.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 553342051, + "version": 1, + "versionNonce": 568013523, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00644-8967", + "type": "text", + "x": 1282.0, + "y": 2693.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 581638745, + "version": 1, + "versionNonce": 1945938699, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00645-4266", + "type": "rectangle", + "x": 1376.0, + "y": 2684.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2145146059, + "version": 1, + "versionNonce": 1713648253, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00646-8193", + "type": "text", + "x": 1384.0, + "y": 2693.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1434098424, + "version": 1, + "versionNonce": 1426648699, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00647-6525", + "type": "rectangle", + "x": 1468.0, + "y": 2684.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 16639806, + "version": 1, + "versionNonce": 1244303036, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00648-3443", + "type": "text", + "x": 1476.0, + "y": 2693.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 84444767, + "version": 1, + "versionNonce": 1185344103, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00649-5261", + "type": "rectangle", + "x": 380.0, + "y": 2752.0, + "width": 1210.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 371201612, + "version": 1, + "versionNonce": 1783128515, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00650-2404", + "type": "line", + "x": 460.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1874521093, + "version": 1, + "versionNonce": 1860623560, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00651-4455", + "type": "line", + "x": 580.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 519001862, + "version": 1, + "versionNonce": 343290136, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00652-3810", + "type": "line", + "x": 700.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 2043590355, + "version": 1, + "versionNonce": 287229034, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00653-6359", + "type": "line", + "x": 820.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1191520855, + "version": 1, + "versionNonce": 959746715, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00654-1950", + "type": "line", + "x": 940.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 333080134, + "version": 1, + "versionNonce": 305507027, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00655-6460", + "type": "line", + "x": 1060.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 285147285, + "version": 1, + "versionNonce": 21692403, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00656-5362", + "type": "line", + "x": 1180.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 293326957, + "version": 1, + "versionNonce": 1704114958, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00657-3534", + "type": "line", + "x": 1300.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 13335880, + "version": 1, + "versionNonce": 1740160025, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00658-1199", + "type": "line", + "x": 1420.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1923443264, + "version": 1, + "versionNonce": 519190335, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00659-1531", + "type": "line", + "x": 1540.0, + "y": 2752.0, + "width": 0.0, + "height": 818.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 374796352, + "version": 1, + "versionNonce": 632379758, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 818.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00660-8799", + "type": "line", + "x": 380.0, + "y": 2832.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1384175795, + "version": 1, + "versionNonce": 269411512, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00661-8116", + "type": "line", + "x": 380.0, + "y": 2952.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 698916087, + "version": 1, + "versionNonce": 630539690, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00662-9600", + "type": "line", + "x": 380.0, + "y": 3072.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1378573391, + "version": 1, + "versionNonce": 689890238, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00663-8992", + "type": "line", + "x": 380.0, + "y": 3192.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1680944557, + "version": 1, + "versionNonce": 107411811, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00664-3488", + "type": "line", + "x": 380.0, + "y": 3312.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 118936427, + "version": 1, + "versionNonce": 358490931, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00665-1615", + "type": "line", + "x": 380.0, + "y": 3432.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 764295867, + "version": 1, + "versionNonce": 140577477, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00666-6627", + "type": "line", + "x": 380.0, + "y": 3552.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 945227285, + "version": 1, + "versionNonce": 705895750, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00667-5192", + "type": "rectangle", + "x": 396.0, + "y": 2768.0, + "width": 211.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1351934798, + "version": 1, + "versionNonce": 823020715, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00668-9010", + "type": "text", + "x": 406.0, + "y": 2774.0, + "width": 191.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 351823424, + "version": 1, + "versionNonce": 627091793, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Description", + "originalText": "Created from Description", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "a-00669-5641", + "type": "arrow", + "x": 622.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1735411040, + "version": 1, + "versionNonce": 1234830506, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00670-4193", + "type": "arrow", + "x": 857.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1238020008, + "version": 1, + "versionNonce": 1453343242, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00671-3682", + "type": "arrow", + "x": 1092.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 966878207, + "version": 1, + "versionNonce": 535674304, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00672-8935", + "type": "arrow", + "x": 1327.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1996301009, + "version": 1, + "versionNonce": 1945497720, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r-00673-1090", + "type": "rectangle", + "x": 408.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1539642225, + "version": 1, + "versionNonce": 286520743, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00674-3610", + "type": "rectangle", + "x": 408.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 525600533, + "version": 1, + "versionNonce": 1301250791, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00675-1938", + "type": "ellipse", + "x": 402.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1626280680, + "version": 1, + "versionNonce": 1937840531, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00676-1672", + "type": "ellipse", + "x": 616.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1355541774, + "version": 1, + "versionNonce": 1232653855, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00677-1905", + "type": "rectangle", + "x": 422.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1965882266, + "version": 1, + "versionNonce": 384896288, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00678-9426", + "type": "text", + "x": 422.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 502185270, + "version": 1, + "versionNonce": 2006344122, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00679-2210", + "type": "text", + "x": 468.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 2140444339, + "version": 1, + "versionNonce": 679230138, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Receive conversation", + "originalText": "Receive conversation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00680-9798", + "type": "text", + "x": 468.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 583819061, + "version": 1, + "versionNonce": 1437084906, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00681-9967", + "type": "line", + "x": 420.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 492486786, + "version": 1, + "versionNonce": 862385765, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00682-6166", + "type": "text", + "x": 422.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 400440906, + "version": 1, + "versionNonce": 940949837, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00683-7189", + "type": "rectangle", + "x": 643.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 86818184, + "version": 1, + "versionNonce": 1172330759, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00684-1114", + "type": "rectangle", + "x": 643.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 613632002, + "version": 1, + "versionNonce": 346351460, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00685-2072", + "type": "ellipse", + "x": 637.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 947813562, + "version": 1, + "versionNonce": 1331074750, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00686-7668", + "type": "ellipse", + "x": 851.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1684457035, + "version": 1, + "versionNonce": 717980958, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00687-9606", + "type": "rectangle", + "x": 657.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 182823325, + "version": 1, + "versionNonce": 1357675811, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00688-9174", + "type": "text", + "x": 657.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 359048982, + "version": 1, + "versionNonce": 1248019457, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00689-4030", + "type": "text", + "x": 703.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 2054115972, + "version": 1, + "versionNonce": 555545128, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Classify severity", + "originalText": "Classify severity", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00690-5924", + "type": "text", + "x": 703.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1626068460, + "version": 1, + "versionNonce": 675749125, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00691-3495", + "type": "line", + "x": 655.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1493913794, + "version": 1, + "versionNonce": 59876336, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00692-2631", + "type": "text", + "x": 657.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1201761537, + "version": 1, + "versionNonce": 1858395643, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00693-3250", + "type": "rectangle", + "x": 878.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2116145164, + "version": 1, + "versionNonce": 1692680107, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00694-9569", + "type": "rectangle", + "x": 878.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1719656967, + "version": 1, + "versionNonce": 2012532251, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00695-1919", + "type": "ellipse", + "x": 872.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1973920380, + "version": 1, + "versionNonce": 1563358155, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00696-2701", + "type": "ellipse", + "x": 1086.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 152893008, + "version": 1, + "versionNonce": 944168241, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00697-7256", + "type": "rectangle", + "x": 892.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1301149965, + "version": 1, + "versionNonce": 723963251, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00698-1581", + "type": "text", + "x": 892.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1672094018, + "version": 1, + "versionNonce": 798425033, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "C", + "originalText": "C", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00699-1871", + "type": "text", + "x": 938.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1412979856, + "version": 1, + "versionNonce": 874176475, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Route escalation", + "originalText": "Route escalation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00700-7667", + "type": "text", + "x": 938.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 369161676, + "version": 1, + "versionNonce": 519918366, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Condition", + "originalText": "Condition", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00701-9245", + "type": "line", + "x": 890.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 875497073, + "version": 1, + "versionNonce": 529460830, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00702-1858", + "type": "text", + "x": 892.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1965460775, + "version": 1, + "versionNonce": 1105400250, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00703-3881", + "type": "rectangle", + "x": 1113.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1786578219, + "version": 1, + "versionNonce": 1842522189, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00704-4074", + "type": "rectangle", + "x": 1113.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1948663373, + "version": 1, + "versionNonce": 833867633, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00705-9213", + "type": "ellipse", + "x": 1107.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 987530962, + "version": 1, + "versionNonce": 867024397, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00706-1126", + "type": "ellipse", + "x": 1321.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 927424134, + "version": 1, + "versionNonce": 574305206, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00707-4155", + "type": "rectangle", + "x": 1127.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1675113547, + "version": 1, + "versionNonce": 1445008074, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00708-2587", + "type": "text", + "x": 1127.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1599187897, + "version": 1, + "versionNonce": 314196333, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00709-6859", + "type": "text", + "x": 1173.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 256577242, + "version": 1, + "versionNonce": 200733866, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Prepare reply", + "originalText": "Prepare reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00710-5881", + "type": "text", + "x": 1173.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 201967757, + "version": 1, + "versionNonce": 1847098056, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00711-6665", + "type": "line", + "x": 1125.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 253542094, + "version": 1, + "versionNonce": 1411892624, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00712-3652", + "type": "text", + "x": 1127.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 210866144, + "version": 1, + "versionNonce": 2079951145, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00713-1364", + "type": "rectangle", + "x": 1348.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 791665051, + "version": 1, + "versionNonce": 260983099, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00714-9589", + "type": "rectangle", + "x": 1348.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1615085635, + "version": 1, + "versionNonce": 2084886188, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00715-4141", + "type": "ellipse", + "x": 1342.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1445676767, + "version": 1, + "versionNonce": 1454422789, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00716-2356", + "type": "ellipse", + "x": 1556.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1134807647, + "version": 1, + "versionNonce": 2124789795, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00717-4412", + "type": "rectangle", + "x": 1362.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2096433420, + "version": 1, + "versionNonce": 1894162501, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00718-9440", + "type": "text", + "x": 1362.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1276634921, + "version": 1, + "versionNonce": 1749450876, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00719-5053", + "type": "text", + "x": 1408.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 289684735, + "version": 1, + "versionNonce": 1651903209, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Post response", + "originalText": "Post response", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00720-7418", + "type": "text", + "x": 1408.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 942779454, + "version": 1, + "versionNonce": 1154029419, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00721-6023", + "type": "line", + "x": 1360.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1041459920, + "version": 1, + "versionNonce": 1113836228, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00722-1257", + "type": "text", + "x": 1362.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1038593907, + "version": 1, + "versionNonce": 1420960356, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00723-1233", + "type": "rectangle", + "x": 396.0, + "y": 3442.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 134996035, + "version": 1, + "versionNonce": 1822806514, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00724-8702", + "type": "text", + "x": 404.0, + "y": 3451.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1418456198, + "version": 1, + "versionNonce": 1202473603, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00725-8016", + "type": "rectangle", + "x": 396.0, + "y": 3478.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 863436371, + "version": 1, + "versionNonce": 43457973, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00726-6165", + "type": "text", + "x": 404.0, + "y": 3487.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 231310837, + "version": 1, + "versionNonce": 1587757779, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00727-2929", + "type": "rectangle", + "x": 396.0, + "y": 3514.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 455863319, + "version": 1, + "versionNonce": 1103653178, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00728-6623", + "type": "text", + "x": 404.0, + "y": 3523.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 129363551, + "version": 1, + "versionNonce": 887085750, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00729-6442", + "type": "rectangle", + "x": 1436.0, + "y": 3466.0, + "width": 138.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2061332793, + "version": 1, + "versionNonce": 826210874, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00730-8612", + "type": "rectangle", + "x": 1446.0, + "y": 3482.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1374878400, + "version": 1, + "versionNonce": 649041325, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00731-1237", + "type": "rectangle", + "x": 1486.0, + "y": 3482.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1800758125, + "version": 1, + "versionNonce": 1446991354, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00732-5043", + "type": "rectangle", + "x": 1526.0, + "y": 3482.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2044732385, + "version": 1, + "versionNonce": 1060056474, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00733-1511", + "type": "rectangle", + "x": 1446.0, + "y": 3510.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 260625986, + "version": 1, + "versionNonce": 885092522, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00734-7690", + "type": "rectangle", + "x": 1486.0, + "y": 3510.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1181948538, + "version": 1, + "versionNonce": 1307051156, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00735-1838", + "type": "rectangle", + "x": 630.0, + "y": 2780.0, + "width": 710.0, + "height": 720.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1195675598, + "version": 1, + "versionNonce": 784888001, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00736-4398", + "type": "text", + "x": 658.0, + "y": 2806.0, + "width": 450.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 7377640, + "version": 1, + "versionNonce": 1113225476, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run workflow", + "originalText": "Run workflow", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00737-2704", + "type": "text", + "x": 658.0, + "y": 2842.0, + "width": 520.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 68989324, + "version": 1, + "versionNonce": 1211023632, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Confirm the revision, inputs, and external effects.", + "originalText": "Confirm the revision, inputs, and external effects.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00738-1328", + "type": "rectangle", + "x": 658.0, + "y": 2882.0, + "width": 125.39999999999999, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 671020051, + "version": 1, + "versionNonce": 2119410364, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00739-1600", + "type": "text", + "x": 668.0, + "y": 2888.0, + "width": 105.39999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 982501393, + "version": 1, + "versionNonce": 587161097, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft", + "originalText": "Current draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00740-9432", + "type": "text", + "x": 784.0, + "y": 2888.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1386488965, + "version": 1, + "versionNonce": 182697192, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 12", + "originalText": "revision 12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00741-6903", + "type": "line", + "x": 658.0, + "y": 2924.0, + "width": 654.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1813448233, + "version": 1, + "versionNonce": 1961986914, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 654.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00742-6345", + "type": "text", + "x": 658.0, + "y": 2948.0, + "width": 63.839999999999996, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1286714496, + "version": 1, + "versionNonce": 845626787, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WORKFLOW", + "originalText": "WORKFLOW", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00743-6351", + "type": "rectangle", + "x": 658.0, + "y": 2970.0, + "width": 654.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 709458413, + "version": 1, + "versionNonce": 2091317450, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00744-8759", + "type": "text", + "x": 670.0, + "y": 2981.0, + "width": 630.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1598937951, + "version": 1, + "versionNonce": 1791343393, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00745-7355", + "type": "text", + "x": 658.0, + "y": 3032.0, + "width": 95.75999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 738818174, + "version": 1, + "versionNonce": 740359722, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "CONVERSATION", + "originalText": "CONVERSATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00746-4062", + "type": "rectangle", + "x": 658.0, + "y": 3054.0, + "width": 654.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 600644620, + "version": 1, + "versionNonce": 1113677480, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00747-3824", + "type": "text", + "x": 670.0, + "y": 3065.0, + "width": 630.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 354765155, + "version": 1, + "versionNonce": 1994811971, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "support-thread-4821", + "originalText": "support-thread-4821", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00748-6076", + "type": "text", + "x": 658.0, + "y": 3116.0, + "width": 87.77999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1524890806, + "version": 1, + "versionNonce": 463119808, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ENVIRONMENT", + "originalText": "ENVIRONMENT", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00749-9588", + "type": "rectangle", + "x": 658.0, + "y": 3138.0, + "width": 320.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 252548668, + "version": 1, + "versionNonce": 1429960973, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00750-6517", + "type": "text", + "x": 670.0, + "y": 3149.0, + "width": 296.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 208146282, + "version": 1, + "versionNonce": 1093961504, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Production", + "originalText": "Production", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00751-6718", + "type": "text", + "x": 992.0, + "y": 3116.0, + "width": 87.77999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 32730803, + "version": 1, + "versionNonce": 1707520601, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "CONNECTIONS", + "originalText": "CONNECTIONS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00752-7440", + "type": "rectangle", + "x": 992.0, + "y": 3138.0, + "width": 320.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 204754046, + "version": 1, + "versionNonce": 1116675910, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00753-2540", + "type": "text", + "x": 1004.0, + "y": 3149.0, + "width": 296.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 954446614, + "version": 1, + "versionNonce": 700351423, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2 ready", + "originalText": "2 ready", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00754-4736", + "type": "rectangle", + "x": 658.0, + "y": 3210.0, + "width": 654.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 93217028, + "version": 1, + "versionNonce": 2025770482, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00755-6592", + "type": "text", + "x": 676.0, + "y": 3228.0, + "width": 180.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1750698218, + "version": 1, + "versionNonce": 1784082183, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "External effects", + "originalText": "External effects", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00756-7158", + "type": "text", + "x": 676.0, + "y": 3257.0, + "width": 560.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 316575485, + "version": 1, + "versionNonce": 1374309769, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "May post a Lark reply and create a Linear issue.", + "originalText": "May post a Lark reply and create a Linear issue.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00757-4995", + "type": "rectangle", + "x": 658.0, + "y": 3316.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1359610764, + "version": 1, + "versionNonce": 1155938014, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00758-3038", + "type": "text", + "x": 662.0, + "y": 3317.0, + "width": 12.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1287824553, + "version": 1, + "versionNonce": 2035235317, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x", + "originalText": "x", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00759-2587", + "type": "text", + "x": 688.0, + "y": 3316.0, + "width": 590.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 23413047, + "version": 1, + "versionNonce": 593190923, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I understand this workflow may change external systems.", + "originalText": "I understand this workflow may change external systems.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00760-5097", + "type": "rectangle", + "x": 658.0, + "y": 3354.0, + "width": 654.0, + "height": 50.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 1793560371, + "version": 1, + "versionNonce": 704073180, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00761-8385", + "type": "text", + "x": 676.0, + "y": 3370.0, + "width": 500.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1601891834, + "version": 1, + "versionNonce": 1874437740, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "This Run will be saved in Activity.", + "originalText": "This Run will be saved in Activity.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00762-3987", + "type": "rectangle", + "x": 1108.0, + "y": 3432.0, + "width": 88.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 36841297, + "version": 1, + "versionNonce": 1578175133, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00763-8352", + "type": "text", + "x": 1116.0, + "y": 3441.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 938441835, + "version": 1, + "versionNonce": 581524656, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Cancel", + "originalText": "Cancel", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00764-9108", + "type": "rectangle", + "x": 1208.0, + "y": 3432.0, + "width": 104.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": { + "type": 3 + }, + "seed": 2002249062, + "version": 1, + "versionNonce": 1579862378, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00765-6520", + "type": "text", + "x": 1216.0, + "y": 3441.0, + "width": 88.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-06" + ], + "frameId": "frame-00621-6168", + "roundness": null, + "seed": 1777013436, + "version": 1, + "versionNonce": 1406243362, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00766-9912", + "type": "frame", + "x": 1920.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1167356674, + "version": 1, + "versionNonce": 1202723792, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "08 Running draft - Studio canvas and Run console" + }, + { + "id": "r-00768-7589", + "type": "rectangle", + "x": 1920.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1306734867, + "version": 1, + "versionNonce": 967805843, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00769-7913", + "type": "rectangle", + "x": 1920.0, + "y": 2660.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 266690246, + "version": 1, + "versionNonce": 923504940, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00770-9475", + "type": "text", + "x": 1944.0, + "y": 2684.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 399424586, + "version": 1, + "versionNonce": 1948165667, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00771-6490", + "type": "text", + "x": 1944.0, + "y": 2713.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1959761229, + "version": 1, + "versionNonce": 493527462, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00772-2975", + "type": "rectangle", + "x": 1932.0, + "y": 2768.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 743748905, + "version": 1, + "versionNonce": 1650982753, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00773-5870", + "type": "ellipse", + "x": 1948.0, + "y": 2780.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1882113973, + "version": 1, + "versionNonce": 1012712994, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00774-7670", + "type": "text", + "x": 1968.0, + "y": 2776.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 2048170525, + "version": 1, + "versionNonce": 36018558, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00775-7598", + "type": "ellipse", + "x": 1948.0, + "y": 2832.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1952415864, + "version": 1, + "versionNonce": 437129007, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00776-1669", + "type": "text", + "x": 1968.0, + "y": 2828.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 870477167, + "version": 1, + "versionNonce": 1240460602, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00777-4006", + "type": "ellipse", + "x": 1948.0, + "y": 2884.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1915246364, + "version": 1, + "versionNonce": 342770438, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00778-1503", + "type": "text", + "x": 1968.0, + "y": 2880.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 889364815, + "version": 1, + "versionNonce": 1788776711, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00779-1086", + "type": "text", + "x": 1944.0, + "y": 3506.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1163209318, + "version": 1, + "versionNonce": 1832489162, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00780-7636", + "type": "text", + "x": 1944.0, + "y": 3532.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1129508535, + "version": 1, + "versionNonce": 511673390, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00781-6151", + "type": "rectangle", + "x": 2130.0, + "y": 2660.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 529366411, + "version": 1, + "versionNonce": 603024501, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00782-8559", + "type": "text", + "x": 2160.0, + "y": 2678.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 2008538993, + "version": 1, + "versionNonce": 1109193733, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00783-3546", + "type": "text", + "x": 2160.0, + "y": 2709.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1833606511, + "version": 1, + "versionNonce": 1974571545, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 12 \u00b7 Run R-1042", + "originalText": "Current draft \u00b7 revision 12 \u00b7 Run R-1042", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00784-8223", + "type": "rectangle", + "x": 2850.0, + "y": 2684.0, + "width": 72.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 408188278, + "version": 1, + "versionNonce": 439608098, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00785-8017", + "type": "text", + "x": 2858.0, + "y": 2693.0, + "width": 56.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1767734769, + "version": 1, + "versionNonce": 634476131, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run", + "originalText": "Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00786-6366", + "type": "rectangle", + "x": 2932.0, + "y": 2684.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 645260193, + "version": 1, + "versionNonce": 507675990, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00787-7232", + "type": "text", + "x": 2940.0, + "y": 2693.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1766991975, + "version": 1, + "versionNonce": 1180791775, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Add node", + "originalText": "Add node", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00788-4468", + "type": "rectangle", + "x": 3034.0, + "y": 2684.0, + "width": 92.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 320118522, + "version": 1, + "versionNonce": 1794295374, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00789-3919", + "type": "text", + "x": 3042.0, + "y": 2693.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1414270827, + "version": 1, + "versionNonce": 73519545, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit YAML", + "originalText": "Edit YAML", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00790-5805", + "type": "rectangle", + "x": 3136.0, + "y": 2684.0, + "width": 82.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 381150672, + "version": 1, + "versionNonce": 646318421, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00791-4965", + "type": "text", + "x": 3144.0, + "y": 2693.0, + "width": 66.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 464701986, + "version": 1, + "versionNonce": 533093662, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save", + "originalText": "Save", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00792-9502", + "type": "rectangle", + "x": 3228.0, + "y": 2684.0, + "width": 102.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1422624951, + "version": 1, + "versionNonce": 965535836, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00793-6774", + "type": "text", + "x": 3236.0, + "y": 2693.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1385902500, + "version": 1, + "versionNonce": 1190563522, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Publish", + "originalText": "Publish", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00794-4247", + "type": "rectangle", + "x": 2140.0, + "y": 2752.0, + "width": 1210.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#f7f9fc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 631200014, + "version": 1, + "versionNonce": 1134623848, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-00795-3418", + "type": "line", + "x": 2220.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 468096881, + "version": 1, + "versionNonce": 1803084471, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00796-7800", + "type": "line", + "x": 2340.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1042748181, + "version": 1, + "versionNonce": 433296966, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00797-4351", + "type": "line", + "x": 2460.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1394182147, + "version": 1, + "versionNonce": 292635120, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00798-8512", + "type": "line", + "x": 2580.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 49387112, + "version": 1, + "versionNonce": 1363848487, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00799-1006", + "type": "line", + "x": 2700.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 435866220, + "version": 1, + "versionNonce": 1895743746, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00800-9302", + "type": "line", + "x": 2820.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 10818659, + "version": 1, + "versionNonce": 1422797747, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00801-2417", + "type": "line", + "x": 2940.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1079206377, + "version": 1, + "versionNonce": 1098967171, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00802-7848", + "type": "line", + "x": 3060.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1705221951, + "version": 1, + "versionNonce": 448231308, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00803-4473", + "type": "line", + "x": 3180.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1610657485, + "version": 1, + "versionNonce": 1494761790, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00804-7537", + "type": "line", + "x": 3300.0, + "y": 2752.0, + "width": 0.0, + "height": 550.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1464601018, + "version": 1, + "versionNonce": 1713044849, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 550.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00805-2229", + "type": "line", + "x": 2140.0, + "y": 2832.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 25727634, + "version": 1, + "versionNonce": 1890959823, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00806-9309", + "type": "line", + "x": 2140.0, + "y": 2952.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 784465071, + "version": 1, + "versionNonce": 1855004892, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00807-9532", + "type": "line", + "x": 2140.0, + "y": 3072.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1197933052, + "version": 1, + "versionNonce": 225343614, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "l-00808-2649", + "type": "line", + "x": 2140.0, + "y": 3192.0, + "width": 1210.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 584570659, + "version": 1, + "versionNonce": 133301959, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1210.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-00809-7632", + "type": "rectangle", + "x": 2156.0, + "y": 2768.0, + "width": 211.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "#f4f3ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 682550494, + "version": 1, + "versionNonce": 886501665, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00810-9919", + "type": "text", + "x": 2166.0, + "y": 2774.0, + "width": 191.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 574335559, + "version": 1, + "versionNonce": 1273982100, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Created from Description", + "originalText": "Created from Description", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "a-00811-7000", + "type": "arrow", + "x": 2382.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 2109049260, + "version": 1, + "versionNonce": 1298295333, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00812-7687", + "type": "arrow", + "x": 2617.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1172484149, + "version": 1, + "versionNonce": 276116607, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00813-7677", + "type": "arrow", + "x": 2852.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1394246063, + "version": 1, + "versionNonce": 1055665585, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "a-00814-9393", + "type": "arrow", + "x": 3087.0, + "y": 3072.0, + "width": 21.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#94a3b8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 591647628, + "version": 1, + "versionNonce": 1453089024, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 21.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r-00815-5550", + "type": "rectangle", + "x": 2168.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 2022419854, + "version": 1, + "versionNonce": 1728531545, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00816-1797", + "type": "rectangle", + "x": 2168.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 343046575, + "version": 1, + "versionNonce": 1007792019, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00817-1334", + "type": "ellipse", + "x": 2162.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1556342876, + "version": 1, + "versionNonce": 344947113, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00818-4264", + "type": "ellipse", + "x": 2376.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 465047116, + "version": 1, + "versionNonce": 959769450, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00819-4463", + "type": "rectangle", + "x": 2182.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1292349539, + "version": 1, + "versionNonce": 750957524, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00820-2002", + "type": "text", + "x": 2182.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1437605211, + "version": 1, + "versionNonce": 1244157040, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00821-5547", + "type": "text", + "x": 2228.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1732536508, + "version": 1, + "versionNonce": 141326564, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Receive conversation", + "originalText": "Receive conversation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00822-8931", + "type": "text", + "x": 2228.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 295020566, + "version": 1, + "versionNonce": 1192557027, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00823-7935", + "type": "line", + "x": 2180.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 80940091, + "version": 1, + "versionNonce": 114546869, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00824-1863", + "type": "text", + "x": 2182.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 782295453, + "version": 1, + "versionNonce": 2059382994, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00825-4369", + "type": "rectangle", + "x": 2292.0, + "y": 3100.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1136338833, + "version": 1, + "versionNonce": 1616116577, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00826-4610", + "type": "text", + "x": 2302.0, + "y": 3106.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1294040740, + "version": 1, + "versionNonce": 701092009, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Completed", + "originalText": "Completed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00827-2525", + "type": "rectangle", + "x": 2403.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 170210790, + "version": 1, + "versionNonce": 42163312, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00828-5347", + "type": "rectangle", + "x": 2403.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 526868154, + "version": 1, + "versionNonce": 1771633455, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00829-4382", + "type": "ellipse", + "x": 2397.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 873741308, + "version": 1, + "versionNonce": 1738539033, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00830-9303", + "type": "ellipse", + "x": 2611.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 420742110, + "version": 1, + "versionNonce": 1233190555, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00831-5950", + "type": "rectangle", + "x": 2417.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 254905881, + "version": 1, + "versionNonce": 2103058197, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00832-5274", + "type": "text", + "x": 2417.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1597993615, + "version": 1, + "versionNonce": 1776329874, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00833-2245", + "type": "text", + "x": 2463.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1125881760, + "version": 1, + "versionNonce": 1020786367, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Classify severity", + "originalText": "Classify severity", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00834-8553", + "type": "text", + "x": 2463.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 777884801, + "version": 1, + "versionNonce": 1130149808, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00835-4216", + "type": "line", + "x": 2415.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 690388516, + "version": 1, + "versionNonce": 556945495, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00836-7197", + "type": "text", + "x": 2417.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 501004562, + "version": 1, + "versionNonce": 980881315, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00837-8675", + "type": "rectangle", + "x": 2527.0, + "y": 3100.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 739461831, + "version": 1, + "versionNonce": 1910722748, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00838-3877", + "type": "text", + "x": 2537.0, + "y": 3106.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 819713027, + "version": 1, + "versionNonce": 352554479, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Completed", + "originalText": "Completed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00839-2314", + "type": "rectangle", + "x": 2638.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 2020250382, + "version": 1, + "versionNonce": 825200439, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00840-2378", + "type": "rectangle", + "x": 2638.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1775431504, + "version": 1, + "versionNonce": 386605644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00841-9688", + "type": "ellipse", + "x": 2632.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 627825572, + "version": 1, + "versionNonce": 545114134, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00842-3365", + "type": "ellipse", + "x": 2846.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#9333ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1489584169, + "version": 1, + "versionNonce": 1231822529, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00843-5259", + "type": "rectangle", + "x": 2652.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1065904823, + "version": 1, + "versionNonce": 1400831271, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00844-9723", + "type": "text", + "x": 2652.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#9333ea", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 183919060, + "version": 1, + "versionNonce": 940535995, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "C", + "originalText": "C", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00845-6876", + "type": "text", + "x": 2698.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 537000968, + "version": 1, + "versionNonce": 917008339, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Route escalation", + "originalText": "Route escalation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00846-2467", + "type": "text", + "x": 2698.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 454219524, + "version": 1, + "versionNonce": 1399161995, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Condition", + "originalText": "Condition", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00847-5583", + "type": "line", + "x": 2650.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1937093596, + "version": 1, + "versionNonce": 142800059, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00848-1287", + "type": "text", + "x": 2652.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 715828565, + "version": 1, + "versionNonce": 1850126652, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00849-3226", + "type": "rectangle", + "x": 2762.0, + "y": 3100.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1468903405, + "version": 1, + "versionNonce": 723693215, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00850-7026", + "type": "text", + "x": 2772.0, + "y": 3106.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 45711453, + "version": 1, + "versionNonce": 1917960020, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Completed", + "originalText": "Completed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00851-2140", + "type": "rectangle", + "x": 2873.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1403448402, + "version": 1, + "versionNonce": 1106255703, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00852-7543", + "type": "rectangle", + "x": 2873.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 454243197, + "version": 1, + "versionNonce": 142104088, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00853-8431", + "type": "ellipse", + "x": 2867.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1972853069, + "version": 1, + "versionNonce": 1482641560, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00854-1032", + "type": "ellipse", + "x": 3081.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1002214007, + "version": 1, + "versionNonce": 1532602623, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00855-1196", + "type": "rectangle", + "x": 2887.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1834539982, + "version": 1, + "versionNonce": 940577799, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00856-8625", + "type": "text", + "x": 2887.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 901998987, + "version": 1, + "versionNonce": 673918729, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00857-6566", + "type": "text", + "x": 2933.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 811873049, + "version": 1, + "versionNonce": 46778221, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Prepare reply", + "originalText": "Prepare reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00858-9586", + "type": "text", + "x": 2933.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 528449385, + "version": 1, + "versionNonce": 249164798, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI task", + "originalText": "AI task", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00859-5374", + "type": "line", + "x": 2885.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 638260911, + "version": 1, + "versionNonce": 1548557845, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00860-1163", + "type": "text", + "x": 2887.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1160719713, + "version": 1, + "versionNonce": 1999744293, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00861-4143", + "type": "rectangle", + "x": 2997.0, + "y": 3100.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 826968603, + "version": 1, + "versionNonce": 309775269, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00862-6963", + "type": "text", + "x": 3007.0, + "y": 3106.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1963570549, + "version": 1, + "versionNonce": 421325296, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00863-4707", + "type": "rectangle", + "x": 3108.0, + "y": 3012.0, + "width": 214.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#dbe3ee", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1458489577, + "version": 1, + "versionNonce": 2090231505, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00864-7806", + "type": "rectangle", + "x": 3108.0, + "y": 3012.0, + "width": 4.0, + "height": 126.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1570052948, + "version": 1, + "versionNonce": 1541671706, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00865-5606", + "type": "ellipse", + "x": 3102.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 2136107000, + "version": 1, + "versionNonce": 1291400813, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00866-9559", + "type": "ellipse", + "x": 3316.0, + "y": 3066.0, + "width": 12.0, + "height": 12.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#16a34a", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 74789972, + "version": 1, + "versionNonce": 1419994094, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00867-6800", + "type": "rectangle", + "x": 3122.0, + "y": 3026.0, + "width": 34.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1064373050, + "version": 1, + "versionNonce": 1576856453, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00868-4658", + "type": "text", + "x": 3122.0, + "y": 3035.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#16a34a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 820323544, + "version": 1, + "versionNonce": 1159284941, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "I", + "originalText": "I", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00869-8088", + "type": "text", + "x": 3168.0, + "y": 3025.0, + "width": 138.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1195646691, + "version": 1, + "versionNonce": 949179336, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Post response", + "originalText": "Post response", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00870-6951", + "type": "text", + "x": 3168.0, + "y": 3051.0, + "width": 138.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 297785022, + "version": 1, + "versionNonce": 1163060932, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark message", + "originalText": "Lark message", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00871-1817", + "type": "line", + "x": 3120.0, + "y": 3074.0, + "width": 190.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#edf2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1491988118, + "version": 1, + "versionNonce": 341876426, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 190.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00872-3256", + "type": "text", + "x": 3122.0, + "y": 3088.0, + "width": 186.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1391013844, + "version": 1, + "versionNonce": 1691245364, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Configuration ready", + "originalText": "Configuration ready", + "fontSize": 12, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00873-9870", + "type": "rectangle", + "x": 3232.0, + "y": 3100.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1459370651, + "version": 1, + "versionNonce": 517536360, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00874-4838", + "type": "text", + "x": 3242.0, + "y": 3106.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 569488916, + "version": 1, + "versionNonce": 1054718801, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Queued", + "originalText": "Queued", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00875-9874", + "type": "rectangle", + "x": 2156.0, + "y": 3174.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 56903298, + "version": 1, + "versionNonce": 455176734, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00876-8656", + "type": "text", + "x": 2164.0, + "y": 3183.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1151689615, + "version": 1, + "versionNonce": 1758814099, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "+", + "originalText": "+", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00877-5112", + "type": "rectangle", + "x": 2156.0, + "y": 3210.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 832724557, + "version": 1, + "versionNonce": 2096305900, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00878-5450", + "type": "text", + "x": 2164.0, + "y": 3219.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1881198251, + "version": 1, + "versionNonce": 531475576, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "-", + "originalText": "-", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00879-6019", + "type": "rectangle", + "x": 2156.0, + "y": 3246.0, + "width": 34.0, + "height": 32.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1715848749, + "version": 1, + "versionNonce": 613832295, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00880-3256", + "type": "text", + "x": 2164.0, + "y": 3255.0, + "width": 18.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1141816727, + "version": 1, + "versionNonce": 1606335222, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Fit", + "originalText": "Fit", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00881-1346", + "type": "rectangle", + "x": 3196.0, + "y": 3198.0, + "width": 138.0, + "height": 86.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1147193344, + "version": 1, + "versionNonce": 1269166334, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00882-3204", + "type": "rectangle", + "x": 3206.0, + "y": 3214.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 101303035, + "version": 1, + "versionNonce": 1183427008, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00883-8864", + "type": "rectangle", + "x": 3246.0, + "y": 3214.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 766672484, + "version": 1, + "versionNonce": 24884338, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00884-4886", + "type": "rectangle", + "x": 3286.0, + "y": 3214.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1906157106, + "version": 1, + "versionNonce": 498085187, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00885-7754", + "type": "rectangle", + "x": 3206.0, + "y": 3242.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 2068229417, + "version": 1, + "versionNonce": 2008217548, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00886-2277", + "type": "rectangle", + "x": 3246.0, + "y": 3242.0, + "width": 28.0, + "height": 14.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 60145970, + "version": 1, + "versionNonce": 325736396, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00887-2276", + "type": "rectangle", + "x": 2130.0, + "y": 3312.0, + "width": 1230.0, + "height": 268.0, + "angle": 0, + "strokeColor": "#d8e0ea", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 637607979, + "version": 1, + "versionNonce": 1934452287, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00888-5363", + "type": "rectangle", + "x": 2130.0, + "y": 3306.0, + "width": 1230.0, + "height": 6.0, + "angle": 0, + "strokeColor": "#cbd5e1", + "backgroundColor": "#cbd5e1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 2137838865, + "version": 1, + "versionNonce": 1348211843, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00889-3210", + "type": "text", + "x": 2152.0, + "y": 3330.0, + "width": 180.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 436562449, + "version": 1, + "versionNonce": 1219561034, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run console", + "originalText": "Run console", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00890-3002", + "type": "rectangle", + "x": 2272.0, + "y": 3326.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 517851492, + "version": 1, + "versionNonce": 2080679417, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00891-9814", + "type": "text", + "x": 2282.0, + "y": 3332.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 711789803, + "version": 1, + "versionNonce": 1470195526, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00892-3979", + "type": "text", + "x": 2378.0, + "y": 3333.0, + "width": 620.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1082794499, + "version": 1, + "versionNonce": 545916413, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "R-1042 \u00b7 Current draft \u00b7 revision 12 \u00b7 Activity record created", + "originalText": "R-1042 \u00b7 Current draft \u00b7 revision 12 \u00b7 Activity record created", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00893-6150", + "type": "rectangle", + "x": 3228.0, + "y": 3324.0, + "width": 102.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 1444097667, + "version": 1, + "versionNonce": 380261699, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00894-3274", + "type": "text", + "x": 3236.0, + "y": 3333.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 524227971, + "version": 1, + "versionNonce": 1404088058, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "View Run", + "originalText": "View Run", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-00895-3928", + "type": "line", + "x": 2130.0, + "y": 3370.0, + "width": 1230.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#eef2f7", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 273599875, + "version": 1, + "versionNonce": 1052759692, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1230.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-00896-4226", + "type": "text", + "x": 2154.0, + "y": 3390.0, + "width": 120.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1776535786, + "version": 1, + "versionNonce": 242962355, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "14:32:18.102", + "originalText": "14:32:18.102", + "fontSize": 12, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00897-8244", + "type": "ellipse", + "x": 2282.0, + "y": 3392.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 694193511, + "version": 1, + "versionNonce": 1541544691, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00898-6865", + "type": "text", + "x": 2306.0, + "y": 3390.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 102955767, + "version": 1, + "versionNonce": 1311449904, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Receive conversation", + "originalText": "Receive conversation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00899-7464", + "type": "text", + "x": 2580.0, + "y": 3390.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 357802203, + "version": 1, + "versionNonce": 1853601676, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "completed", + "originalText": "completed", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00900-1051", + "type": "text", + "x": 2154.0, + "y": 3427.0, + "width": 120.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 899132846, + "version": 1, + "versionNonce": 393027744, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "14:32:22.364", + "originalText": "14:32:22.364", + "fontSize": 12, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00901-8604", + "type": "ellipse", + "x": 2282.0, + "y": 3429.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 474770966, + "version": 1, + "versionNonce": 1951022823, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00902-2365", + "type": "text", + "x": 2306.0, + "y": 3427.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 633414579, + "version": 1, + "versionNonce": 621594999, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Classify severity", + "originalText": "Classify severity", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00903-3831", + "type": "text", + "x": 2580.0, + "y": 3427.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1238015723, + "version": 1, + "versionNonce": 1914158670, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "completed", + "originalText": "completed", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00904-1767", + "type": "text", + "x": 2154.0, + "y": 3464.0, + "width": 120.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1125675215, + "version": 1, + "versionNonce": 1899314510, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "14:32:22.481", + "originalText": "14:32:22.481", + "fontSize": 12, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00905-4324", + "type": "ellipse", + "x": 2282.0, + "y": 3466.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1244151849, + "version": 1, + "versionNonce": 200406158, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00906-7639", + "type": "text", + "x": 2306.0, + "y": 3464.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1828085261, + "version": 1, + "versionNonce": 1299074631, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Route escalation", + "originalText": "Route escalation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00907-2381", + "type": "text", + "x": 2580.0, + "y": 3464.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1133711920, + "version": 1, + "versionNonce": 273937652, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "completed", + "originalText": "completed", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00908-2750", + "type": "text", + "x": 2154.0, + "y": 3501.0, + "width": 120.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1000903520, + "version": 1, + "versionNonce": 552166564, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "14:32:23.019", + "originalText": "14:32:23.019", + "fontSize": 12, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00909-5334", + "type": "ellipse", + "x": 2282.0, + "y": 3503.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1509717006, + "version": 1, + "versionNonce": 1114573910, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00910-5531", + "type": "text", + "x": 2306.0, + "y": 3501.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1066129765, + "version": 1, + "versionNonce": 905239886, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Prepare reply", + "originalText": "Prepare reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00911-8947", + "type": "text", + "x": 2580.0, + "y": 3501.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 1586300931, + "version": 1, + "versionNonce": 818552653, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "running", + "originalText": "running", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00912-6724", + "type": "rectangle", + "x": 2820.0, + "y": 3386.0, + "width": 510.0, + "height": 134.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": { + "type": 3 + }, + "seed": 682942710, + "version": 1, + "versionNonce": 1868758929, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00913-1687", + "type": "text", + "x": 2838.0, + "y": 3402.0, + "width": 100.0, + "height": 15.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 125809329, + "version": 1, + "versionNonce": 1749000729, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "OUTPUT", + "originalText": "OUTPUT", + "fontSize": 12, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00914-9355", + "type": "text", + "x": 2838.0, + "y": 3432.0, + "width": 470.0, + "height": 35.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-07" + ], + "frameId": "frame-00766-9912", + "roundness": null, + "seed": 994395690, + "version": 1, + "versionNonce": 1698928548, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Preparing a concise response for\nthe support conversation...", + "originalText": "Preparing a concise response for\nthe support conversation...", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-00915-7388", + "type": "frame", + "x": 3680.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 2102803155, + "version": 1, + "versionNonce": 122669913, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "09 Activity - filtered by Workflow" + }, + { + "id": "r-00917-8055", + "type": "rectangle", + "x": 3680.0, + "y": 2660.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 269565715, + "version": 1, + "versionNonce": 1474459692, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00918-6410", + "type": "rectangle", + "x": 3680.0, + "y": 2660.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 636772677, + "version": 1, + "versionNonce": 568207315, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00919-1708", + "type": "text", + "x": 3704.0, + "y": 2684.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1624536992, + "version": 1, + "versionNonce": 421763042, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00920-2148", + "type": "text", + "x": 3704.0, + "y": 2713.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 188005114, + "version": 1, + "versionNonce": 1970547828, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00921-3701", + "type": "ellipse", + "x": 3708.0, + "y": 2780.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1601667601, + "version": 1, + "versionNonce": 1830890056, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00922-8467", + "type": "text", + "x": 3728.0, + "y": 2776.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 154604669, + "version": 1, + "versionNonce": 1033679298, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00923-4137", + "type": "rectangle", + "x": 3692.0, + "y": 2820.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1109106125, + "version": 1, + "versionNonce": 681737659, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-00924-2458", + "type": "ellipse", + "x": 3708.0, + "y": 2832.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1071598003, + "version": 1, + "versionNonce": 1471443355, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00925-1321", + "type": "text", + "x": 3728.0, + "y": 2828.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1598079504, + "version": 1, + "versionNonce": 1041322705, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-00926-2122", + "type": "ellipse", + "x": 3708.0, + "y": 2884.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1007118558, + "version": 1, + "versionNonce": 562283323, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00927-8092", + "type": "text", + "x": 3728.0, + "y": 2880.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 522402826, + "version": 1, + "versionNonce": 1882151492, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00928-3751", + "type": "text", + "x": 3704.0, + "y": 3506.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 81356534, + "version": 1, + "versionNonce": 673515689, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00929-2465", + "type": "text", + "x": 3704.0, + "y": 3532.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1422209843, + "version": 1, + "versionNonce": 1300101480, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00930-7258", + "type": "rectangle", + "x": 3890.0, + "y": 2660.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1078279721, + "version": 1, + "versionNonce": 1137453978, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00931-6232", + "type": "text", + "x": 3920.0, + "y": 2678.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 938250550, + "version": 1, + "versionNonce": 361540548, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00932-8541", + "type": "text", + "x": 3920.0, + "y": 2709.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1928347303, + "version": 1, + "versionNonce": 352539802, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Every Run, newest first. Filtered to Weekly feedback digest.", + "originalText": "Every Run, newest first. Filtered to Weekly feedback digest.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00933-5011", + "type": "text", + "x": 3920.0, + "y": 2766.0, + "width": 47.879999999999995, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1158873313, + "version": 1, + "versionNonce": 1246247978, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SEARCH", + "originalText": "SEARCH", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00934-9259", + "type": "rectangle", + "x": 3920.0, + "y": 2788.0, + "width": 330.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1915180347, + "version": 1, + "versionNonce": 2135720997, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00935-4385", + "type": "text", + "x": 3932.0, + "y": 2799.0, + "width": 306.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 952423530, + "version": 1, + "versionNonce": 416686538, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Search Run or outcome", + "originalText": "Search Run or outcome", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00936-3270", + "type": "rectangle", + "x": 4276.0, + "y": 2788.0, + "width": 286.4, + "height": 30.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 269587880, + "version": 1, + "versionNonce": 1420797682, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00937-2628", + "type": "text", + "x": 4286.0, + "y": 2795.0, + "width": 266.4, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1887768555, + "version": 1, + "versionNonce": 995895073, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflow: Weekly feedback digest", + "originalText": "Workflow: Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00938-2948", + "type": "rectangle", + "x": 4570.4, + "y": 2788.0, + "width": 81.39999999999999, + "height": 30.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 146896043, + "version": 1, + "versionNonce": 1006385573, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00939-9079", + "type": "text", + "x": 4580.4, + "y": 2795.0, + "width": 61.39999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1482971281, + "version": 1, + "versionNonce": 2051199147, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "All 24", + "originalText": "All 24", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00940-6698", + "type": "rectangle", + "x": 4659.799999999999, + "y": 2788.0, + "width": 122.39999999999999, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1097380485, + "version": 1, + "versionNonce": 1675419043, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00941-2784", + "type": "text", + "x": 4669.799999999999, + "y": 2795.0, + "width": 102.39999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1778509493, + "version": 1, + "versionNonce": 719629525, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Needs you 1", + "originalText": "Needs you 1", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00942-7121", + "type": "rectangle", + "x": 4790.199999999999, + "y": 2788.0, + "width": 106.0, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1828436867, + "version": 1, + "versionNonce": 1244211036, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00943-5820", + "type": "text", + "x": 4800.199999999999, + "y": 2795.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 57759196, + "version": 1, + "versionNonce": 930305403, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running 1", + "originalText": "Running 1", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00944-7561", + "type": "rectangle", + "x": 4904.199999999999, + "y": 2788.0, + "width": 97.8, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 485581907, + "version": 1, + "versionNonce": 491200571, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00945-2760", + "type": "text", + "x": 4914.199999999999, + "y": 2795.0, + "width": 77.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1465163868, + "version": 1, + "versionNonce": 688721895, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed 2", + "originalText": "Failed 2", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00946-8876", + "type": "rectangle", + "x": 3920.0, + "y": 2854.0, + "width": 1170.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 451830490, + "version": 1, + "versionNonce": 2002970646, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00947-8849", + "type": "text", + "x": 3934.0, + "y": 2867.0, + "width": 77.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1641184055, + "version": 1, + "versionNonce": 513383972, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "STATUS", + "originalText": "STATUS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00948-9409", + "type": "text", + "x": 4039.0, + "y": 2867.0, + "width": 207.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1665005948, + "version": 1, + "versionNonce": 1266938498, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WORKFLOW", + "originalText": "WORKFLOW", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00949-6933", + "type": "text", + "x": 4274.0, + "y": 2867.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1116680998, + "version": 1, + "versionNonce": 671667380, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ORIGIN", + "originalText": "ORIGIN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00950-8503", + "type": "text", + "x": 4394.0, + "y": 2867.0, + "width": 147.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 465726952, + "version": 1, + "versionNonce": 1459797791, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "REVISION", + "originalText": "REVISION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00951-8141", + "type": "text", + "x": 4569.0, + "y": 2867.0, + "width": 87.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 763207252, + "version": 1, + "versionNonce": 670289688, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WHEN", + "originalText": "WHEN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00952-9392", + "type": "text", + "x": 4684.0, + "y": 2867.0, + "width": 47.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2005694677, + "version": 1, + "versionNonce": 648841078, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TOOK", + "originalText": "TOOK", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00953-4264", + "type": "text", + "x": 4759.0, + "y": 2867.0, + "width": 62.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 937031218, + "version": 1, + "versionNonce": 617424416, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "USAGE", + "originalText": "USAGE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00954-2699", + "type": "text", + "x": 4849.0, + "y": 2867.0, + "width": 227.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 428273670, + "version": 1, + "versionNonce": 161372999, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "OUTCOME", + "originalText": "OUTCOME", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00955-7382", + "type": "rectangle", + "x": 3920.0, + "y": 2896.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1341984198, + "version": 1, + "versionNonce": 661083846, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00956-9569", + "type": "rectangle", + "x": 3932.0, + "y": 2917.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 574608755, + "version": 1, + "versionNonce": 1307205192, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00957-1074", + "type": "text", + "x": 3942.0, + "y": 2923.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1867497651, + "version": 1, + "versionNonce": 806892786, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00958-2063", + "type": "text", + "x": 4037.0, + "y": 2910.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 320524457, + "version": 1, + "versionNonce": 435226442, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00959-5650", + "type": "text", + "x": 4037.0, + "y": 2935.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1782496454, + "version": 1, + "versionNonce": 1785535339, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 you", + "originalText": "Manual \u00b7 you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00960-3133", + "type": "text", + "x": 4272.0, + "y": 2921.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 640626447, + "version": 1, + "versionNonce": 644696830, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual", + "originalText": "Manual", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00961-5662", + "type": "text", + "x": 4392.0, + "y": 2911.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1700452649, + "version": 1, + "versionNonce": 383563321, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft", + "originalText": "Current draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00962-1990", + "type": "text", + "x": 4392.0, + "y": 2936.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 241587694, + "version": 1, + "versionNonce": 576107764, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 12", + "originalText": "revision 12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00963-5722", + "type": "text", + "x": 4567.0, + "y": 2921.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1357031811, + "version": 1, + "versionNonce": 698667728, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "18s ago", + "originalText": "18s ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00964-5015", + "type": "text", + "x": 4678.0, + "y": 2921.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 9670527, + "version": 1, + "versionNonce": 83713243, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:18", + "originalText": "00:18", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00965-1595", + "type": "text", + "x": 4753.0, + "y": 2921.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 547131990, + "version": 1, + "versionNonce": 23339615, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.03", + "originalText": "$0.03", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00966-6892", + "type": "text", + "x": 4847.0, + "y": 2911.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 919811284, + "version": 1, + "versionNonce": 19325027, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Preparing summary", + "originalText": "Preparing summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00967-6487", + "type": "text", + "x": 4847.0, + "y": 2936.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1355849966, + "version": 1, + "versionNonce": 702458979, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00968-8320", + "type": "rectangle", + "x": 3920.0, + "y": 2966.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 146532674, + "version": 1, + "versionNonce": 1826100321, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00969-7159", + "type": "rectangle", + "x": 3932.0, + "y": 2987.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1437982884, + "version": 1, + "versionNonce": 622577015, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00970-5011", + "type": "text", + "x": 3942.0, + "y": 2993.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2018776248, + "version": 1, + "versionNonce": 814788980, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00971-2295", + "type": "text", + "x": 4037.0, + "y": 2980.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1179413282, + "version": 1, + "versionNonce": 2139679292, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00972-8020", + "type": "text", + "x": 4037.0, + "y": 3005.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1819109187, + "version": 1, + "versionNonce": 2143810499, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule \u00b7 weekly", + "originalText": "Schedule \u00b7 weekly", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00973-9592", + "type": "text", + "x": 4272.0, + "y": 2991.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1339222480, + "version": 1, + "versionNonce": 1986889523, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00974-8445", + "type": "text", + "x": 4392.0, + "y": 2981.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 788672061, + "version": 1, + "versionNonce": 929577813, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00975-9871", + "type": "text", + "x": 4392.0, + "y": 3006.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 517892475, + "version": 1, + "versionNonce": 1686217822, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v7", + "originalText": "v7", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00976-2451", + "type": "text", + "x": 4567.0, + "y": 2991.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 482580259, + "version": 1, + "versionNonce": 1301053173, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2h ago", + "originalText": "2h ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00977-1468", + "type": "text", + "x": 4678.0, + "y": 2991.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1426043237, + "version": 1, + "versionNonce": 905415011, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "01:42", + "originalText": "01:42", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00978-9850", + "type": "text", + "x": 4753.0, + "y": 2991.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 74931719, + "version": 1, + "versionNonce": 1567136689, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.18", + "originalText": "$0.18", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00979-8950", + "type": "text", + "x": 4847.0, + "y": 2981.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 147785999, + "version": 1, + "versionNonce": 759280548, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Posted 1 summary", + "originalText": "Posted 1 summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00980-6260", + "type": "text", + "x": 4847.0, + "y": 3006.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1229207222, + "version": 1, + "versionNonce": 725175900, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00981-2899", + "type": "rectangle", + "x": 3920.0, + "y": 3036.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1169626779, + "version": 1, + "versionNonce": 1671431951, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00982-5754", + "type": "rectangle", + "x": 3932.0, + "y": 3057.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1680979924, + "version": 1, + "versionNonce": 3144021, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00983-4754", + "type": "text", + "x": 3942.0, + "y": 3063.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 513001364, + "version": 1, + "versionNonce": 915472207, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Needs you", + "originalText": "Needs you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00984-1739", + "type": "text", + "x": 4037.0, + "y": 3050.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1157164912, + "version": 1, + "versionNonce": 1920193660, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00985-7356", + "type": "text", + "x": 4037.0, + "y": 3075.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1583099943, + "version": 1, + "versionNonce": 32872170, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule \u00b7 weekly", + "originalText": "Schedule \u00b7 weekly", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00986-6715", + "type": "text", + "x": 4272.0, + "y": 3061.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1035802322, + "version": 1, + "versionNonce": 1348144114, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00987-7289", + "type": "text", + "x": 4392.0, + "y": 3051.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1909202492, + "version": 1, + "versionNonce": 677639500, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00988-2710", + "type": "text", + "x": 4392.0, + "y": 3076.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 468610391, + "version": 1, + "versionNonce": 299932835, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v7", + "originalText": "v7", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00989-2678", + "type": "text", + "x": 4567.0, + "y": 3061.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 550566432, + "version": 1, + "versionNonce": 1389331183, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "1w ago", + "originalText": "1w ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00990-9121", + "type": "text", + "x": 4678.0, + "y": 3061.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 455430823, + "version": 1, + "versionNonce": 461885311, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:56", + "originalText": "00:56", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00991-6705", + "type": "text", + "x": 4753.0, + "y": 3061.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1302147114, + "version": 1, + "versionNonce": 329407773, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.11", + "originalText": "$0.11", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00992-7204", + "type": "text", + "x": 4847.0, + "y": 3051.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1229562169, + "version": 1, + "versionNonce": 164218482, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Approval requested", + "originalText": "Approval requested", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00993-4914", + "type": "text", + "x": 4847.0, + "y": 3076.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 610602839, + "version": 1, + "versionNonce": 1375994194, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-00994-7737", + "type": "rectangle", + "x": 3920.0, + "y": 3106.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1697667312, + "version": 1, + "versionNonce": 1034601927, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-00995-6082", + "type": "rectangle", + "x": 3932.0, + "y": 3127.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 103296232, + "version": 1, + "versionNonce": 1943729058, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-00996-5829", + "type": "text", + "x": 3942.0, + "y": 3133.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2001367762, + "version": 1, + "versionNonce": 962412002, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00997-8318", + "type": "text", + "x": 4037.0, + "y": 3120.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 460381995, + "version": 1, + "versionNonce": 198656461, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00998-1123", + "type": "text", + "x": 4037.0, + "y": 3145.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 959113245, + "version": 1, + "versionNonce": 441079832, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 Calvin", + "originalText": "Manual \u00b7 Calvin", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-00999-7101", + "type": "text", + "x": 4272.0, + "y": 3131.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1424579179, + "version": 1, + "versionNonce": 2046103282, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual", + "originalText": "Manual", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01000-4027", + "type": "text", + "x": 4392.0, + "y": 3121.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 25243938, + "version": 1, + "versionNonce": 437392227, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft", + "originalText": "Draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01001-1212", + "type": "text", + "x": 4392.0, + "y": 3146.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1814784157, + "version": 1, + "versionNonce": 1426478041, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 9", + "originalText": "revision 9", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01002-7393", + "type": "text", + "x": 4567.0, + "y": 3131.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2135392859, + "version": 1, + "versionNonce": 2021143985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "8d ago", + "originalText": "8d ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01003-8771", + "type": "text", + "x": 4678.0, + "y": 3131.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1239288194, + "version": 1, + "versionNonce": 1976383809, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:12", + "originalText": "00:12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01004-2924", + "type": "text", + "x": 4753.0, + "y": 3131.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1657333523, + "version": 1, + "versionNonce": 2003138615, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.02", + "originalText": "$0.02", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01005-4456", + "type": "text", + "x": 4847.0, + "y": 3121.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 225269456, + "version": 1, + "versionNonce": 143496150, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Lark connection expired", + "originalText": "Lark connection expired", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01006-2363", + "type": "text", + "x": 4847.0, + "y": 3146.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1316926903, + "version": 1, + "versionNonce": 176892050, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01007-1956", + "type": "rectangle", + "x": 3920.0, + "y": 3176.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 4685290, + "version": 1, + "versionNonce": 1488541980, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01008-9882", + "type": "rectangle", + "x": 3932.0, + "y": 3197.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": { + "type": 3 + }, + "seed": 1588321659, + "version": 1, + "versionNonce": 1499301191, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01009-8393", + "type": "text", + "x": 3942.0, + "y": 3203.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 612332585, + "version": 1, + "versionNonce": 1362633068, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01010-4483", + "type": "text", + "x": 4037.0, + "y": 3190.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2118328490, + "version": 1, + "versionNonce": 1225207226, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01011-9156", + "type": "text", + "x": 4037.0, + "y": 3215.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 974996037, + "version": 1, + "versionNonce": 1198960868, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run again \u00b7 R-1001", + "originalText": "Run again \u00b7 R-1001", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01012-7385", + "type": "text", + "x": 4272.0, + "y": 3201.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1035134280, + "version": 1, + "versionNonce": 127684011, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run again", + "originalText": "Run again", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01013-7979", + "type": "text", + "x": 4392.0, + "y": 3191.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1143323710, + "version": 1, + "versionNonce": 337980859, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01014-6082", + "type": "text", + "x": 4392.0, + "y": 3216.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1936542364, + "version": 1, + "versionNonce": 1050406248, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v6", + "originalText": "v6", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01015-8026", + "type": "text", + "x": 4567.0, + "y": 3201.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1292624638, + "version": 1, + "versionNonce": 1584417773, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "15d ago", + "originalText": "15d ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01016-5401", + "type": "text", + "x": 4678.0, + "y": 3201.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 653226794, + "version": 1, + "versionNonce": 2077091314, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "01:37", + "originalText": "01:37", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01017-1777", + "type": "text", + "x": 4753.0, + "y": 3201.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1374064592, + "version": 1, + "versionNonce": 319301424, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.17", + "originalText": "$0.17", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01018-5679", + "type": "text", + "x": 4847.0, + "y": 3191.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 708591503, + "version": 1, + "versionNonce": 2052924079, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Posted 1 summary", + "originalText": "Posted 1 summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01019-7836", + "type": "text", + "x": 4847.0, + "y": 3216.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 1457117390, + "version": 1, + "versionNonce": 551835569, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01020-9266", + "type": "text", + "x": 3920.0, + "y": 3528.0, + "width": 720.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-08" + ], + "frameId": "frame-00915-7388", + "roundness": null, + "seed": 2132029393, + "version": 1, + "versionNonce": 413112535, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity remains the authoritative Run history. Run again and Retry append linked records.", + "originalText": "Activity remains the authoritative Run history. Run again and Retry append linked records.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01021-4215", + "type": "frame", + "x": 160.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1470221932, + "version": 1, + "versionNonce": 529599512, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "10 Activity - all retained Runs" + }, + { + "id": "r-01023-2710", + "type": "rectangle", + "x": 160.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 154895358, + "version": 1, + "versionNonce": 279466254, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01024-8035", + "type": "rectangle", + "x": 160.0, + "y": 3840.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1312133163, + "version": 1, + "versionNonce": 815875021, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01025-5799", + "type": "text", + "x": 184.0, + "y": 3864.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 82850982, + "version": 1, + "versionNonce": 1698831270, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01026-3996", + "type": "text", + "x": 184.0, + "y": 3893.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1209805788, + "version": 1, + "versionNonce": 589599272, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01027-5753", + "type": "ellipse", + "x": 188.0, + "y": 3960.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 454141735, + "version": 1, + "versionNonce": 1578542880, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01028-1249", + "type": "text", + "x": 208.0, + "y": 3956.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1760506649, + "version": 1, + "versionNonce": 419806219, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01029-5767", + "type": "rectangle", + "x": 172.0, + "y": 4000.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 678890122, + "version": 1, + "versionNonce": 1233477269, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01030-4878", + "type": "ellipse", + "x": 188.0, + "y": 4012.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 178391629, + "version": 1, + "versionNonce": 280090824, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01031-8339", + "type": "text", + "x": 208.0, + "y": 4008.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 454268906, + "version": 1, + "versionNonce": 952708790, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01032-7096", + "type": "ellipse", + "x": 188.0, + "y": 4064.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 155079917, + "version": 1, + "versionNonce": 396581399, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01033-9879", + "type": "text", + "x": 208.0, + "y": 4060.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 200594321, + "version": 1, + "versionNonce": 403599266, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01034-4871", + "type": "text", + "x": 184.0, + "y": 4686.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1350631134, + "version": 1, + "versionNonce": 498163020, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01035-3113", + "type": "text", + "x": 184.0, + "y": 4712.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1163154911, + "version": 1, + "versionNonce": 423438732, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01036-3848", + "type": "rectangle", + "x": 370.0, + "y": 3840.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1912223252, + "version": 1, + "versionNonce": 1248879966, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01037-8798", + "type": "text", + "x": 400.0, + "y": 3858.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2110906731, + "version": 1, + "versionNonce": 2008634642, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01038-2496", + "type": "text", + "x": 400.0, + "y": 3889.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1275954698, + "version": 1, + "versionNonce": 2046865976, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Every Run, newest first. Search, inspect, and recover from one place.", + "originalText": "Every Run, newest first. Search, inspect, and recover from one place.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01039-7736", + "type": "text", + "x": 400.0, + "y": 3950.0, + "width": 47.879999999999995, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 983650162, + "version": 1, + "versionNonce": 675651254, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SEARCH", + "originalText": "SEARCH", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01040-7959", + "type": "rectangle", + "x": 400.0, + "y": 3972.0, + "width": 380.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 208116880, + "version": 1, + "versionNonce": 869720307, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01041-9938", + "type": "text", + "x": 412.0, + "y": 3983.0, + "width": 356.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1351731155, + "version": 1, + "versionNonce": 1262659687, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Search workflow, Run, or outcome", + "originalText": "Search workflow, Run, or outcome", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01042-6592", + "type": "rectangle", + "x": 808.0, + "y": 3972.0, + "width": 89.6, + "height": 30.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1616746485, + "version": 1, + "versionNonce": 1948970189, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01043-2271", + "type": "text", + "x": 818.0, + "y": 3979.0, + "width": 69.6, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 137804265, + "version": 1, + "versionNonce": 1286635654, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "All 128", + "originalText": "All 128", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01044-9140", + "type": "rectangle", + "x": 905.6, + "y": 3972.0, + "width": 122.39999999999999, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 2054519454, + "version": 1, + "versionNonce": 1657379592, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01045-7754", + "type": "text", + "x": 915.6, + "y": 3979.0, + "width": 102.39999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1648186173, + "version": 1, + "versionNonce": 903299293, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Needs you 2", + "originalText": "Needs you 2", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01046-5194", + "type": "rectangle", + "x": 1036.0, + "y": 3972.0, + "width": 106.0, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1898654865, + "version": 1, + "versionNonce": 469193996, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01047-3183", + "type": "text", + "x": 1046.0, + "y": 3979.0, + "width": 86.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 985591591, + "version": 1, + "versionNonce": 970826280, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running 3", + "originalText": "Running 3", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01048-8008", + "type": "rectangle", + "x": 1150.0, + "y": 3972.0, + "width": 97.8, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 482327101, + "version": 1, + "versionNonce": 35983373, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01049-1166", + "type": "text", + "x": 1160.0, + "y": 3979.0, + "width": 77.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 801078951, + "version": 1, + "versionNonce": 1767173427, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed 7", + "originalText": "Failed 7", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01050-8792", + "type": "rectangle", + "x": 1255.8, + "y": 3972.0, + "width": 89.6, + "height": 30.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1084489131, + "version": 1, + "versionNonce": 2095106651, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01051-1307", + "type": "text", + "x": 1265.8, + "y": 3979.0, + "width": 69.6, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1261660929, + "version": 1, + "versionNonce": 686258718, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Mine 18", + "originalText": "Mine 18", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01052-6766", + "type": "rectangle", + "x": 400.0, + "y": 4038.0, + "width": 1170.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 724688338, + "version": 1, + "versionNonce": 135214163, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01053-6866", + "type": "text", + "x": 414.0, + "y": 4051.0, + "width": 77.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1435256748, + "version": 1, + "versionNonce": 2122177457, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "STATUS", + "originalText": "STATUS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01054-6488", + "type": "text", + "x": 519.0, + "y": 4051.0, + "width": 207.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 528989184, + "version": 1, + "versionNonce": 2014747567, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WORKFLOW", + "originalText": "WORKFLOW", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01055-5325", + "type": "text", + "x": 754.0, + "y": 4051.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1270208017, + "version": 1, + "versionNonce": 1070089138, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ORIGIN", + "originalText": "ORIGIN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01056-8329", + "type": "text", + "x": 874.0, + "y": 4051.0, + "width": 147.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1415691307, + "version": 1, + "versionNonce": 68865039, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "REVISION", + "originalText": "REVISION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01057-9057", + "type": "text", + "x": 1049.0, + "y": 4051.0, + "width": 87.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 674000188, + "version": 1, + "versionNonce": 1551573424, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WHEN", + "originalText": "WHEN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01058-8557", + "type": "text", + "x": 1164.0, + "y": 4051.0, + "width": 47.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 393386394, + "version": 1, + "versionNonce": 1514002877, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "TOOK", + "originalText": "TOOK", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01059-2448", + "type": "text", + "x": 1239.0, + "y": 4051.0, + "width": 62.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 148133636, + "version": 1, + "versionNonce": 1154199888, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "USAGE", + "originalText": "USAGE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01060-3329", + "type": "text", + "x": 1329.0, + "y": 4051.0, + "width": 227.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 17015447, + "version": 1, + "versionNonce": 1169301658, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "OUTCOME", + "originalText": "OUTCOME", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01061-5381", + "type": "rectangle", + "x": 400.0, + "y": 4080.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 369213418, + "version": 1, + "versionNonce": 890959920, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01062-8239", + "type": "rectangle", + "x": 412.0, + "y": 4101.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 712333823, + "version": 1, + "versionNonce": 851358147, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01063-7964", + "type": "text", + "x": 422.0, + "y": 4107.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 726897006, + "version": 1, + "versionNonce": 181640494, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01064-5891", + "type": "text", + "x": 517.0, + "y": 4094.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2066452166, + "version": 1, + "versionNonce": 15605705, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01065-2661", + "type": "text", + "x": 517.0, + "y": 4119.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 6222373, + "version": 1, + "versionNonce": 1871860489, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 you", + "originalText": "Manual \u00b7 you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01066-6626", + "type": "text", + "x": 752.0, + "y": 4105.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1724046815, + "version": 1, + "versionNonce": 1370771442, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual", + "originalText": "Manual", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01067-9477", + "type": "text", + "x": 872.0, + "y": 4095.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 995238780, + "version": 1, + "versionNonce": 812523867, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft", + "originalText": "Current draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01068-3987", + "type": "text", + "x": 872.0, + "y": 4120.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 922045712, + "version": 1, + "versionNonce": 666448704, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 12", + "originalText": "revision 12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01069-1802", + "type": "text", + "x": 1047.0, + "y": 4105.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1758487042, + "version": 1, + "versionNonce": 359220473, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "18s ago", + "originalText": "18s ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01070-1423", + "type": "text", + "x": 1158.0, + "y": 4105.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 611464078, + "version": 1, + "versionNonce": 677623656, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:18", + "originalText": "00:18", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01071-1760", + "type": "text", + "x": 1233.0, + "y": 4105.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 907792913, + "version": 1, + "versionNonce": 1282370534, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.03", + "originalText": "$0.03", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01072-6611", + "type": "text", + "x": 1327.0, + "y": 4095.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1169994162, + "version": 1, + "versionNonce": 593162790, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Preparing reply", + "originalText": "Preparing reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01073-9133", + "type": "text", + "x": 1327.0, + "y": 4120.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 150056386, + "version": 1, + "versionNonce": 783647598, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01074-9698", + "type": "rectangle", + "x": 400.0, + "y": 4150.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 363262574, + "version": 1, + "versionNonce": 1541453108, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01075-2425", + "type": "rectangle", + "x": 412.0, + "y": 4171.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1702966852, + "version": 1, + "versionNonce": 410738760, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01076-7693", + "type": "text", + "x": 422.0, + "y": 4177.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1604744916, + "version": 1, + "versionNonce": 985313218, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Needs you", + "originalText": "Needs you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01077-6744", + "type": "text", + "x": 517.0, + "y": 4164.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1658123375, + "version": 1, + "versionNonce": 307878247, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Invoice follow-up", + "originalText": "Invoice follow-up", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01078-6574", + "type": "text", + "x": 517.0, + "y": 4189.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1162812280, + "version": 1, + "versionNonce": 431882900, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule \u00b7 weekday", + "originalText": "Schedule \u00b7 weekday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01079-9682", + "type": "text", + "x": 752.0, + "y": 4175.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 768078389, + "version": 1, + "versionNonce": 1299409068, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01080-3702", + "type": "text", + "x": 872.0, + "y": 4165.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 242012840, + "version": 1, + "versionNonce": 1954052168, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01081-6299", + "type": "text", + "x": 872.0, + "y": 4190.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1910670815, + "version": 1, + "versionNonce": 1569339221, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v4", + "originalText": "v4", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01082-2012", + "type": "text", + "x": 1047.0, + "y": 4175.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1954174122, + "version": 1, + "versionNonce": 2132442053, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "42m ago", + "originalText": "42m ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01083-9698", + "type": "text", + "x": 1158.0, + "y": 4175.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 921498190, + "version": 1, + "versionNonce": 1896487282, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "02:18", + "originalText": "02:18", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01084-3502", + "type": "text", + "x": 1233.0, + "y": 4175.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1290175061, + "version": 1, + "versionNonce": 842154507, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.22", + "originalText": "$0.22", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01085-5225", + "type": "text", + "x": 1327.0, + "y": 4165.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1141608513, + "version": 1, + "versionNonce": 221814184, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Approve 4 messages", + "originalText": "Approve 4 messages", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01086-5149", + "type": "text", + "x": 1327.0, + "y": 4190.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2097351256, + "version": 1, + "versionNonce": 1951226907, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01087-5716", + "type": "rectangle", + "x": 400.0, + "y": 4220.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 375375171, + "version": 1, + "versionNonce": 24523514, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01088-3751", + "type": "rectangle", + "x": 412.0, + "y": 4241.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1843540766, + "version": 1, + "versionNonce": 1399773054, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01089-2689", + "type": "text", + "x": 422.0, + "y": 4247.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1039524515, + "version": 1, + "versionNonce": 1640180882, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01090-7063", + "type": "text", + "x": 517.0, + "y": 4234.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1355284802, + "version": 1, + "versionNonce": 417747342, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Weekly feedback digest", + "originalText": "Weekly feedback digest", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01091-2220", + "type": "text", + "x": 517.0, + "y": 4259.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1094021624, + "version": 1, + "versionNonce": 309484263, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule \u00b7 weekly", + "originalText": "Schedule \u00b7 weekly", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01092-3626", + "type": "text", + "x": 752.0, + "y": 4245.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1194114405, + "version": 1, + "versionNonce": 1591323732, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01093-3244", + "type": "text", + "x": 872.0, + "y": 4235.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 382568512, + "version": 1, + "versionNonce": 989751861, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01094-5798", + "type": "text", + "x": 872.0, + "y": 4260.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 674870274, + "version": 1, + "versionNonce": 760341885, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v7", + "originalText": "v7", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01095-1848", + "type": "text", + "x": 1047.0, + "y": 4245.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1645368497, + "version": 1, + "versionNonce": 625474109, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2h ago", + "originalText": "2h ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01096-9821", + "type": "text", + "x": 1158.0, + "y": 4245.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1864957993, + "version": 1, + "versionNonce": 744774795, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "01:42", + "originalText": "01:42", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01097-2139", + "type": "text", + "x": 1233.0, + "y": 4245.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1274288406, + "version": 1, + "versionNonce": 1949814105, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.18", + "originalText": "$0.18", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01098-9145", + "type": "text", + "x": 1327.0, + "y": 4235.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1409724511, + "version": 1, + "versionNonce": 1860241519, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Posted 1 summary", + "originalText": "Posted 1 summary", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01099-7231", + "type": "text", + "x": 1327.0, + "y": 4260.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 330236118, + "version": 1, + "versionNonce": 52607329, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01100-8891", + "type": "rectangle", + "x": 400.0, + "y": 4290.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 644556360, + "version": 1, + "versionNonce": 129456575, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01101-7090", + "type": "rectangle", + "x": 412.0, + "y": 4311.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1804076372, + "version": 1, + "versionNonce": 565213091, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01102-3917", + "type": "text", + "x": 422.0, + "y": 4317.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 992439954, + "version": 1, + "versionNonce": 1502915740, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01103-6400", + "type": "text", + "x": 517.0, + "y": 4304.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2073739349, + "version": 1, + "versionNonce": 2034902948, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Nightly order sync", + "originalText": "Nightly order sync", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01104-2514", + "type": "text", + "x": 517.0, + "y": 4329.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 769827151, + "version": 1, + "versionNonce": 193191609, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule \u00b7 nightly", + "originalText": "Schedule \u00b7 nightly", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01105-9211", + "type": "text", + "x": 752.0, + "y": 4315.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 492487053, + "version": 1, + "versionNonce": 1937855731, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Schedule", + "originalText": "Schedule", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01106-8197", + "type": "text", + "x": 872.0, + "y": 4305.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 669714600, + "version": 1, + "versionNonce": 2010689024, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01107-4577", + "type": "text", + "x": 872.0, + "y": 4330.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1004517327, + "version": 1, + "versionNonce": 363626995, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v9", + "originalText": "v9", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01108-8532", + "type": "text", + "x": 1047.0, + "y": 4315.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1685738987, + "version": 1, + "versionNonce": 1552622611, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "3:04 AM", + "originalText": "3:04 AM", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01109-8599", + "type": "text", + "x": 1158.0, + "y": 4315.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1783870994, + "version": 1, + "versionNonce": 1192080228, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:21", + "originalText": "00:21", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01110-1449", + "type": "text", + "x": 1233.0, + "y": 4315.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1961195095, + "version": 1, + "versionNonce": 1188375148, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.04", + "originalText": "$0.04", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01111-8061", + "type": "text", + "x": 1327.0, + "y": 4305.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1372722388, + "version": 1, + "versionNonce": 126470813, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Warehouse unavailable", + "originalText": "Warehouse unavailable", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01112-8427", + "type": "text", + "x": 1327.0, + "y": 4330.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 373591302, + "version": 1, + "versionNonce": 756395079, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01113-8141", + "type": "rectangle", + "x": 400.0, + "y": 4360.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 352887871, + "version": 1, + "versionNonce": 1134976228, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01114-6239", + "type": "rectangle", + "x": 412.0, + "y": 4381.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 2014741755, + "version": 1, + "versionNonce": 1204588302, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01115-3550", + "type": "text", + "x": 422.0, + "y": 4387.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 600612979, + "version": 1, + "versionNonce": 904048636, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01116-4322", + "type": "text", + "x": 517.0, + "y": 4374.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1941179013, + "version": 1, + "versionNonce": 2074319463, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01117-1709", + "type": "text", + "x": 517.0, + "y": 4399.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1352818522, + "version": 1, + "versionNonce": 1261183158, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry \u00b7 R-1031", + "originalText": "Retry \u00b7 R-1031", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01118-7840", + "type": "text", + "x": 752.0, + "y": 4385.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 141550662, + "version": 1, + "versionNonce": 1891673968, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry", + "originalText": "Retry", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01119-3987", + "type": "text", + "x": 872.0, + "y": 4375.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1223319514, + "version": 1, + "versionNonce": 720264863, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft", + "originalText": "Draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01120-5220", + "type": "text", + "x": 872.0, + "y": 4400.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 205797346, + "version": 1, + "versionNonce": 652167091, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 11", + "originalText": "revision 11", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01121-8149", + "type": "text", + "x": 1047.0, + "y": 4385.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 682337045, + "version": 1, + "versionNonce": 1771982235, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Yesterday", + "originalText": "Yesterday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01122-5310", + "type": "text", + "x": 1158.0, + "y": 4385.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 345263492, + "version": 1, + "versionNonce": 1500055530, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:49", + "originalText": "00:49", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01123-4089", + "type": "text", + "x": 1233.0, + "y": 4385.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 207094589, + "version": 1, + "versionNonce": 1985820136, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.09", + "originalText": "$0.09", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01124-4102", + "type": "text", + "x": 1327.0, + "y": 4375.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1495349513, + "version": 1, + "versionNonce": 1087422639, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Posted reply", + "originalText": "Posted reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01125-1370", + "type": "text", + "x": 1327.0, + "y": 4400.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 652680726, + "version": 1, + "versionNonce": 601785155, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01126-4167", + "type": "rectangle", + "x": 400.0, + "y": 4430.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 590191875, + "version": 1, + "versionNonce": 2013601746, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01127-8671", + "type": "rectangle", + "x": 412.0, + "y": 4451.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 315171825, + "version": 1, + "versionNonce": 992009736, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01128-9768", + "type": "text", + "x": 422.0, + "y": 4457.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 480257737, + "version": 1, + "versionNonce": 639235147, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01129-4843", + "type": "text", + "x": 517.0, + "y": 4444.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 691838360, + "version": 1, + "versionNonce": 313933300, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01130-3363", + "type": "text", + "x": 517.0, + "y": 4469.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1570216687, + "version": 1, + "versionNonce": 828250757, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 Calvin", + "originalText": "Manual \u00b7 Calvin", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01131-9022", + "type": "text", + "x": 752.0, + "y": 4455.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2138846314, + "version": 1, + "versionNonce": 1315857445, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual", + "originalText": "Manual", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01132-3221", + "type": "text", + "x": 872.0, + "y": 4445.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 469662412, + "version": 1, + "versionNonce": 882010418, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft", + "originalText": "Draft", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01133-7238", + "type": "text", + "x": 872.0, + "y": 4470.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 466759561, + "version": 1, + "versionNonce": 881834893, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "revision 11", + "originalText": "revision 11", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01134-1457", + "type": "text", + "x": 1047.0, + "y": 4455.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 555397250, + "version": 1, + "versionNonce": 791966997, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Yesterday", + "originalText": "Yesterday", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01135-6904", + "type": "text", + "x": 1158.0, + "y": 4455.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1846128907, + "version": 1, + "versionNonce": 700265260, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:13", + "originalText": "00:13", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01136-3029", + "type": "text", + "x": 1233.0, + "y": 4455.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1700115858, + "version": 1, + "versionNonce": 372530537, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.02", + "originalText": "$0.02", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01137-6837", + "type": "text", + "x": 1327.0, + "y": 4445.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1992559456, + "version": 1, + "versionNonce": 1198051998, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Linear permission denied", + "originalText": "Linear permission denied", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01138-5739", + "type": "text", + "x": 1327.0, + "y": 4470.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1699352191, + "version": 1, + "versionNonce": 1606023465, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01139-8431", + "type": "rectangle", + "x": 400.0, + "y": 4500.0, + "width": 1170.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 975259066, + "version": 1, + "versionNonce": 1206580592, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01140-6017", + "type": "rectangle", + "x": 412.0, + "y": 4521.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#ecfdf3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": { + "type": 3 + }, + "seed": 1422914461, + "version": 1, + "versionNonce": 771818511, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01141-5022", + "type": "text", + "x": 422.0, + "y": 4527.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 175033714, + "version": 1, + "versionNonce": 1831705096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Succeeded", + "originalText": "Succeeded", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01142-6989", + "type": "text", + "x": 517.0, + "y": 4514.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1413929857, + "version": 1, + "versionNonce": 1499140129, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Invoice follow-up", + "originalText": "Invoice follow-up", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01143-2451", + "type": "text", + "x": 517.0, + "y": 4539.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2110426217, + "version": 1, + "versionNonce": 207457843, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 you", + "originalText": "Manual \u00b7 you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01144-2145", + "type": "text", + "x": 752.0, + "y": 4525.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1610347834, + "version": 1, + "versionNonce": 1749915441, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual", + "originalText": "Manual", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01145-6391", + "type": "text", + "x": 872.0, + "y": 4515.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 811353168, + "version": 1, + "versionNonce": 541450157, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published", + "originalText": "Published", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01146-6467", + "type": "text", + "x": 872.0, + "y": 4540.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 880210575, + "version": 1, + "versionNonce": 1791086282, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "v4", + "originalText": "v4", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01147-4319", + "type": "text", + "x": 1047.0, + "y": 4525.0, + "width": 92.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1698528707, + "version": 1, + "versionNonce": 118363608, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2d ago", + "originalText": "2d ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01148-7593", + "type": "text", + "x": 1158.0, + "y": 4525.0, + "width": 60.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1773266851, + "version": 1, + "versionNonce": 418277434, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "02:04", + "originalText": "02:04", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01149-4094", + "type": "text", + "x": 1233.0, + "y": 4525.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 2037543246, + "version": 1, + "versionNonce": 291079103, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.20", + "originalText": "$0.20", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01150-7974", + "type": "text", + "x": 1327.0, + "y": 4515.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 1144725099, + "version": 1, + "versionNonce": 456618535, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Sent 6 reminders", + "originalText": "Sent 6 reminders", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01151-6302", + "type": "text", + "x": 1327.0, + "y": 4540.0, + "width": 228.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 102275159, + "version": 1, + "versionNonce": 92479022, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open details", + "originalText": "Open details", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01152-6630", + "type": "text", + "x": 400.0, + "y": 4710.0, + "width": 680.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-09" + ], + "frameId": "frame-01021-4215", + "roundness": null, + "seed": 665073723, + "version": 1, + "versionNonce": 1410584096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Showing 7 of 128 Runs | New records appear here as soon as execution starts.", + "originalText": "Showing 7 of 128 Runs | New records appear here as soon as execution starts.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01153-9609", + "type": "frame", + "x": 1920.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1791026401, + "version": 1, + "versionNonce": 1587049567, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "11 Run detail - immutable record" + }, + { + "id": "r-01155-7542", + "type": "rectangle", + "x": 1920.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 307912599, + "version": 1, + "versionNonce": 245690432, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01156-9595", + "type": "rectangle", + "x": 1920.0, + "y": 3840.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1106910841, + "version": 1, + "versionNonce": 1563778443, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01157-5623", + "type": "text", + "x": 1944.0, + "y": 3864.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1184679661, + "version": 1, + "versionNonce": 2141739967, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01158-6010", + "type": "text", + "x": 1944.0, + "y": 3893.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1146241242, + "version": 1, + "versionNonce": 1580683705, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01159-1873", + "type": "ellipse", + "x": 1948.0, + "y": 3960.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1404060231, + "version": 1, + "versionNonce": 924192210, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01160-3563", + "type": "text", + "x": 1968.0, + "y": 3956.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 777093970, + "version": 1, + "versionNonce": 1836241192, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01161-8207", + "type": "rectangle", + "x": 1932.0, + "y": 4000.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 526781430, + "version": 1, + "versionNonce": 397393966, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01162-1592", + "type": "ellipse", + "x": 1948.0, + "y": 4012.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 675026638, + "version": 1, + "versionNonce": 1608466201, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01163-7414", + "type": "text", + "x": 1968.0, + "y": 4008.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 447542424, + "version": 1, + "versionNonce": 1178576371, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01164-4491", + "type": "ellipse", + "x": 1948.0, + "y": 4064.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1206200348, + "version": 1, + "versionNonce": 860970499, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01165-7692", + "type": "text", + "x": 1968.0, + "y": 4060.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1622397633, + "version": 1, + "versionNonce": 245332790, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01166-3972", + "type": "text", + "x": 1944.0, + "y": 4686.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1581322754, + "version": 1, + "versionNonce": 664936387, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01167-8232", + "type": "text", + "x": 1944.0, + "y": 4712.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1000276939, + "version": 1, + "versionNonce": 383040744, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01168-9980", + "type": "rectangle", + "x": 2130.0, + "y": 3840.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 604361372, + "version": 1, + "versionNonce": 445344838, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01169-4037", + "type": "text", + "x": 2160.0, + "y": 3858.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 171539509, + "version": 1, + "versionNonce": 1515081711, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run #R-1042", + "originalText": "Run #R-1042", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01170-9547", + "type": "text", + "x": 2160.0, + "y": 3889.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1294265044, + "version": 1, + "versionNonce": 1355021010, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage | Started 18 seconds ago", + "originalText": "Customer escalation triage | Started 18 seconds ago", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01171-3664", + "type": "rectangle", + "x": 3032.0, + "y": 3862.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1135973755, + "version": 1, + "versionNonce": 135574504, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01172-6712", + "type": "text", + "x": 3040.0, + "y": 3871.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 539665594, + "version": 1, + "versionNonce": 517682926, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open workflow", + "originalText": "Open workflow", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01173-1329", + "type": "rectangle", + "x": 3170.0, + "y": 3862.0, + "width": 160.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1821469843, + "version": 1, + "versionNonce": 1280376890, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01174-6639", + "type": "text", + "x": 3178.0, + "y": 3871.0, + "width": 144.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 669290266, + "version": 1, + "versionNonce": 177666391, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run again", + "originalText": "Run again", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01175-4307", + "type": "rectangle", + "x": 2160.0, + "y": 3950.0, + "width": 780.0, + "height": 748.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 679252086, + "version": 1, + "versionNonce": 2150384, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01176-4420", + "type": "rectangle", + "x": 2184.0, + "y": 3974.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1464139590, + "version": 1, + "versionNonce": 1189923185, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01177-8499", + "type": "text", + "x": 2194.0, + "y": 3980.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 692742478, + "version": 1, + "versionNonce": 1751204298, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01178-2225", + "type": "text", + "x": 2184.0, + "y": 4022.0, + "width": 520.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1659417197, + "version": 1, + "versionNonce": 228088899, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01179-3967", + "type": "text", + "x": 2184.0, + "y": 4060.0, + "width": 360.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#6941c6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1331882075, + "version": 1, + "versionNonce": 1267570546, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Current draft \u00b7 revision 12", + "originalText": "Current draft \u00b7 revision 12", + "fontSize": 16, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01180-5838", + "type": "text", + "x": 2184.0, + "y": 4118.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1773549917, + "version": 1, + "versionNonce": 1227660565, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ORIGIN", + "originalText": "ORIGIN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01181-3286", + "type": "text", + "x": 2184.0, + "y": 4144.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 305628545, + "version": 1, + "versionNonce": 734555794, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manual \u00b7 you", + "originalText": "Manual \u00b7 you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01182-8335", + "type": "text", + "x": 2544.0, + "y": 4118.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 37557640, + "version": 1, + "versionNonce": 1657834644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "STARTED", + "originalText": "STARTED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01183-9145", + "type": "text", + "x": 2544.0, + "y": 4144.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 563288836, + "version": 1, + "versionNonce": 294730023, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Aug 3, 2026 at 14:32:18", + "originalText": "Aug 3, 2026 at 14:32:18", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01184-4912", + "type": "text", + "x": 2184.0, + "y": 4202.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1662093858, + "version": 1, + "versionNonce": 1550328339, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ELAPSED", + "originalText": "ELAPSED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01185-3101", + "type": "text", + "x": 2184.0, + "y": 4228.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1959356795, + "version": 1, + "versionNonce": 2035843496, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:18", + "originalText": "00:18", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01186-4060", + "type": "text", + "x": 2544.0, + "y": 4202.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 131552508, + "version": 1, + "versionNonce": 1232724232, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "USAGE", + "originalText": "USAGE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01187-4995", + "type": "text", + "x": 2544.0, + "y": 4228.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 151075209, + "version": 1, + "versionNonce": 1859410905, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.03 \u00b7 5.8k tokens", + "originalText": "$0.03 \u00b7 5.8k tokens", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01188-5518", + "type": "line", + "x": 2184.0, + "y": 4284.0, + "width": 732.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 677383659, + "version": 1, + "versionNonce": 1347419982, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 732.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01189-1071", + "type": "text", + "x": 2184.0, + "y": 4312.0, + "width": 170.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1441007233, + "version": 1, + "versionNonce": 226975697, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "STEP TIMELINE", + "originalText": "STEP TIMELINE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01190-2415", + "type": "ellipse", + "x": 2188.0, + "y": 4358.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1770345286, + "version": 1, + "versionNonce": 1228788697, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-01191-7769", + "type": "line", + "x": 2197.0, + "y": 4376.0, + "width": 0.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1105045524, + "version": 1, + "versionNonce": 696804127, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 38.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01192-1244", + "type": "text", + "x": 2224.0, + "y": 4356.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 512907700, + "version": 1, + "versionNonce": 1921226051, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Receive conversation", + "originalText": "Receive conversation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01193-8768", + "type": "text", + "x": 2590.0, + "y": 4356.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 926563154, + "version": 1, + "versionNonce": 142272309, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "0.8s", + "originalText": "0.8s", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01194-7270", + "type": "ellipse", + "x": 2188.0, + "y": 4416.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 675651774, + "version": 1, + "versionNonce": 1949169348, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-01195-8124", + "type": "line", + "x": 2197.0, + "y": 4434.0, + "width": 0.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1179870274, + "version": 1, + "versionNonce": 1132682529, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 38.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01196-9287", + "type": "text", + "x": 2224.0, + "y": 4414.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1009117522, + "version": 1, + "versionNonce": 1739976505, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Classify severity", + "originalText": "Classify severity", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01197-7336", + "type": "text", + "x": 2590.0, + "y": 4414.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 667889774, + "version": 1, + "versionNonce": 1495798106, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "3.4s", + "originalText": "3.4s", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01198-3774", + "type": "ellipse", + "x": 2188.0, + "y": 4474.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "#067647", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1801259882, + "version": 1, + "versionNonce": 2103762335, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-01199-6512", + "type": "line", + "x": 2197.0, + "y": 4492.0, + "width": 0.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 156539986, + "version": 1, + "versionNonce": 865814784, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 38.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01200-6788", + "type": "text", + "x": 2224.0, + "y": 4472.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1646005103, + "version": 1, + "versionNonce": 1044692166, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Route escalation", + "originalText": "Route escalation", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01201-4667", + "type": "text", + "x": 2590.0, + "y": 4472.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#067647", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1206219759, + "version": 1, + "versionNonce": 1500782679, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "0.1s", + "originalText": "0.1s", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01202-2129", + "type": "ellipse", + "x": 2188.0, + "y": 4532.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 163346251, + "version": 1, + "versionNonce": 986772145, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "l-01203-8309", + "type": "line", + "x": 2197.0, + "y": 4550.0, + "width": 0.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 2110921843, + "version": 1, + "versionNonce": 457970947, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.0, + 38.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01204-5532", + "type": "text", + "x": 2224.0, + "y": 4530.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1525502704, + "version": 1, + "versionNonce": 117368523, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Prepare reply", + "originalText": "Prepare reply", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01205-1401", + "type": "text", + "x": 2590.0, + "y": 4530.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 492738000, + "version": 1, + "versionNonce": 1703463687, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "running 13s", + "originalText": "running 13s", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01206-3976", + "type": "ellipse", + "x": 2188.0, + "y": 4590.0, + "width": 18.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 478808473, + "version": 1, + "versionNonce": 1214632562, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01207-4474", + "type": "text", + "x": 2224.0, + "y": 4588.0, + "width": 320.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 430633900, + "version": 1, + "versionNonce": 1882312051, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Post response", + "originalText": "Post response", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01208-3822", + "type": "text", + "x": 2590.0, + "y": 4588.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1630598189, + "version": 1, + "versionNonce": 1444926363, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "queued", + "originalText": "queued", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01209-3689", + "type": "rectangle", + "x": 2964.0, + "y": 3950.0, + "width": 366.0, + "height": 748.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1633113920, + "version": 1, + "versionNonce": 1379032860, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01210-6763", + "type": "text", + "x": 2988.0, + "y": 3974.0, + "width": 100.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1839670436, + "version": 1, + "versionNonce": 1786776765, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "RECORD", + "originalText": "RECORD", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01211-5163", + "type": "text", + "x": 2988.0, + "y": 4010.0, + "width": 23.939999999999998, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1696743897, + "version": 1, + "versionNonce": 437369059, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "RUN", + "originalText": "RUN", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01212-6338", + "type": "rectangle", + "x": 2988.0, + "y": 4032.0, + "width": 318.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 353684181, + "version": 1, + "versionNonce": 2037572353, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01213-2156", + "type": "text", + "x": 3000.0, + "y": 4043.0, + "width": 294.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 334994565, + "version": 1, + "versionNonce": 1338525200, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "R-1042", + "originalText": "R-1042", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01214-8160", + "type": "text", + "x": 2988.0, + "y": 4094.0, + "width": 63.839999999999996, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1901288591, + "version": 1, + "versionNonce": 878191425, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "REVISION", + "originalText": "REVISION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01215-1040", + "type": "rectangle", + "x": 2988.0, + "y": 4116.0, + "width": 318.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 247654491, + "version": 1, + "versionNonce": 1866776779, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01216-2629", + "type": "text", + "x": 3000.0, + "y": 4127.0, + "width": 294.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 441435174, + "version": 1, + "versionNonce": 1461796060, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "draft-r12", + "originalText": "draft-r12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01217-1718", + "type": "text", + "x": 2988.0, + "y": 4178.0, + "width": 87.77999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 394836356, + "version": 1, + "versionNonce": 1297705584, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ENVIRONMENT", + "originalText": "ENVIRONMENT", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01218-4363", + "type": "rectangle", + "x": 2988.0, + "y": 4200.0, + "width": 318.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1288107424, + "version": 1, + "versionNonce": 3526064, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01219-8481", + "type": "text", + "x": 3000.0, + "y": 4211.0, + "width": 294.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 776206322, + "version": 1, + "versionNonce": 305472349, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Production", + "originalText": "Production", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01220-3276", + "type": "text", + "x": 2988.0, + "y": 4268.0, + "width": 140.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1649995498, + "version": 1, + "versionNonce": 2019038184, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "LINKED RUNS", + "originalText": "LINKED RUNS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01221-9131", + "type": "rectangle", + "x": 2988.0, + "y": 4298.0, + "width": 318.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 138531388, + "version": 1, + "versionNonce": 1556457756, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01222-6430", + "type": "text", + "x": 3004.0, + "y": 4314.0, + "width": 240.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 667757809, + "version": 1, + "versionNonce": 1087569968, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "No linked Runs yet", + "originalText": "No linked Runs yet", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01223-3188", + "type": "text", + "x": 3004.0, + "y": 4341.0, + "width": 270.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 857632447, + "version": 1, + "versionNonce": 535125022, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run again will create one.", + "originalText": "Run again will create one.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01224-5851", + "type": "rectangle", + "x": 2988.0, + "y": 4402.0, + "width": 318.0, + "height": 124.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 579299022, + "version": 1, + "versionNonce": 1236769683, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01225-9957", + "type": "text", + "x": 3004.0, + "y": 4422.0, + "width": 250.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 845777303, + "version": 1, + "versionNonce": 2110233744, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "History is immutable", + "originalText": "History is immutable", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01226-6223", + "type": "text", + "x": 3004.0, + "y": 4456.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 676938201, + "version": 1, + "versionNonce": 1748277419, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "A new attempt keeps this record and links back to R-1042.", + "originalText": "A new attempt keeps this record and links back to R-1042.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01227-4035", + "type": "rectangle", + "x": 2988.0, + "y": 4556.0, + "width": 318.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": { + "type": 3 + }, + "seed": 1863020878, + "version": 1, + "versionNonce": 1620719914, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01228-3453", + "type": "text", + "x": 2996.0, + "y": 4565.0, + "width": 302.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-10" + ], + "frameId": "frame-01153-9609", + "roundness": null, + "seed": 1710282958, + "version": 1, + "versionNonce": 603258407, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run again", + "originalText": "Run again", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01229-7206", + "type": "frame", + "x": 3680.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1100322327, + "version": 1, + "versionNonce": 873909714, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "12 Failed Run - recovery creates a new record" + }, + { + "id": "r-01231-9399", + "type": "rectangle", + "x": 3680.0, + "y": 3840.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 178391605, + "version": 1, + "versionNonce": 2146765733, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01232-3243", + "type": "rectangle", + "x": 3680.0, + "y": 3840.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1039501073, + "version": 1, + "versionNonce": 392175463, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01233-8877", + "type": "text", + "x": 3704.0, + "y": 3864.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 2108347747, + "version": 1, + "versionNonce": 1258928364, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01234-3487", + "type": "text", + "x": 3704.0, + "y": 3893.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1816903620, + "version": 1, + "versionNonce": 206082983, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01235-1685", + "type": "ellipse", + "x": 3708.0, + "y": 3960.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 676988241, + "version": 1, + "versionNonce": 1326421613, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01236-9283", + "type": "text", + "x": 3728.0, + "y": 3956.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 554743158, + "version": 1, + "versionNonce": 185512824, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01237-2207", + "type": "rectangle", + "x": 3692.0, + "y": 4000.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1147198950, + "version": 1, + "versionNonce": 1649858192, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01238-7537", + "type": "ellipse", + "x": 3708.0, + "y": 4012.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1247934334, + "version": 1, + "versionNonce": 1622832554, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01239-9412", + "type": "text", + "x": 3728.0, + "y": 4008.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 809619115, + "version": 1, + "versionNonce": 526583985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01240-1891", + "type": "ellipse", + "x": 3708.0, + "y": 4064.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 2120388456, + "version": 1, + "versionNonce": 2088604356, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01241-9067", + "type": "text", + "x": 3728.0, + "y": 4060.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 780847797, + "version": 1, + "versionNonce": 1768503043, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01242-7549", + "type": "text", + "x": 3704.0, + "y": 4686.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 237241791, + "version": 1, + "versionNonce": 893887481, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01243-2300", + "type": "text", + "x": 3704.0, + "y": 4712.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 381194425, + "version": 1, + "versionNonce": 195328722, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01244-8812", + "type": "rectangle", + "x": 3890.0, + "y": 3840.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 566552843, + "version": 1, + "versionNonce": 1012858160, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01245-5288", + "type": "text", + "x": 3920.0, + "y": 3858.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 181886281, + "version": 1, + "versionNonce": 722018103, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run #R-1038", + "originalText": "Run #R-1038", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01246-3780", + "type": "text", + "x": 3920.0, + "y": 3889.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 559158403, + "version": 1, + "versionNonce": 1076162608, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Nightly order sync | Failed at step 4", + "originalText": "Nightly order sync | Failed at step 4", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01247-3017", + "type": "rectangle", + "x": 4792.0, + "y": 3862.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 2077492936, + "version": 1, + "versionNonce": 152951834, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01248-4280", + "type": "text", + "x": 4800.0, + "y": 3871.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 788930255, + "version": 1, + "versionNonce": 1599242650, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edit workflow", + "originalText": "Edit workflow", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01249-3935", + "type": "rectangle", + "x": 4930.0, + "y": 3862.0, + "width": 160.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 791598317, + "version": 1, + "versionNonce": 914681609, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01250-7665", + "type": "text", + "x": 4938.0, + "y": 3871.0, + "width": 144.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 73939047, + "version": 1, + "versionNonce": 1106303569, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry", + "originalText": "Retry", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01251-6250", + "type": "rectangle", + "x": 3920.0, + "y": 3950.0, + "width": 1170.0, + "height": 110.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1113481722, + "version": 1, + "versionNonce": 850584401, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01252-8399", + "type": "rectangle", + "x": 3942.0, + "y": 3974.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 968622757, + "version": 1, + "versionNonce": 1159653043, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01253-1678", + "type": "text", + "x": 3952.0, + "y": 3980.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1985948768, + "version": 1, + "versionNonce": 1856047874, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01254-3930", + "type": "text", + "x": 4050.0, + "y": 3978.0, + "width": 560.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1310324378, + "version": 1, + "versionNonce": 85465478, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Warehouse connection is unavailable", + "originalText": "Warehouse connection is unavailable", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01255-9571", + "type": "text", + "x": 4050.0, + "y": 4012.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 4211880, + "version": 1, + "versionNonce": 1546624873, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Step 4 \u00b7 Write completed orders | The connection rejected the request.", + "originalText": "Step 4 \u00b7 Write completed orders | The connection rejected the request.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01256-3212", + "type": "text", + "x": 3942.0, + "y": 4090.0, + "width": 180.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1421680734, + "version": 1, + "versionNonce": 1777974336, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "WHAT HAPPENED", + "originalText": "WHAT HAPPENED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01257-1392", + "type": "rectangle", + "x": 3920.0, + "y": 4120.0, + "width": 720.0, + "height": 246.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 662729508, + "version": 1, + "versionNonce": 720757923, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01258-8497", + "type": "text", + "x": 3944.0, + "y": 4144.0, + "width": 63.839999999999996, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 237146066, + "version": 1, + "versionNonce": 366582185, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "REVISION", + "originalText": "REVISION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01259-5748", + "type": "rectangle", + "x": 3944.0, + "y": 4166.0, + "width": 672.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 2008840631, + "version": 1, + "versionNonce": 2115243815, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01260-7812", + "type": "text", + "x": 3956.0, + "y": 4177.0, + "width": 648.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1556954296, + "version": 1, + "versionNonce": 799619836, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published \u00b7 v9", + "originalText": "Published \u00b7 v9", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01261-9751", + "type": "text", + "x": 3944.0, + "y": 4228.0, + "width": 95.75999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 979666746, + "version": 1, + "versionNonce": 1895313444, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "FAILED AFTER", + "originalText": "FAILED AFTER", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01262-2715", + "type": "rectangle", + "x": 3944.0, + "y": 4250.0, + "width": 320.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1306389927, + "version": 1, + "versionNonce": 1930575929, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01263-4566", + "type": "text", + "x": 3956.0, + "y": 4261.0, + "width": 296.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1489802079, + "version": 1, + "versionNonce": 1303145170, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "00:21", + "originalText": "00:21", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01264-3880", + "type": "text", + "x": 4280.0, + "y": 4228.0, + "width": 39.9, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1168734432, + "version": 1, + "versionNonce": 677069339, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "USAGE", + "originalText": "USAGE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01265-1512", + "type": "rectangle", + "x": 4280.0, + "y": 4250.0, + "width": 336.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 909825182, + "version": 1, + "versionNonce": 1876151563, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01266-4645", + "type": "text", + "x": 4292.0, + "y": 4261.0, + "width": 312.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1601366958, + "version": 1, + "versionNonce": 1198631571, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "$0.04 \u00b7 8.1k tokens", + "originalText": "$0.04 \u00b7 8.1k tokens", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01267-5877", + "type": "text", + "x": 3944.0, + "y": 4322.0, + "width": 620.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1440189315, + "version": 1, + "versionNonce": 2091150718, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "The previous three completed steps remain visible in this Run record.", + "originalText": "The previous three completed steps remain visible in this Run record.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01268-5000", + "type": "text", + "x": 4692.0, + "y": 4090.0, + "width": 130.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 907594617, + "version": 1, + "versionNonce": 100455082, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "RECOVER", + "originalText": "RECOVER", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01269-6666", + "type": "rectangle", + "x": 4670.0, + "y": 4120.0, + "width": 420.0, + "height": 246.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1622922338, + "version": 1, + "versionNonce": 1072444349, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01270-8504", + "type": "text", + "x": 4694.0, + "y": 4144.0, + "width": 330.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1913731855, + "version": 1, + "versionNonce": 1925209403, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "1. Repair the connection", + "originalText": "1. Repair the connection", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01271-9177", + "type": "rectangle", + "x": 4694.0, + "y": 4176.0, + "width": 372.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 578069136, + "version": 1, + "versionNonce": 635772652, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01272-4578", + "type": "text", + "x": 4702.0, + "y": 4185.0, + "width": 356.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1930458048, + "version": 1, + "versionNonce": 457635521, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Open connections", + "originalText": "Open connections", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01273-3603", + "type": "text", + "x": 4694.0, + "y": 4240.0, + "width": 330.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 232700414, + "version": 1, + "versionNonce": 789394228, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2. Retry this Run", + "originalText": "2. Retry this Run", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01274-7476", + "type": "rectangle", + "x": 4694.0, + "y": 4272.0, + "width": 372.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1104971420, + "version": 1, + "versionNonce": 1741012489, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01275-7461", + "type": "text", + "x": 4702.0, + "y": 4281.0, + "width": 356.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1563406924, + "version": 1, + "versionNonce": 1643382988, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry", + "originalText": "Retry", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01276-6131", + "type": "text", + "x": 3920.0, + "y": 4408.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1302002480, + "version": 1, + "versionNonce": 945703775, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "RETRY PREVIEW", + "originalText": "RETRY PREVIEW", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01277-6994", + "type": "rectangle", + "x": 3920.0, + "y": 4438.0, + "width": 1170.0, + "height": 204.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 951808252, + "version": 1, + "versionNonce": 163302927, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01278-5435", + "type": "text", + "x": 3944.0, + "y": 4464.0, + "width": 420.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 323116702, + "version": 1, + "versionNonce": 867259155, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "A new Run will be created", + "originalText": "A new Run will be created", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01279-9131", + "type": "text", + "x": 3944.0, + "y": 4506.0, + "width": 720.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 118264686, + "version": 1, + "versionNonce": 388223824, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "New record: R-1043 | Source Run: R-1038 | Published \u00b7 v9", + "originalText": "New record: R-1043 | Source Run: R-1038 | Published \u00b7 v9", + "fontSize": 16, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01280-9629", + "type": "text", + "x": 3944.0, + "y": 4546.0, + "width": 790.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 948178954, + "version": 1, + "versionNonce": 1124882286, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "R-1038 remains Failed. R-1043 starts from step 4 after the connection is repaired.", + "originalText": "R-1038 remains Failed. R-1043 starts from step 4 after the connection is repaired.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01281-2407", + "type": "rectangle", + "x": 4868.0, + "y": 4574.0, + "width": 88.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1549559365, + "version": 1, + "versionNonce": 924216296, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01282-1057", + "type": "text", + "x": 4876.0, + "y": 4583.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1897895684, + "version": 1, + "versionNonce": 1994722396, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Cancel", + "originalText": "Cancel", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01283-4296", + "type": "rectangle", + "x": 4968.0, + "y": 4574.0, + "width": 98.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": { + "type": 3 + }, + "seed": 1203614796, + "version": 1, + "versionNonce": 1012437240, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01284-3283", + "type": "text", + "x": 4976.0, + "y": 4583.0, + "width": 82.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-11" + ], + "frameId": "frame-01229-7206", + "roundness": null, + "seed": 1512095931, + "version": 1, + "versionNonce": 1715065281, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry", + "originalText": "Retry", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01285-9253", + "type": "frame", + "x": 160.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 837952270, + "version": 1, + "versionNonce": 1147278256, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "13 Workflows and Activity - states" + }, + { + "id": "r-01287-6271", + "type": "rectangle", + "x": 160.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 612078966, + "version": 1, + "versionNonce": 865550241, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01288-3111", + "type": "rectangle", + "x": 160.0, + "y": 5020.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 163594218, + "version": 1, + "versionNonce": 1072478566, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01289-5272", + "type": "text", + "x": 184.0, + "y": 5044.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 2096582180, + "version": 1, + "versionNonce": 1492254283, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01290-6522", + "type": "text", + "x": 184.0, + "y": 5073.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1321854539, + "version": 1, + "versionNonce": 277782784, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01291-1444", + "type": "ellipse", + "x": 188.0, + "y": 5140.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1987425564, + "version": 1, + "versionNonce": 359823391, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01292-1982", + "type": "text", + "x": 208.0, + "y": 5136.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 941169516, + "version": 1, + "versionNonce": 313279294, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01293-8310", + "type": "rectangle", + "x": 172.0, + "y": 5180.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1894726635, + "version": 1, + "versionNonce": 616128182, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01294-9325", + "type": "ellipse", + "x": 188.0, + "y": 5192.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 707660498, + "version": 1, + "versionNonce": 580704925, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01295-8858", + "type": "text", + "x": 208.0, + "y": 5188.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1456576687, + "version": 1, + "versionNonce": 1928480422, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01296-7048", + "type": "ellipse", + "x": 188.0, + "y": 5244.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 2091366638, + "version": 1, + "versionNonce": 1896072899, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01297-9804", + "type": "text", + "x": 208.0, + "y": 5240.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 548929767, + "version": 1, + "versionNonce": 1133028068, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01298-6645", + "type": "text", + "x": 184.0, + "y": 5866.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1587897835, + "version": 1, + "versionNonce": 192682895, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01299-2761", + "type": "text", + "x": 184.0, + "y": 5892.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1414501597, + "version": 1, + "versionNonce": 1100804952, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01300-2027", + "type": "rectangle", + "x": 370.0, + "y": 5020.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1403976860, + "version": 1, + "versionNonce": 17932670, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01301-5163", + "type": "text", + "x": 400.0, + "y": 5038.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 969083565, + "version": 1, + "versionNonce": 913710751, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows + Activity states", + "originalText": "Workflows + Activity states", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01302-2007", + "type": "text", + "x": 400.0, + "y": 5069.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1220007569, + "version": 1, + "versionNonce": 1763047078, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Empty, loading, error, and compact layouts for the two in-scope areas.", + "originalText": "Empty, loading, error, and compact layouts for the two in-scope areas.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01303-5486", + "type": "rectangle", + "x": 400.0, + "y": 5136.0, + "width": 360.0, + "height": 218.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1996195455, + "version": 1, + "versionNonce": 959178900, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01304-9539", + "type": "text", + "x": 420.0, + "y": 5154.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1622829244, + "version": 1, + "versionNonce": 389599467, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "EMPTY WORKFLOWS", + "originalText": "EMPTY WORKFLOWS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01305-1142", + "type": "text", + "x": 420.0, + "y": 5198.0, + "width": 310.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1292911526, + "version": 1, + "versionNonce": 1329390748, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "No workflows yet", + "originalText": "No workflows yet", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01306-8231", + "type": "text", + "x": 420.0, + "y": 5236.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1715546669, + "version": 1, + "versionNonce": 1567239948, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Create your first workflow directly.", + "originalText": "Create your first workflow directly.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01307-2998", + "type": "rectangle", + "x": 420.0, + "y": 5286.0, + "width": 130.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 706173134, + "version": 1, + "versionNonce": 609629391, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01308-8035", + "type": "text", + "x": 428.0, + "y": 5295.0, + "width": 114.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 330386115, + "version": 1, + "versionNonce": 1641836457, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "New workflow", + "originalText": "New workflow", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01309-6060", + "type": "rectangle", + "x": 790.0, + "y": 5136.0, + "width": 360.0, + "height": 218.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1461648455, + "version": 1, + "versionNonce": 851965182, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01310-3106", + "type": "text", + "x": 810.0, + "y": 5154.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1640201482, + "version": 1, + "versionNonce": 1982628517, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "EMPTY ACTIVITY", + "originalText": "EMPTY ACTIVITY", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01311-4705", + "type": "text", + "x": 810.0, + "y": 5198.0, + "width": 310.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 671177584, + "version": 1, + "versionNonce": 1903356667, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "No Runs match", + "originalText": "No Runs match", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01312-3725", + "type": "text", + "x": 810.0, + "y": 5236.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1147559190, + "version": 1, + "versionNonce": 1929783729, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Change filters or run a workflow.", + "originalText": "Change filters or run a workflow.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01313-2162", + "type": "rectangle", + "x": 810.0, + "y": 5286.0, + "width": 130.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 2103813100, + "version": 1, + "versionNonce": 187422521, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01314-4459", + "type": "text", + "x": 818.0, + "y": 5295.0, + "width": 114.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1516062225, + "version": 1, + "versionNonce": 448568281, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Clear filters", + "originalText": "Clear filters", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01315-9227", + "type": "rectangle", + "x": 1180.0, + "y": 5136.0, + "width": 360.0, + "height": 218.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 442257385, + "version": 1, + "versionNonce": 1534173367, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01316-4243", + "type": "text", + "x": 1200.0, + "y": 5154.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 408718578, + "version": 1, + "versionNonce": 1254500644, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "LOADING ACTIVITY", + "originalText": "LOADING ACTIVITY", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01317-5946", + "type": "rectangle", + "x": 1204.0, + "y": 5198.0, + "width": 312.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#dbeafe", + "backgroundColor": "#dbeafe", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 435887527, + "version": 1, + "versionNonce": 1449171098, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01318-8385", + "type": "rectangle", + "x": 1204.0, + "y": 5240.0, + "width": 278.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#dbeafe", + "backgroundColor": "#dbeafe", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1457467303, + "version": 1, + "versionNonce": 1708913146, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01319-4270", + "type": "rectangle", + "x": 1204.0, + "y": 5282.0, + "width": 244.0, + "height": 18.0, + "angle": 0, + "strokeColor": "#dbeafe", + "backgroundColor": "#dbeafe", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1577885323, + "version": 1, + "versionNonce": 2122564949, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01320-9387", + "type": "rectangle", + "x": 400.0, + "y": 5386.0, + "width": 750.0, + "height": 174.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 800522707, + "version": 1, + "versionNonce": 1263772977, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01321-4635", + "type": "text", + "x": 422.0, + "y": 5408.0, + "width": 240.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1469966617, + "version": 1, + "versionNonce": 1803695655, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ACTIVITY UNAVAILABLE", + "originalText": "ACTIVITY UNAVAILABLE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01322-6285", + "type": "text", + "x": 422.0, + "y": 5444.0, + "width": 520.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 857020542, + "version": 1, + "versionNonce": 70855538, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Run history could not be loaded", + "originalText": "Run history could not be loaded", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01323-1472", + "type": "text", + "x": 422.0, + "y": 5482.0, + "width": 620.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 441373054, + "version": 1, + "versionNonce": 675039383, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Your Runs are still retained. Retry loading without losing search or filters.", + "originalText": "Your Runs are still retained. Retry loading without losing search or filters.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01324-3997", + "type": "rectangle", + "x": 978.0, + "y": 5494.0, + "width": 142.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 731156685, + "version": 1, + "versionNonce": 124216181, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01325-3735", + "type": "text", + "x": 986.0, + "y": 5503.0, + "width": 126.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 816806152, + "version": 1, + "versionNonce": 699341990, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry loading", + "originalText": "Retry loading", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01326-1133", + "type": "rectangle", + "x": 1196.0, + "y": 5386.0, + "width": 370.0, + "height": 438.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 271526854, + "version": 1, + "versionNonce": 1581295718, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01327-3243", + "type": "rectangle", + "x": 1196.0, + "y": 5386.0, + "width": 370.0, + "height": 58.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 90066969, + "version": 1, + "versionNonce": 963459001, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01328-8579", + "type": "text", + "x": 1214.0, + "y": 5404.0, + "width": 140.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 436874491, + "version": 1, + "versionNonce": 1339142088, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01329-9336", + "type": "rectangle", + "x": 1460.0, + "y": 5398.0, + "width": 88.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1858823328, + "version": 1, + "versionNonce": 1734939015, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01330-2873", + "type": "text", + "x": 1468.0, + "y": 5407.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 845796224, + "version": 1, + "versionNonce": 897798933, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Filters", + "originalText": "Filters", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01331-3684", + "type": "rectangle", + "x": 1210.0, + "y": 5462.0, + "width": 342.0, + "height": 92.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 639009042, + "version": 1, + "versionNonce": 1426534409, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01332-8818", + "type": "rectangle", + "x": 1224.0, + "y": 5476.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 1467512687, + "version": 1, + "versionNonce": 2142026268, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01333-2508", + "type": "text", + "x": 1234.0, + "y": 5482.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 899296608, + "version": 1, + "versionNonce": 1460826554, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Running", + "originalText": "Running", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01334-9491", + "type": "text", + "x": 1224.0, + "y": 5510.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1616168190, + "version": 1, + "versionNonce": 881955040, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Customer escalation triage", + "originalText": "Customer escalation triage", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01335-7083", + "type": "text", + "x": 1426.0, + "y": 5510.0, + "width": 100.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 212521355, + "version": 1, + "versionNonce": 299752724, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Draft \u00b7 r12", + "originalText": "Draft \u00b7 r12", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "right", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01336-2726", + "type": "rectangle", + "x": 1210.0, + "y": 5570.0, + "width": 342.0, + "height": 92.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 712657376, + "version": 1, + "versionNonce": 966260601, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01337-6447", + "type": "rectangle", + "x": 1224.0, + "y": 5584.0, + "width": 94.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 501507969, + "version": 1, + "versionNonce": 174670523, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01338-4506", + "type": "text", + "x": 1234.0, + "y": 5590.0, + "width": 74.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 927414737, + "version": 1, + "versionNonce": 456851652, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Needs you", + "originalText": "Needs you", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01339-3827", + "type": "text", + "x": 1224.0, + "y": 5618.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 713187849, + "version": 1, + "versionNonce": 780352816, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Invoice follow-up", + "originalText": "Invoice follow-up", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01340-9862", + "type": "text", + "x": 1426.0, + "y": 5618.0, + "width": 100.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1542864462, + "version": 1, + "versionNonce": 1876495651, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published \u00b7 v4", + "originalText": "Published \u00b7 v4", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "right", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01341-7236", + "type": "rectangle", + "x": 1210.0, + "y": 5678.0, + "width": 342.0, + "height": 92.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 2021087663, + "version": 1, + "versionNonce": 57507750, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01342-6115", + "type": "rectangle", + "x": 1224.0, + "y": 5692.0, + "width": 70.8, + "height": 28.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": { + "type": 3 + }, + "seed": 122460687, + "version": 1, + "versionNonce": 1327505561, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01343-9096", + "type": "text", + "x": 1234.0, + "y": 5698.0, + "width": 50.8, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1285392862, + "version": 1, + "versionNonce": 1639697066, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Failed", + "originalText": "Failed", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01344-6566", + "type": "text", + "x": 1224.0, + "y": 5726.0, + "width": 210.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 652403333, + "version": 1, + "versionNonce": 623668003, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Nightly order sync", + "originalText": "Nightly order sync", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01345-9119", + "type": "text", + "x": 1426.0, + "y": 5726.0, + "width": 100.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1201163218, + "version": 1, + "versionNonce": 1666422737, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Published \u00b7 v9", + "originalText": "Published \u00b7 v9", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "right", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01346-6639", + "type": "text", + "x": 400.0, + "y": 5886.0, + "width": 820.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-12" + ], + "frameId": "frame-01285-9253", + "roundness": null, + "seed": 1448887915, + "version": 1, + "versionNonce": 325478459, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Compact layouts preserve status, workflow, revision, and recovery actions before secondary metrics.", + "originalText": "Compact layouts preserve status, workflow, revision, and recovery actions before secondary metrics.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01347-2804", + "type": "frame", + "x": 1920.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1533077920, + "version": 1, + "versionNonce": 854519233, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "14 Settings - AI defaults" + }, + { + "id": "r-01349-4279", + "type": "rectangle", + "x": 1920.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 235997616, + "version": 1, + "versionNonce": 1108047664, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01350-4146", + "type": "rectangle", + "x": 1920.0, + "y": 5020.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 235051775, + "version": 1, + "versionNonce": 1958461662, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01351-6493", + "type": "text", + "x": 1944.0, + "y": 5044.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1569738610, + "version": 1, + "versionNonce": 995855571, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01352-3617", + "type": "text", + "x": 1944.0, + "y": 5073.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1196677308, + "version": 1, + "versionNonce": 809040478, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01353-4144", + "type": "ellipse", + "x": 1948.0, + "y": 5140.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1234709496, + "version": 1, + "versionNonce": 892732285, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01354-1233", + "type": "text", + "x": 1968.0, + "y": 5136.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 564233452, + "version": 1, + "versionNonce": 1039279757, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01355-1456", + "type": "ellipse", + "x": 1948.0, + "y": 5192.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1752785355, + "version": 1, + "versionNonce": 273852382, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01356-6305", + "type": "text", + "x": 1968.0, + "y": 5188.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 195088846, + "version": 1, + "versionNonce": 303644954, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01357-8161", + "type": "rectangle", + "x": 1932.0, + "y": 5232.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": { + "type": 3 + }, + "seed": 1154511956, + "version": 1, + "versionNonce": 1687869133, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01358-9303", + "type": "ellipse", + "x": 1948.0, + "y": 5244.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 907222365, + "version": 1, + "versionNonce": 1144244503, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01359-9807", + "type": "text", + "x": 1968.0, + "y": 5240.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 238830539, + "version": 1, + "versionNonce": 1339332096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01360-3862", + "type": "text", + "x": 1944.0, + "y": 5866.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1851320176, + "version": 1, + "versionNonce": 1364796261, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01361-9750", + "type": "text", + "x": 1944.0, + "y": 5892.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1040103525, + "version": 1, + "versionNonce": 1563104544, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01362-6774", + "type": "rectangle", + "x": 2130.0, + "y": 5020.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1375633141, + "version": 1, + "versionNonce": 808956731, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01363-4783", + "type": "text", + "x": 2160.0, + "y": 5038.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1140975957, + "version": 1, + "versionNonce": 1864936054, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01364-7700", + "type": "text", + "x": 2160.0, + "y": 5069.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1660488457, + "version": 1, + "versionNonce": 2132496547, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Personal defaults and access.", + "originalText": "Personal defaults and access.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01365-6831", + "type": "rectangle", + "x": 2156.0, + "y": 5136.0, + "width": 176.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#eff8ff", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": { + "type": 3 + }, + "seed": 1228429804, + "version": 1, + "versionNonce": 628430253, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01366-7358", + "type": "text", + "x": 2168.0, + "y": 5148.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1770242956, + "version": 1, + "versionNonce": 547850179, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01367-1494", + "type": "text", + "x": 2204.0, + "y": 5147.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1473453840, + "version": 1, + "versionNonce": 594590762, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01368-1586", + "type": "text", + "x": 2168.0, + "y": 5196.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1162335614, + "version": 1, + "versionNonce": 1537169262, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ID", + "originalText": "ID", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01369-7164", + "type": "text", + "x": 2204.0, + "y": 5195.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1330148973, + "version": 1, + "versionNonce": 2099461800, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01370-5509", + "type": "text", + "x": 2168.0, + "y": 5244.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1059882503, + "version": 1, + "versionNonce": 404781872, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "", + "originalText": "", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01371-3657", + "type": "text", + "x": 2204.0, + "y": 5243.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1821916848, + "version": 1, + "versionNonce": 253145521, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01372-2410", + "type": "text", + "x": 2366.0, + "y": 5136.0, + "width": 360.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1546359889, + "version": 1, + "versionNonce": 1697836586, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01373-9691", + "type": "text", + "x": 2366.0, + "y": 5172.0, + "width": 650.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 578933374, + "version": 1, + "versionNonce": 2042262429, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Choose the service and model used by new Chat, Studio, and global tool sessions without an override.", + "originalText": "Choose the service and model used by new Chat, Studio, and global tool sessions without an override.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01374-3766", + "type": "line", + "x": 2366.0, + "y": 5210.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 845071362, + "version": 1, + "versionNonce": 1616552981, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01375-1947", + "type": "text", + "x": 2366.0, + "y": 5258.0, + "width": 220.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 438466788, + "version": 1, + "versionNonce": 1220833202, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Preferred service", + "originalText": "Preferred service", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01376-5009", + "type": "text", + "x": 2366.0, + "y": 5286.0, + "width": 230.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1341085039, + "version": 1, + "versionNonce": 1323915280, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Gateway or exact connected service.", + "originalText": "Gateway or exact connected service.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01377-6547", + "type": "rectangle", + "x": 2636.0, + "y": 5248.0, + "width": 694.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": { + "type": 3 + }, + "seed": 503970770, + "version": 1, + "versionNonce": 1379977860, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01378-8546", + "type": "text", + "x": 2652.0, + "y": 5263.0, + "width": 654.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 239559871, + "version": 1, + "versionNonce": 1730836008, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NyxID Gateway", + "originalText": "NyxID Gateway", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01379-2664", + "type": "line", + "x": 2366.0, + "y": 5330.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 28262857, + "version": 1, + "versionNonce": 1757342685, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01380-5854", + "type": "text", + "x": 2366.0, + "y": 5362.0, + "width": 220.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 967889422, + "version": 1, + "versionNonce": 1381037751, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Default model", + "originalText": "Default model", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01381-4349", + "type": "text", + "x": 2366.0, + "y": 5390.0, + "width": 230.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1604850960, + "version": 1, + "versionNonce": 447205049, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Leave unset to use the service default.", + "originalText": "Leave unset to use the service default.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01382-4793", + "type": "rectangle", + "x": 2636.0, + "y": 5352.0, + "width": 694.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": { + "type": 3 + }, + "seed": 884669658, + "version": 1, + "versionNonce": 227123271, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01383-9722", + "type": "text", + "x": 2652.0, + "y": 5367.0, + "width": 654.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 762863685, + "version": 1, + "versionNonce": 669710784, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "gpt-4o-mini", + "originalText": "gpt-4o-mini", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01384-5014", + "type": "line", + "x": 2366.0, + "y": 5434.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-13" + ], + "frameId": "frame-01347-2804", + "roundness": null, + "seed": 1893589099, + "version": 1, + "versionNonce": 392155568, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "frame-01385-8489", + "type": "frame", + "x": 3680.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1983501480, + "version": 1, + "versionNonce": 1920796021, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "15 Settings - save and recovery states" + }, + { + "id": "r-01387-2030", + "type": "rectangle", + "x": 3680.0, + "y": 5020.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 63740086, + "version": 1, + "versionNonce": 1382093752, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01388-5164", + "type": "rectangle", + "x": 3680.0, + "y": 5020.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1519159249, + "version": 1, + "versionNonce": 1596157500, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01389-6193", + "type": "text", + "x": 3704.0, + "y": 5044.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 63969348, + "version": 1, + "versionNonce": 1234395593, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01390-9162", + "type": "text", + "x": 3704.0, + "y": 5073.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 820445153, + "version": 1, + "versionNonce": 1582892083, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01391-6741", + "type": "ellipse", + "x": 3708.0, + "y": 5140.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1618358921, + "version": 1, + "versionNonce": 2084837080, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01392-6050", + "type": "text", + "x": 3728.0, + "y": 5136.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 2097232794, + "version": 1, + "versionNonce": 835295425, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01393-8627", + "type": "ellipse", + "x": 3708.0, + "y": 5192.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1981694405, + "version": 1, + "versionNonce": 284850049, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01394-5635", + "type": "text", + "x": 3728.0, + "y": 5188.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1324982721, + "version": 1, + "versionNonce": 669024849, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01395-6551", + "type": "rectangle", + "x": 3692.0, + "y": 5232.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 288158373, + "version": 1, + "versionNonce": 505424483, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01396-1871", + "type": "ellipse", + "x": 3708.0, + "y": 5244.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1289805619, + "version": 1, + "versionNonce": 1968801829, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01397-8122", + "type": "text", + "x": 3728.0, + "y": 5240.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1439073919, + "version": 1, + "versionNonce": 460066283, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01398-4057", + "type": "text", + "x": 3704.0, + "y": 5866.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 855073383, + "version": 1, + "versionNonce": 316717962, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01399-7525", + "type": "text", + "x": 3704.0, + "y": 5892.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 641187854, + "version": 1, + "versionNonce": 1821823180, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01400-2312", + "type": "rectangle", + "x": 3890.0, + "y": 5020.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1025748692, + "version": 1, + "versionNonce": 382541464, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01401-8313", + "type": "text", + "x": 3920.0, + "y": 5038.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1136551013, + "version": 1, + "versionNonce": 265510148, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings states", + "originalText": "Settings states", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01402-8945", + "type": "text", + "x": 3920.0, + "y": 5069.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1240674555, + "version": 1, + "versionNonce": 1634944198, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Dirty, accepted, fallback, and catalog recovery without dashboard noise.", + "originalText": "Dirty, accepted, fallback, and catalog recovery without dashboard noise.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01403-7394", + "type": "rectangle", + "x": 3916.0, + "y": 5136.0, + "width": 176.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#eff8ff", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 337155779, + "version": 1, + "versionNonce": 33651577, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01404-6764", + "type": "text", + "x": 3928.0, + "y": 5148.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1188764318, + "version": 1, + "versionNonce": 449414398, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01405-2664", + "type": "text", + "x": 3964.0, + "y": 5147.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 767626005, + "version": 1, + "versionNonce": 765290798, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01406-4555", + "type": "text", + "x": 3928.0, + "y": 5196.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1304795943, + "version": 1, + "versionNonce": 238392434, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ID", + "originalText": "ID", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01407-9252", + "type": "text", + "x": 3964.0, + "y": 5195.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 669924908, + "version": 1, + "versionNonce": 1321580823, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01408-3484", + "type": "text", + "x": 3928.0, + "y": 5244.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 296116468, + "version": 1, + "versionNonce": 1587498787, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "", + "originalText": "", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01409-4114", + "type": "text", + "x": 3964.0, + "y": 5243.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1121012824, + "version": 1, + "versionNonce": 1848762673, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01410-7008", + "type": "text", + "x": 4126.0, + "y": 5136.0, + "width": 340.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1754221974, + "version": 1, + "versionNonce": 143322266, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01411-5221", + "type": "rectangle", + "x": 4964.0, + "y": 5136.0, + "width": 78.6, + "height": 28.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1055506233, + "version": 1, + "versionNonce": 910456120, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01412-4723", + "type": "text", + "x": 4974.0, + "y": 5142.0, + "width": 58.599999999999994, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 41334996, + "version": 1, + "versionNonce": 542713502, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Unsaved", + "originalText": "Unsaved", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01413-6885", + "type": "line", + "x": 4126.0, + "y": 5194.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 123653659, + "version": 1, + "versionNonce": 848274341, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "r-01414-4180", + "type": "rectangle", + "x": 4126.0, + "y": 5228.0, + "width": 309.3333333333333, + "height": 218.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1144335061, + "version": 1, + "versionNonce": 180028715, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01415-3873", + "type": "text", + "x": 4142.0, + "y": 5244.0, + "width": 277.3333333333333, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 2114741770, + "version": 1, + "versionNonce": 794121747, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "UNSAVED", + "originalText": "UNSAVED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01416-6071", + "type": "text", + "x": 4142.0, + "y": 5280.0, + "width": 277.3333333333333, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1022692486, + "version": 1, + "versionNonce": 1684613620, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Sticky save bar appears", + "originalText": "Sticky save bar appears", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01417-3736", + "type": "text", + "x": 4142.0, + "y": 5316.0, + "width": 277.3333333333333, + "height": 20.3, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1600234081, + "version": 1, + "versionNonce": 259607857, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Discard and Save changes stay close to the edited defaults.", + "originalText": "Discard and Save changes stay close to the edited defaults.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.45 + }, + { + "id": "r-01418-2599", + "type": "rectangle", + "x": 4142.0, + "y": 5394.0, + "width": 92.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 814948283, + "version": 1, + "versionNonce": 273070971, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01419-2195", + "type": "text", + "x": 4150.0, + "y": 5403.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 531244682, + "version": 1, + "versionNonce": 1069602640, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Discard", + "originalText": "Discard", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01420-8868", + "type": "rectangle", + "x": 4244.0, + "y": 5394.0, + "width": 122.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 530062556, + "version": 1, + "versionNonce": 574008512, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01421-3479", + "type": "text", + "x": 4252.0, + "y": 5403.0, + "width": 106.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1770321324, + "version": 1, + "versionNonce": 1319312186, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save changes", + "originalText": "Save changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01422-9696", + "type": "rectangle", + "x": 4453.333333333333, + "y": 5228.0, + "width": 309.3333333333333, + "height": 218.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1613802427, + "version": 1, + "versionNonce": 48210767, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01423-5279", + "type": "text", + "x": 4469.333333333333, + "y": 5244.0, + "width": 277.3333333333333, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1783192645, + "version": 1, + "versionNonce": 768662865, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ACCEPTED", + "originalText": "ACCEPTED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01424-3417", + "type": "text", + "x": 4469.333333333333, + "y": 5280.0, + "width": 277.3333333333333, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 139661205, + "version": 1, + "versionNonce": 2106079533, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Confirming saved values", + "originalText": "Confirming saved values", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01425-1979", + "type": "text", + "x": 4469.333333333333, + "y": 5316.0, + "width": 277.3333333333333, + "height": 20.3, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 303950440, + "version": 1, + "versionNonce": 1979590044, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Keep the submitted exact service visible until the committed values are observed.", + "originalText": "Keep the submitted exact service visible until the committed values are observed.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.45 + }, + { + "id": "r-01426-2879", + "type": "rectangle", + "x": 4469.333333333333, + "y": 5394.0, + "width": 172.2, + "height": 28.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 912800381, + "version": 1, + "versionNonce": 671836540, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01427-3949", + "type": "text", + "x": 4479.333333333333, + "y": 5400.0, + "width": 152.2, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 148947539, + "version": 1, + "versionNonce": 729742939, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Observation pending", + "originalText": "Observation pending", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01428-3241", + "type": "rectangle", + "x": 4780.666666666667, + "y": 5228.0, + "width": 309.3333333333333, + "height": 218.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1295900234, + "version": 1, + "versionNonce": 1592416572, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01429-1435", + "type": "text", + "x": 4796.666666666667, + "y": 5244.0, + "width": 277.3333333333333, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 736887116, + "version": 1, + "versionNonce": 384582791, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "FALLBACK", + "originalText": "FALLBACK", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01430-8537", + "type": "text", + "x": 4796.666666666667, + "y": 5280.0, + "width": 277.3333333333333, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1735073812, + "version": 1, + "versionNonce": 87612028, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Effective route changed", + "originalText": "Effective route changed", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01431-3379", + "type": "text", + "x": 4796.666666666667, + "y": 5316.0, + "width": 277.3333333333333, + "height": 20.3, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1321285048, + "version": 1, + "versionNonce": 655495687, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Show fallback only when the selected service is unavailable.", + "originalText": "Show fallback only when the selected service is unavailable.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.45 + }, + { + "id": "r-01432-4607", + "type": "rectangle", + "x": 4796.666666666667, + "y": 5394.0, + "width": 164.4, + "height": 28.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 2085603833, + "version": 1, + "versionNonce": 424923271, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01433-1166", + "type": "text", + "x": 4806.666666666667, + "y": 5400.0, + "width": 144.4, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1842049247, + "version": 1, + "versionNonce": 1023428090, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Effective: Gateway", + "originalText": "Effective: Gateway", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01434-6080", + "type": "rectangle", + "x": 4126.0, + "y": 5480.0, + "width": 473.0, + "height": 220.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1930724197, + "version": 1, + "versionNonce": 881209757, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01435-9281", + "type": "text", + "x": 4144.0, + "y": 5498.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 916507118, + "version": 1, + "versionNonce": 254043194, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "CATALOG UNAVAILABLE", + "originalText": "CATALOG UNAVAILABLE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01436-3967", + "type": "text", + "x": 4144.0, + "y": 5536.0, + "width": 380.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 874831448, + "version": 1, + "versionNonce": 800399372, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Keep stored defaults visible", + "originalText": "Keep stored defaults visible", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01437-9725", + "type": "text", + "x": 4144.0, + "y": 5572.0, + "width": 400.0, + "height": 20.3, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 306108310, + "version": 1, + "versionNonce": 435057985, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Disable service and model editing until provider inventory can be loaded.", + "originalText": "Disable service and model editing until provider inventory can be loaded.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.45 + }, + { + "id": "r-01438-4276", + "type": "rectangle", + "x": 4144.0, + "y": 5640.0, + "width": 88.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "#fffaeb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1297614898, + "version": 1, + "versionNonce": 7619594, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01439-9008", + "type": "text", + "x": 4152.0, + "y": 5649.0, + "width": 72.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b54708", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 755528004, + "version": 1, + "versionNonce": 1694202759, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Retry", + "originalText": "Retry", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01440-7984", + "type": "rectangle", + "x": 4617.0, + "y": 5480.0, + "width": 473.0, + "height": 220.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 171127586, + "version": 1, + "versionNonce": 1317110207, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01441-9882", + "type": "text", + "x": 4635.0, + "y": 5498.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1636343763, + "version": 1, + "versionNonce": 311141415, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SAVE FAILED", + "originalText": "SAVE FAILED", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01442-5545", + "type": "text", + "x": 4635.0, + "y": 5536.0, + "width": 380.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1457862153, + "version": 1, + "versionNonce": 1490482846, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Edits remain intact", + "originalText": "Edits remain intact", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01443-9386", + "type": "text", + "x": 4635.0, + "y": 5572.0, + "width": 400.0, + "height": 20.3, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1225023547, + "version": 1, + "versionNonce": 986366319, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "The exact service and model stay editable. Retry without rebuilding the draft.", + "originalText": "The exact service and model stay editable. Retry without rebuilding the draft.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.45 + }, + { + "id": "r-01444-1322", + "type": "rectangle", + "x": 4635.0, + "y": 5640.0, + "width": 126.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 2126538852, + "version": 1, + "versionNonce": 1485013824, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01445-9399", + "type": "text", + "x": 4643.0, + "y": 5649.0, + "width": 110.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 733711489, + "version": 1, + "versionNonce": 2090793514, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save changes", + "originalText": "Save changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01446-5383", + "type": "rectangle", + "x": 4126.0, + "y": 5782.0, + "width": 964.0, + "height": 72.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#1d2939", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1577761729, + "version": 1, + "versionNonce": 940431788, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01447-1234", + "type": "text", + "x": 4144.0, + "y": 5796.0, + "width": 280.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1086021772, + "version": 1, + "versionNonce": 1922292976, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Unsaved changes", + "originalText": "Unsaved changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01448-1371", + "type": "text", + "x": 4144.0, + "y": 5822.0, + "width": 420.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 1665378024, + "version": 1, + "versionNonce": 1178959511, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Your AI defaults have not been saved.", + "originalText": "Your AI defaults have not been saved.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01449-2999", + "type": "rectangle", + "x": 4846.0, + "y": 5799.0, + "width": 92.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "#1d2939", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 1813035084, + "version": 1, + "versionNonce": 691994728, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01450-3232", + "type": "text", + "x": 4854.0, + "y": 5808.0, + "width": 76.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 418608765, + "version": 1, + "versionNonce": 1531214311, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Discard", + "originalText": "Discard", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01451-8437", + "type": "rectangle", + "x": 4950.0, + "y": 5799.0, + "width": 122.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": { + "type": 3 + }, + "seed": 36465954, + "version": 1, + "versionNonce": 30130200, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01452-6912", + "type": "text", + "x": 4958.0, + "y": 5808.0, + "width": 106.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-14" + ], + "frameId": "frame-01385-8489", + "roundness": null, + "seed": 893299798, + "version": 1, + "versionNonce": 2130008099, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save changes", + "originalText": "Save changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01453-1672", + "type": "frame", + "x": 160.0, + "y": 6200.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 484681397, + "version": 1, + "versionNonce": 1133747951, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "16 Settings - Account" + }, + { + "id": "r-01455-5780", + "type": "rectangle", + "x": 160.0, + "y": 6200.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 468592318, + "version": 1, + "versionNonce": 1992747004, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01456-2657", + "type": "rectangle", + "x": 160.0, + "y": 6200.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1305307619, + "version": 1, + "versionNonce": 1395522119, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01457-8301", + "type": "text", + "x": 184.0, + "y": 6224.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1383550855, + "version": 1, + "versionNonce": 1263821023, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01458-8067", + "type": "text", + "x": 184.0, + "y": 6253.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1087579687, + "version": 1, + "versionNonce": 1002889266, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01459-5254", + "type": "ellipse", + "x": 188.0, + "y": 6320.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 367854330, + "version": 1, + "versionNonce": 18848022, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01460-8125", + "type": "text", + "x": 208.0, + "y": 6316.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 533488267, + "version": 1, + "versionNonce": 976581283, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01461-3945", + "type": "ellipse", + "x": 188.0, + "y": 6372.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 667538718, + "version": 1, + "versionNonce": 769404180, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01462-3246", + "type": "text", + "x": 208.0, + "y": 6368.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1748481628, + "version": 1, + "versionNonce": 1445292877, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01463-8163", + "type": "rectangle", + "x": 172.0, + "y": 6412.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": { + "type": 3 + }, + "seed": 57045393, + "version": 1, + "versionNonce": 493195431, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01464-4474", + "type": "ellipse", + "x": 188.0, + "y": 6424.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1744942403, + "version": 1, + "versionNonce": 937451252, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01465-7694", + "type": "text", + "x": 208.0, + "y": 6420.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 934483270, + "version": 1, + "versionNonce": 7146933, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01466-1695", + "type": "text", + "x": 184.0, + "y": 7046.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 778162051, + "version": 1, + "versionNonce": 2026150080, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01467-2649", + "type": "text", + "x": 184.0, + "y": 7072.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 990348876, + "version": 1, + "versionNonce": 1088532350, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01468-2809", + "type": "rectangle", + "x": 370.0, + "y": 6200.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 2089855605, + "version": 1, + "versionNonce": 1748557073, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01469-4990", + "type": "text", + "x": 400.0, + "y": 6218.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1871338950, + "version": 1, + "versionNonce": 808166133, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01470-7455", + "type": "text", + "x": 400.0, + "y": 6249.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1762342695, + "version": 1, + "versionNonce": 2109791759, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Identity and service access for this browser.", + "originalText": "Identity and service access for this browser.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01471-8175", + "type": "text", + "x": 408.0, + "y": 6328.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 273259037, + "version": 1, + "versionNonce": 676321177, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01472-2816", + "type": "text", + "x": 444.0, + "y": 6327.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 775824419, + "version": 1, + "versionNonce": 1884574902, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01473-3031", + "type": "rectangle", + "x": 396.0, + "y": 6364.0, + "width": 176.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#eff8ff", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": { + "type": 3 + }, + "seed": 462537833, + "version": 1, + "versionNonce": 1898455527, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01474-8577", + "type": "text", + "x": 408.0, + "y": 6376.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 666037192, + "version": 1, + "versionNonce": 1400673992, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ID", + "originalText": "ID", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01475-4196", + "type": "text", + "x": 444.0, + "y": 6375.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1983586580, + "version": 1, + "versionNonce": 929691373, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01476-6525", + "type": "text", + "x": 408.0, + "y": 6424.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 300003326, + "version": 1, + "versionNonce": 263921816, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "", + "originalText": "", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01477-6679", + "type": "text", + "x": 444.0, + "y": 6423.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1980031760, + "version": 1, + "versionNonce": 467220791, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01478-3999", + "type": "text", + "x": 606.0, + "y": 6316.0, + "width": 340.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 2059380956, + "version": 1, + "versionNonce": 1599607209, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01479-1540", + "type": "text", + "x": 606.0, + "y": 6352.0, + "width": 560.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 205415923, + "version": 1, + "versionNonce": 1162286098, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Identity and service access for this browser session.", + "originalText": "Identity and service access for this browser session.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01480-6336", + "type": "line", + "x": 606.0, + "y": 6390.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1396856795, + "version": 1, + "versionNonce": 43484434, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01481-6457", + "type": "text", + "x": 606.0, + "y": 6420.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 139008272, + "version": 1, + "versionNonce": 1546218043, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Profile", + "originalText": "Profile", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01482-5172", + "type": "rectangle", + "x": 1476.0, + "y": 6420.0, + "width": 94.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "#fef3f2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": { + "type": 3 + }, + "seed": 31843376, + "version": 1, + "versionNonce": 1936411226, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01483-1868", + "type": "text", + "x": 1484.0, + "y": 6429.0, + "width": 78.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#b42318", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 454233759, + "version": 1, + "versionNonce": 2131558527, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Sign out", + "originalText": "Sign out", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01484-8843", + "type": "ellipse", + "x": 606.0, + "y": 6468.0, + "width": 50.0, + "height": 50.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1788887638, + "version": 1, + "versionNonce": 847109655, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01485-9362", + "type": "text", + "x": 674.0, + "y": 6468.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 975632672, + "version": 1, + "versionNonce": 930484791, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Calvin Tan", + "originalText": "Calvin Tan", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01486-7924", + "type": "text", + "x": 674.0, + "y": 6498.0, + "width": 300.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1822855844, + "version": 1, + "versionNonce": 749759910, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "calvin@example.com", + "originalText": "calvin@example.com", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01487-7442", + "type": "rectangle", + "x": 606.0, + "y": 6542.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1165781030, + "version": 1, + "versionNonce": 822102335, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01488-3329", + "type": "text", + "x": 620.0, + "y": 6556.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1336095133, + "version": 1, + "versionNonce": 1850146034, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "USER ID", + "originalText": "USER ID", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01489-3098", + "type": "text", + "x": 620.0, + "y": 6586.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 230197460, + "version": 1, + "versionNonce": 198137655, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "usr_7c9142...e8a13f", + "originalText": "usr_7c9142...e8a13f", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01490-7475", + "type": "rectangle", + "x": 1088.0, + "y": 6542.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1008377440, + "version": 1, + "versionNonce": 1457404723, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01491-9349", + "type": "text", + "x": 1102.0, + "y": 6556.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 564475850, + "version": 1, + "versionNonce": 903770595, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ROLES", + "originalText": "ROLES", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01492-1494", + "type": "text", + "x": 1102.0, + "y": 6586.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 718840216, + "version": 1, + "versionNonce": 939179069, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "admin, operator", + "originalText": "admin, operator", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01493-5140", + "type": "rectangle", + "x": 606.0, + "y": 6618.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 722768783, + "version": 1, + "versionNonce": 357790906, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01494-7569", + "type": "text", + "x": 620.0, + "y": 6632.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 188536010, + "version": 1, + "versionNonce": 1513245803, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "GROUPS", + "originalText": "GROUPS", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01495-7832", + "type": "text", + "x": 620.0, + "y": 6662.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 371963551, + "version": 1, + "versionNonce": 88451668, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "platform", + "originalText": "platform", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01496-4927", + "type": "rectangle", + "x": 1088.0, + "y": 6618.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 779227246, + "version": 1, + "versionNonce": 1901134174, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01497-5762", + "type": "text", + "x": 1102.0, + "y": 6632.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1901101936, + "version": 1, + "versionNonce": 1321551567, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "EMAIL", + "originalText": "EMAIL", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01498-4732", + "type": "text", + "x": 1102.0, + "y": 6662.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 587120480, + "version": 1, + "versionNonce": 754463524, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Verified", + "originalText": "Verified", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01499-9048", + "type": "line", + "x": 606.0, + "y": 6698.0, + "width": 964.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 748748423, + "version": 1, + "versionNonce": 189893986, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 964.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01500-8307", + "type": "text", + "x": 606.0, + "y": 6720.0, + "width": 280.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1570820449, + "version": 1, + "versionNonce": 98170457, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Authentication", + "originalText": "Authentication", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01501-6892", + "type": "rectangle", + "x": 1362.0, + "y": 6720.0, + "width": 208.0, + "height": 38.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": { + "type": 3 + }, + "seed": 1727722122, + "version": 1, + "versionNonce": 1841634925, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01502-6647", + "type": "text", + "x": 1370.0, + "y": 6729.0, + "width": 192.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 151115467, + "version": 1, + "versionNonce": 1822014334, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Manage service access", + "originalText": "Manage service access", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01503-8579", + "type": "rectangle", + "x": 606.0, + "y": 6776.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 808373594, + "version": 1, + "versionNonce": 2074224923, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01504-4044", + "type": "text", + "x": 620.0, + "y": 6790.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 689745965, + "version": 1, + "versionNonce": 96319711, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SESSION EXPIRES", + "originalText": "SESSION EXPIRES", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01505-4745", + "type": "text", + "x": 620.0, + "y": 6820.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1019550595, + "version": 1, + "versionNonce": 1212116739, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "2026/8/4 18:30", + "originalText": "2026/8/4 18:30", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01506-2700", + "type": "rectangle", + "x": 1088.0, + "y": 6776.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 695952407, + "version": 1, + "versionNonce": 834356280, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01507-7459", + "type": "text", + "x": 1102.0, + "y": 6790.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 112978896, + "version": 1, + "versionNonce": 803436872, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "PROVIDER", + "originalText": "PROVIDER", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01508-6799", + "type": "text", + "x": 1102.0, + "y": 6820.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1251456328, + "version": 1, + "versionNonce": 1836881257, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NyxID", + "originalText": "NyxID", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01509-5755", + "type": "rectangle", + "x": 606.0, + "y": 6852.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 770153418, + "version": 1, + "versionNonce": 374692706, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01510-9613", + "type": "text", + "x": 620.0, + "y": 6866.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 1559801653, + "version": 1, + "versionNonce": 2102578667, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SCOPE", + "originalText": "SCOPE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01511-8521", + "type": "text", + "x": 620.0, + "y": 6896.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 188367656, + "version": 1, + "versionNonce": 682049254, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "openid profile email", + "originalText": "openid profile email", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01512-6563", + "type": "rectangle", + "x": 1088.0, + "y": 6852.0, + "width": 482.0, + "height": 76.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 751958461, + "version": 1, + "versionNonce": 187382147, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01513-8179", + "type": "text", + "x": 1102.0, + "y": 6866.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 637511676, + "version": 1, + "versionNonce": 1671783096, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "BROWSER TOKEN REFRESH", + "originalText": "BROWSER TOKEN REFRESH", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01514-3520", + "type": "text", + "x": 1102.0, + "y": 6896.0, + "width": 454.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 2144028933, + "version": 1, + "versionNonce": 929492645, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Disabled", + "originalText": "Disabled", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01515-3655", + "type": "rectangle", + "x": 606.0, + "y": 6986.0, + "width": 964.0, + "height": 66.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#f8fafc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": { + "type": 3 + }, + "seed": 1208874976, + "version": 1, + "versionNonce": 717741904, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01516-4321", + "type": "text", + "x": 622.0, + "y": 7000.0, + "width": 180.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 512864919, + "version": 1, + "versionNonce": 281932279, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SIGNED-OUT STATE", + "originalText": "SIGNED-OUT STATE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01517-1664", + "type": "text", + "x": 820.0, + "y": 7000.0, + "width": 560.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-15" + ], + "frameId": "frame-01453-1672", + "roundness": null, + "seed": 144813878, + "version": 1, + "versionNonce": 380319714, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Replace identity claims with No active session and a Sign in action.", + "originalText": "Replace identity claims with No active session and a Sign in action.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "frame-01518-1658", + "type": "frame", + "x": 1920.0, + "y": 6200.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1843727536, + "version": 1, + "versionNonce": 759803996, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "name": "17 Settings - Advanced and responsive" + }, + { + "id": "r-01520-7648", + "type": "rectangle", + "x": 1920.0, + "y": 6200.0, + "width": 1440.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1350669967, + "version": 1, + "versionNonce": 266805915, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01521-9270", + "type": "rectangle", + "x": 1920.0, + "y": 6200.0, + "width": 210.0, + "height": 920.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1823625113, + "version": 1, + "versionNonce": 2015076333, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01522-4974", + "type": "text", + "x": 1944.0, + "y": 6224.0, + "width": 160.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1716522767, + "version": 1, + "versionNonce": 1440354968, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AEVATAR", + "originalText": "AEVATAR", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01523-7816", + "type": "text", + "x": 1944.0, + "y": 6253.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1696312985, + "version": 1, + "versionNonce": 1863203555, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AUTOMATION", + "originalText": "AUTOMATION", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01524-4006", + "type": "ellipse", + "x": 1948.0, + "y": 6320.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 383968405, + "version": 1, + "versionNonce": 2054788935, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01525-8830", + "type": "text", + "x": 1968.0, + "y": 6316.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 459213693, + "version": 1, + "versionNonce": 1885640492, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workflows", + "originalText": "Workflows", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "e-01526-5152", + "type": "ellipse", + "x": 1948.0, + "y": 6372.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "#98a2b3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 565876042, + "version": 1, + "versionNonce": 1981344992, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01527-2700", + "type": "text", + "x": 1968.0, + "y": 6368.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1210681185, + "version": 1, + "versionNonce": 799725216, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Activity", + "originalText": "Activity", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01528-3555", + "type": "rectangle", + "x": 1932.0, + "y": 6412.0, + "width": 186.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#344054", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 1063361436, + "version": 1, + "versionNonce": 71939005, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "e-01529-3756", + "type": "ellipse", + "x": 1948.0, + "y": 6424.0, + "width": 10.0, + "height": 10.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1501286945, + "version": 1, + "versionNonce": 1028853732, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01530-2973", + "type": "text", + "x": 1968.0, + "y": 6420.0, + "width": 130.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 2116555255, + "version": 1, + "versionNonce": 1646361413, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01531-1346", + "type": "text", + "x": 1944.0, + "y": 7046.0, + "width": 150.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 38798154, + "version": 1, + "versionNonce": 1453992633, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Workspace", + "originalText": "Workspace", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01532-8354", + "type": "text", + "x": 1944.0, + "y": 7072.0, + "width": 160.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1134749211, + "version": 1, + "versionNonce": 904670745, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Acme Operations", + "originalText": "Acme Operations", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01533-1921", + "type": "rectangle", + "x": 2130.0, + "y": 6200.0, + "width": 1230.0, + "height": 82.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1638152854, + "version": 1, + "versionNonce": 1168336161, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01534-6748", + "type": "text", + "x": 2160.0, + "y": 6218.0, + "width": 620.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1893680968, + "version": 1, + "versionNonce": 1342045319, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01535-9963", + "type": "text", + "x": 2160.0, + "y": 6249.0, + "width": 700.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 910910478, + "version": 1, + "versionNonce": 2087184812, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced diagnostics stay separate from everyday defaults.", + "originalText": "Advanced diagnostics stay separate from everyday defaults.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01536-6888", + "type": "text", + "x": 2162.0, + "y": 6324.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 97109917, + "version": 1, + "versionNonce": 1412748522, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI", + "originalText": "AI", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01537-8732", + "type": "text", + "x": 2198.0, + "y": 6323.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1891843358, + "version": 1, + "versionNonce": 762639347, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01538-6759", + "type": "text", + "x": 2162.0, + "y": 6372.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1313256864, + "version": 1, + "versionNonce": 1160475485, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "ID", + "originalText": "ID", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01539-1478", + "type": "text", + "x": 2198.0, + "y": 6371.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 2064236470, + "version": 1, + "versionNonce": 1587712918, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01540-9764", + "type": "rectangle", + "x": 2150.0, + "y": 6408.0, + "width": 176.0, + "height": 40.0, + "angle": 0, + "strokeColor": "#eff8ff", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 1741366048, + "version": 1, + "versionNonce": 1717583814, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01541-1219", + "type": "text", + "x": 2162.0, + "y": 6420.0, + "width": 34.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1398392972, + "version": 1, + "versionNonce": 1127071780, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "", + "originalText": "", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01542-8026", + "type": "text", + "x": 2198.0, + "y": 6419.0, + "width": 118.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1018181984, + "version": 1, + "versionNonce": 1544846885, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01543-7376", + "type": "text", + "x": 2348.0, + "y": 6312.0, + "width": 280.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 946535221, + "version": 1, + "versionNonce": 707024409, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01544-6839", + "type": "text", + "x": 2348.0, + "y": 6348.0, + "width": 480.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 2107910375, + "version": 1, + "versionNonce": 1885975148, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Read-only runtime and routing details for troubleshooting.", + "originalText": "Read-only runtime and routing details for troubleshooting.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01545-7405", + "type": "line", + "x": 2348.0, + "y": 6386.0, + "width": 610.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1196059152, + "version": 1, + "versionNonce": 295144296, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 610.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01546-7331", + "type": "text", + "x": 2348.0, + "y": 6414.0, + "width": 260.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1921294946, + "version": 1, + "versionNonce": 1806287196, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Request values", + "originalText": "Request values", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01547-1312", + "type": "text", + "x": 2348.0, + "y": 6444.0, + "width": 460.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 777922115, + "version": 1, + "versionNonce": 766323898, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Effective values supplied to new requests.", + "originalText": "Effective values supplied to new requests.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01548-9906", + "type": "rectangle", + "x": 2348.0, + "y": 6486.0, + "width": 610.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1906280475, + "version": 1, + "versionNonce": 116070713, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01549-5902", + "type": "text", + "x": 2362.0, + "y": 6501.0, + "width": 270.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 745636606, + "version": 1, + "versionNonce": 1305923974, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x-aevatar-llm-route", + "originalText": "x-aevatar-llm-route", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01550-2030", + "type": "text", + "x": 2640.0, + "y": 6501.0, + "width": 304.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 955885848, + "version": 1, + "versionNonce": 888134969, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "nyxid_gateway", + "originalText": "nyxid_gateway", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01551-8316", + "type": "rectangle", + "x": 2348.0, + "y": 6534.0, + "width": 610.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1835155286, + "version": 1, + "versionNonce": 1871458236, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01552-7476", + "type": "text", + "x": 2362.0, + "y": 6549.0, + "width": 270.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1905761765, + "version": 1, + "versionNonce": 819486045, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "x-aevatar-llm-model", + "originalText": "x-aevatar-llm-model", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01553-8436", + "type": "text", + "x": 2640.0, + "y": 6549.0, + "width": 304.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 304076748, + "version": 1, + "versionNonce": 1897790974, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "gpt-4o-mini", + "originalText": "gpt-4o-mini", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01554-6364", + "type": "rectangle", + "x": 2348.0, + "y": 6582.0, + "width": 610.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 613684243, + "version": 1, + "versionNonce": 269946591, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01555-5481", + "type": "text", + "x": 2362.0, + "y": 6597.0, + "width": 270.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 24063485, + "version": 1, + "versionNonce": 565957481, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "studio.runtime_base_url", + "originalText": "studio.runtime_base_url", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01556-4814", + "type": "text", + "x": 2640.0, + "y": 6597.0, + "width": 304.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 895531112, + "version": 1, + "versionNonce": 1867121743, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "http://127.0.0.1:5080", + "originalText": "http://127.0.0.1:5080", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01557-9525", + "type": "rectangle", + "x": 2348.0, + "y": 6630.0, + "width": 610.0, + "height": 48.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1310909508, + "version": 1, + "versionNonce": 1476657748, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01558-4634", + "type": "text", + "x": 2362.0, + "y": 6645.0, + "width": 270.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 446097990, + "version": 1, + "versionNonce": 1221844558, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "aevatar.runtime_mode", + "originalText": "aevatar.runtime_mode", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01559-1277", + "type": "text", + "x": 2640.0, + "y": 6645.0, + "width": 304.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#98a2b3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1919714662, + "version": 1, + "versionNonce": 2098068699, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "local", + "originalText": "local", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01560-5106", + "type": "rectangle", + "x": 2988.0, + "y": 6310.0, + "width": 344.0, + "height": 774.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 513121372, + "version": 1, + "versionNonce": 592051364, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "r-01561-5394", + "type": "rectangle", + "x": 2988.0, + "y": 6310.0, + "width": 344.0, + "height": 58.0, + "angle": 0, + "strokeColor": "#101828", + "backgroundColor": "#101828", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 274844987, + "version": 1, + "versionNonce": 1874463630, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01562-3774", + "type": "text", + "x": 3002.0, + "y": 6328.0, + "width": 120.0, + "height": 20.0, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1476828694, + "version": 1, + "versionNonce": 723617535, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 16, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01563-2340", + "type": "text", + "x": 3002.0, + "y": 6390.0, + "width": 180.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1429033534, + "version": 1, + "versionNonce": 998465552, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Settings", + "originalText": "Settings", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01564-3419", + "type": "text", + "x": 3002.0, + "y": 6426.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1246125999, + "version": 1, + "versionNonce": 394236100, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Personal defaults and access.", + "originalText": "Personal defaults and access.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01565-1944", + "type": "rectangle", + "x": 2998.0, + "y": 6476.0, + "width": 108.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#eff8ff", + "backgroundColor": "#eff8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 956673298, + "version": 1, + "versionNonce": 2071922083, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01566-5125", + "type": "text", + "x": 3004.0, + "y": 6488.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1146301641, + "version": 1, + "versionNonce": 756589554, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01567-6474", + "type": "text", + "x": 3112.0, + "y": 6488.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1201000195, + "version": 1, + "versionNonce": 208000512, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Account", + "originalText": "Account", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01568-6162", + "type": "text", + "x": 3220.0, + "y": 6488.0, + "width": 96.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1743977963, + "version": 1, + "versionNonce": 1664003700, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Advanced", + "originalText": "Advanced", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01569-2036", + "type": "line", + "x": 2998.0, + "y": 6524.0, + "width": 324.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1756494985, + "version": 1, + "versionNonce": 560266594, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 324.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01570-3045", + "type": "text", + "x": 3002.0, + "y": 6546.0, + "width": 220.0, + "height": 27.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1007623017, + "version": 1, + "versionNonce": 194347506, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "AI defaults", + "originalText": "AI defaults", + "fontSize": 22, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01571-3229", + "type": "text", + "x": 3002.0, + "y": 6584.0, + "width": 310.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 218801819, + "version": 1, + "versionNonce": 1410949115, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Service and model for new sessions without an override.", + "originalText": "Service and model for new sessions without an override.", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "l-01572-3519", + "type": "line", + "x": 3002.0, + "y": 6632.0, + "width": 316.0, + "height": 0.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 517778096, + "version": 1, + "versionNonce": 2082037072, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 316.0, + 0.0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "t-01573-6021", + "type": "text", + "x": 3002.0, + "y": 6658.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 935979578, + "version": 1, + "versionNonce": 365146095, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Preferred service", + "originalText": "Preferred service", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01574-4627", + "type": "text", + "x": 3002.0, + "y": 6686.0, + "width": 55.85999999999999, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1426330259, + "version": 1, + "versionNonce": 1606464868, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "SERVICE", + "originalText": "SERVICE", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01575-9329", + "type": "rectangle", + "x": 3002.0, + "y": 6708.0, + "width": 316.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 608742821, + "version": 1, + "versionNonce": 1999006717, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01576-3339", + "type": "text", + "x": 3014.0, + "y": 6719.0, + "width": 292.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1377267368, + "version": 1, + "versionNonce": 837200287, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "NyxID Gateway", + "originalText": "NyxID Gateway", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01577-6783", + "type": "text", + "x": 3002.0, + "y": 6782.0, + "width": 260.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 581428195, + "version": 1, + "versionNonce": 1516287839, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Default model", + "originalText": "Default model", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "t-01578-6884", + "type": "text", + "x": 3002.0, + "y": 6810.0, + "width": 39.9, + "height": 17.5, + "angle": 0, + "strokeColor": "#667085", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 969757150, + "version": 1, + "versionNonce": 1570372960, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "MODEL", + "originalText": "MODEL", + "fontSize": 14, + "fontFamily": 3, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01579-6755", + "type": "rectangle", + "x": 3002.0, + "y": 6832.0, + "width": 316.0, + "height": 42.0, + "angle": 0, + "strokeColor": "#d0d5dd", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 1721867008, + "version": 1, + "versionNonce": 265302696, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01580-3643", + "type": "text", + "x": 3014.0, + "y": 6843.0, + "width": 292.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#17202a", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 972630293, + "version": 1, + "versionNonce": 744269190, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "gpt-4o-mini", + "originalText": "gpt-4o-mini", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01581-7188", + "type": "rectangle", + "x": 3002.0, + "y": 6980.0, + "width": 316.0, + "height": 70.0, + "angle": 0, + "strokeColor": "#344054", + "backgroundColor": "#1d2939", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 485345586, + "version": 1, + "versionNonce": 106392578, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01582-2585", + "type": "text", + "x": 3014.0, + "y": 6992.0, + "width": 180.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 653522696, + "version": 1, + "versionNonce": 1024544547, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Unsaved changes", + "originalText": "Unsaved changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "r-01583-1459", + "type": "rectangle", + "x": 3190.0, + "y": 6996.0, + "width": 116.0, + "height": 34.0, + "angle": 0, + "strokeColor": "#175cd3", + "backgroundColor": "#175cd3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": { + "type": 3 + }, + "seed": 139191895, + "version": 1, + "versionNonce": 1791253054, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false + }, + { + "id": "t-01584-5947", + "type": "text", + "x": 3198.0, + "y": 7005.0, + "width": 100.0, + "height": 17.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "group-16" + ], + "frameId": "frame-01518-1658", + "roundness": null, + "seed": 1962603503, + "version": 1, + "versionNonce": 2037366862, + "isDeleted": false, + "boundElements": null, + "updated": 1, + "link": null, + "locked": false, + "text": "Save changes", + "originalText": "Save changes", + "fontSize": 14, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "autoResize": false, + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#eef2f6" + }, + "files": {} +} diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.gen.py b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.gen.py new file mode 100644 index 0000000000..b857bffa53 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.gen.py @@ -0,0 +1,1212 @@ +#!/usr/bin/env python3 +"""Generate the Workflow + Activity + Settings vNext Excalidraw board. + +The board implements the product decisions from the 2026-08-03 meeting: +- Workflow is the only user-authored resource in scope. +- Run is the only execution action. +- Every Run is retained in Activity, including draft revisions. +- Retry and Run again create linked records instead of rewriting history. +- Settings follows the current Aevatar Console LLM and Account behavior. +- The application navigation contains Workflows, Activity, and Settings. +""" + +from __future__ import annotations + +import json +import random +import re +from pathlib import Path + + +random.seed(20260803) + +OUT = Path(__file__).with_suffix("").with_suffix(".excalidraw") + +INK = "#17202a" +MUTED = "#667085" +FAINT = "#98a2b3" +LINE = "#d0d5dd" +SURFACE = "#ffffff" +SUBTLE = "#f8fafc" +SIDEBAR = "#101828" +BLUE = "#175cd3" +BLUE_BG = "#eff8ff" +GREEN = "#067647" +GREEN_BG = "#ecfdf3" +AMBER = "#b54708" +AMBER_BG = "#fffaeb" +RED = "#b42318" +RED_BG = "#fef3f2" +PURPLE = "#6941c6" +PURPLE_BG = "#f4f3ff" + +FONT_SANS = 1 +FONT_MONO = 3 +FS_SMALL = 14 +FS_BODY = 16 +FS_HEAD = 22 +FS_TITLE = 32 + +FRAME_W = 1440 +FRAME_H = 920 +GAP_X = 320 +GAP_Y = 260 +COLS = 3 +ORIGIN_X = 160 +ORIGIN_Y = 300 + +elements: list[dict] = [] +current_frame: str | None = None +current_group: str | None = None +sequence = 0 + + +def eid(prefix: str = "e") -> str: + global sequence + sequence += 1 + return f"{prefix}-{sequence:05d}-{random.randint(1000, 9999)}" + + +def base(kind: str, x: float, y: float, w: float, h: float, **kwargs) -> dict: + item = { + "id": kwargs.pop("id", eid(kind[:1])), + "type": kind, + "x": float(x), + "y": float(y), + "width": float(w), + "height": float(h), + "angle": 0, + "strokeColor": kwargs.pop("stroke", INK), + "backgroundColor": kwargs.pop("bg", "transparent"), + "fillStyle": "solid", + "strokeWidth": kwargs.pop("sw", 1), + "strokeStyle": kwargs.pop("style", "solid"), + "roughness": 0, + "opacity": 100, + "groupIds": [current_group] if current_group else [], + "frameId": kwargs.pop("frameId", current_frame), + "roundness": kwargs.pop("roundness", None), + "seed": random.randint(1, 2**31 - 1), + "version": 1, + "versionNonce": random.randint(1, 2**31 - 1), + "isDeleted": False, + "boundElements": None, + "updated": 1, + "link": None, + "locked": False, + } + item.update(kwargs) + return item + + +def rect(x: float, y: float, w: float, h: float, *, bg: str = "transparent", + stroke: str = LINE, radius: bool = True, style: str = "solid", sw: int = 1) -> dict: + item = base("rectangle", x, y, w, h, bg=bg, stroke=stroke, style=style, sw=sw) + if radius: + item["roundness"] = {"type": 3} + elements.append(item) + return item + + +def text(x: float, y: float, value: str, size: int = FS_BODY, color: str = INK, + *, font: int = FONT_SANS, width: float | None = None, + align: str = "left", line_height: float = 1.25) -> dict: + lines = value.split("\n") + if width is None: + width = max(18, max(len(line) for line in lines) * size * 0.57) + height = len(lines) * size * line_height + item = base("text", x, y, width, height, stroke=color) + item.update({ + "text": value, + "originalText": value, + "fontSize": size, + "fontFamily": font, + "textAlign": align, + "verticalAlign": "top", + "containerId": None, + "autoResize": False, + "lineHeight": line_height, + }) + elements.append(item) + return item + + +def line(x: float, y: float, w: float, h: float, *, color: str = LINE, + style: str = "solid", arrowhead: str | None = None, sw: int = 1) -> dict: + kind = "arrow" if arrowhead else "line" + item = base(kind, x, y, abs(w), abs(h), stroke=color, style=style, sw=sw) + item.update({ + "points": [[0, 0], [float(w), float(h)]], + "lastCommittedPoint": None, + "startBinding": None, + "endBinding": None, + "startArrowhead": None, + "endArrowhead": arrowhead, + }) + if arrowhead: + item["elbowed"] = False + elements.append(item) + return item + + +def dot(x: float, y: float, diameter: float, color: str, *, bg: str | None = None) -> dict: + item = base("ellipse", x, y, diameter, diameter, stroke=color, bg=bg or color) + elements.append(item) + return item + + +def button(x: float, y: float, w: float, label: str, *, primary: bool = False, + color: str = INK, bg: str = SURFACE, h: float = 38) -> None: + stroke = color + fill = color if primary else bg + rect(x, y, w, h, bg=fill, stroke=stroke) + text(x + 8, y + 9, label, FS_SMALL, SURFACE if primary else color, + width=w - 16, align="center") + + +def chip(x: float, y: float, label: str, *, color: str = MUTED, + bg: str = SURFACE, selected: bool = False) -> float: + w = max(62, len(label) * 8.2 + 24) + rect(x, y, w, 30, bg=(BLUE_BG if selected else bg), + stroke=(BLUE if selected else LINE)) + text(x + 10, y + 7, label, FS_SMALL, BLUE if selected else color, width=w - 20) + return x + w + 8 + + +def badge(x: float, y: float, label: str, status: str) -> float: + palette = { + "ok": (GREEN, GREEN_BG), + "run": (BLUE, BLUE_BG), + "wait": (AMBER, AMBER_BG), + "fail": (RED, RED_BG), + "info": (PURPLE, PURPLE_BG), + "muted": (MUTED, SUBTLE), + } + color, bg = palette[status] + w = max(68, len(label) * 7.8 + 24) + rect(x, y, w, 28, bg=bg, stroke=color) + text(x + 10, y + 6, label, FS_SMALL, color, width=w - 20) + return x + w + 8 + + +def field(x: float, y: float, w: float, label: str, value: str, + *, mono: bool = False, h: float = 42) -> None: + text(x, y, label.upper(), FS_SMALL, MUTED, font=FONT_MONO) + rect(x, y + 22, w, h, bg=SURFACE, stroke=LINE) + text(x + 12, y + 33, value, FS_SMALL, INK, + font=FONT_MONO if mono else FONT_SANS, width=w - 24) + + +def frame_position(index: int) -> tuple[int, int]: + return ( + ORIGIN_X + (index % COLS) * (FRAME_W + GAP_X), + ORIGIN_Y + (index // COLS) * (FRAME_H + GAP_Y), + ) + + +def begin_frame(index: int, name: str) -> tuple[int, int]: + global current_frame, current_group + x, y = frame_position(index) + fid = eid("frame") + frame_item = base("frame", x, y, FRAME_W, FRAME_H, id=fid, + stroke="#344054", bg="transparent", frameId=None) + frame_item["name"] = name + elements.append(frame_item) + current_frame = fid + current_group = f"group-{index:02d}" + rect(x, y, FRAME_W, FRAME_H, bg=SURFACE, stroke="#344054", radius=False, sw=2) + return x, y + + +def end_frame() -> None: + global current_frame, current_group + current_frame = None + current_group = None + + +def app_shell(fx: float, fy: float, active: str, *, title: str, + subtitle: str = "") -> tuple[float, float, float]: + sidebar_w = 210 + top_h = 82 + rect(fx, fy, sidebar_w, FRAME_H, bg=SIDEBAR, stroke=SIDEBAR, radius=False) + text(fx + 24, fy + 24, "AEVATAR", FS_HEAD, SURFACE, width=160) + text(fx + 24, fy + 53, "AUTOMATION", FS_SMALL, "#98a2b3", font=FONT_MONO, width=160) + nav_y = fy + 116 + for idx, item in enumerate(("Workflows", "Activity", "Settings")): + row_y = nav_y + idx * 52 + if item == active: + rect(fx + 12, row_y - 8, sidebar_w - 24, 42, bg="#344054", stroke="#344054") + dot(fx + 28, row_y + 4, 10, BLUE if item == active else FAINT) + text(fx + 48, row_y, item, FS_BODY, SURFACE if item == active else "#d0d5dd", width=130) + text(fx + 24, fy + FRAME_H - 74, "Workspace", FS_SMALL, "#98a2b3", width=150) + text(fx + 24, fy + FRAME_H - 48, "Acme Operations", FS_SMALL, SURFACE, width=160) + + content_x = fx + sidebar_w + content_w = FRAME_W - sidebar_w + rect(content_x, fy, content_w, top_h, bg=SURFACE, stroke=LINE, radius=False) + text(content_x + 30, fy + 18, title, FS_HEAD, INK, width=620) + if subtitle: + text(content_x + 30, fy + 49, subtitle, FS_SMALL, MUTED, width=700) + return content_x, fy + top_h, content_w + + +def table_header(x: float, y: float, widths: list[float], labels: list[str]) -> None: + rect(x, y, sum(widths), 42, bg=SUBTLE, stroke=LINE, radius=False) + cursor = x + for width, label in zip(widths, labels): + text(cursor + 14, y + 13, label.upper(), FS_SMALL, MUTED, + font=FONT_MONO, width=width - 28) + cursor += width + + +def workflow_row(x: float, y: float, name: str, description: str, revision: str, + last_run: str, run_status: str, state: str) -> None: + widths = [410, 170, 220, 150, 190] + rect(x, y, sum(widths), 82, bg=SURFACE, stroke=LINE, radius=False) + text(x + 16, y + 15, name, FS_BODY, INK, width=360) + text(x + 16, y + 43, description, FS_SMALL, MUTED, width=375) + cursor = x + widths[0] + text(cursor + 14, y + 28, revision, FS_SMALL, MUTED, font=FONT_MONO, width=140) + cursor += widths[1] + status_label = {"ok": "Succeeded", "run": "Running", "fail": "Failed", "muted": "Never run"}[run_status] + badge(cursor + 14, y + 26, status_label, run_status) + text(cursor + 115, y + 31, last_run, FS_SMALL, MUTED, width=95) + cursor += widths[2] + badge(cursor + 14, y + 26, state, "ok" if state == "Published" else "muted") + cursor += widths[3] + button(cursor + 12, y + 22, 72, "Run") + button(cursor + 94, y + 22, 76, "Open", color=BLUE, bg=BLUE_BG) + + +def activity_row(x: float, y: float, status: str, name: str, origin: str, + revision: str, when: str, took: str, usage: str, outcome: str) -> None: + widths = [105, 235, 120, 175, 115, 75, 90, 255] + rect(x, y, sum(widths), 70, bg=SURFACE, stroke=LINE, radius=False) + palette_key = {"Succeeded": "ok", "Running": "run", "Needs you": "wait", "Failed": "fail"}[status] + cursor = x + badge(cursor + 12, y + 21, status, palette_key) + cursor += widths[0] + text(cursor + 12, y + 14, name, FS_SMALL, INK, width=210) + text(cursor + 12, y + 39, origin, FS_SMALL, MUTED, width=210) + cursor += widths[1] + text(cursor + 12, y + 25, origin.split(" · ")[0], FS_SMALL, MUTED, width=96) + cursor += widths[2] + text(cursor + 12, y + 15, revision.split(" · ")[0], FS_SMALL, INK, width=150) + text(cursor + 12, y + 40, " · ".join(revision.split(" · ")[1:]), FS_SMALL, MUTED, font=FONT_MONO, width=150) + cursor += widths[3] + text(cursor + 12, y + 25, when, FS_SMALL, MUTED, width=92) + cursor += widths[4] + text(cursor + 8, y + 25, took, FS_SMALL, MUTED, font=FONT_MONO, width=60) + cursor += widths[5] + text(cursor + 8, y + 25, usage, FS_SMALL, MUTED, font=FONT_MONO, width=72) + cursor += widths[6] + text(cursor + 12, y + 15, outcome, FS_SMALL, INK, width=228) + text(cursor + 12, y + 40, "Open details", FS_SMALL, BLUE, width=228) + + +def node_appearance(kind: str) -> tuple[str, str]: + normalized = kind.casefold() + if "ai" in normalized: + return BLUE, "AI" + if "schedule" in normalized: + return PURPLE, "T" + if "condition" in normalized: + return "#9333ea", "C" + if "approval" in normalized: + return AMBER, "H" + if "validation" in normalized: + return RED, "V" + if any(token in normalized for token in ("data", "query", "xero", "warehouse")): + return "#0891b2", "D" + if any(token in normalized for token in ("message", "lark", "gmail")): + return "#16a34a", "I" + return MUTED, "{}" + + +def studio_node(x: float, y: float, name: str, kind: str, summary: str, + *, selected: bool = False, status: str | None = None) -> None: + color, icon = node_appearance(kind) + node_w = 214 + node_h = 126 + rect(x, y, node_w, node_h, bg=SURFACE, + stroke=color if selected else "#dbe3ee", sw=2 if selected else 1) + rect(x, y, 4, node_h, bg=color, stroke=color, radius=False) + dot(x - 6, y + 54, 12, color, bg=color) + dot(x + node_w - 6, y + 54, 12, color, bg=color) + rect(x + 14, y + 14, 34, 34, bg=BLUE_BG if color == BLUE else SUBTLE, + stroke=color) + text(x + 14, y + 23, icon, FS_SMALL, color, width=34, align="center") + text(x + 60, y + 13, name, FS_SMALL, INK, width=138) + text(x + 60, y + 39, kind, 12, MUTED, width=138) + line(x + 12, y + 62, node_w - 24, 0, color="#edf2f7") + text(x + 14, y + 76, summary, 12, MUTED, width=node_w - 28) + if status: + status_palette = "ok" if status == "Completed" else "run" if status == "Running" else "muted" + badge(x + 124, y + 88, status, status_palette) + + +def studio_canvas(cx: float, cy: float, cw: float, ch: float, + steps: list[tuple[str, str]], *, selected: int | None = None, + fields: list[tuple[str, str]] | None = None, + empty: bool = False, source: str = "", + statuses: list[str] | None = None) -> None: + canvas_x = cx + 10 + canvas_y = cy + 10 + canvas_w = cw - 20 + canvas_h = ch - 20 + rect(canvas_x, canvas_y, canvas_w, canvas_h, bg="#f7f9fc", stroke="#d8e0ea") + for grid_x in range(80, int(canvas_w), 120): + line(canvas_x + grid_x, canvas_y, 0, canvas_h, color="#edf2f7") + for grid_y in range(80, int(canvas_h), 120): + line(canvas_x, canvas_y + grid_y, canvas_w, 0, color="#edf2f7") + badge(canvas_x + 16, canvas_y + 16, f"Created from {source}", "info") + + if empty: + center_x = canvas_x + canvas_w / 2 + center_y = canvas_y + canvas_h / 2 + rect(center_x - 56, center_y - 86, 112, 112, + bg=SURFACE, stroke=FAINT, style="dashed") + text(center_x - 56, center_y - 58, "+", FS_TITLE, MUTED, + width=112, align="center") + text(center_x - 150, center_y + 44, "Add first step", FS_HEAD, INK, + width=300, align="center") + text(center_x - 220, center_y + 82, + "Start this workflow by adding the first step.", + FS_SMALL, MUTED, width=440, align="center") + button(canvas_x + 16, canvas_y + canvas_h - 128, 34, "+", color=MUTED, h=32) + button(canvas_x + 16, canvas_y + canvas_h - 92, 34, "-", color=MUTED, h=32) + button(canvas_x + 16, canvas_y + canvas_h - 56, 34, "Fit", color=MUTED, h=32) + return + + inspector_open = selected is not None and 0 <= selected < len(steps) + graph_w = canvas_w - (400 if inspector_open else 0) + node_w = 214 + positions: list[tuple[float, float]] = [] + if len(steps) <= 5 and not inspector_open: + gap = min(48, (graph_w - 56 - len(steps) * node_w) / max(1, len(steps) - 1)) + total_w = len(steps) * node_w + max(0, len(steps) - 1) * gap + start_x = canvas_x + (graph_w - total_w) / 2 + positions = [(start_x + idx * (node_w + gap), canvas_y + 260) + for idx in range(len(steps))] + else: + positions = [] + for idx in range(len(steps)): + if idx < 3: + positions.append((canvas_x + 44 + idx * 248, canvas_y + 112)) + else: + positions.append((canvas_x + 540, canvas_y + 112 + (idx - 2) * 236)) + + for idx in range(len(positions) - 1): + sx, sy = positions[idx] + tx, ty = positions[idx + 1] + line(sx + node_w, sy + 60, tx - (sx + node_w), ty - sy, + color="#94a3b8", arrowhead="arrow", sw=2) + + for idx, ((name, kind), (nx, ny)) in enumerate(zip(steps, positions)): + summary = fields[0][1] if idx == selected and fields else "Configuration ready" + studio_node(nx, ny, name, kind, summary, selected=idx == selected, + status=statuses[idx] if statuses and idx < len(statuses) else None) + + button(canvas_x + 16, canvas_y + canvas_h - 128, 34, "+", color=MUTED, h=32) + button(canvas_x + 16, canvas_y + canvas_h - 92, 34, "-", color=MUTED, h=32) + button(canvas_x + 16, canvas_y + canvas_h - 56, 34, "Fit", color=MUTED, h=32) + minimap_x = canvas_x + graph_w - 154 + minimap_y = canvas_y + canvas_h - 104 + rect(minimap_x, minimap_y, 138, 86, bg=SURFACE, stroke="#d8e0ea") + for idx, _ in enumerate(steps[:6]): + rect(minimap_x + 10 + (idx % 3) * 40, minimap_y + 16 + (idx // 3) * 28, + 28, 14, bg=SURFACE, stroke=BLUE) + + if not inspector_open: + return + selected_name, selected_kind = steps[selected] + panel_x = canvas_x + canvas_w - 390 + panel_w = 390 + rect(panel_x, canvas_y, panel_w, canvas_h, bg=SURFACE, stroke="#e5e7eb") + text(panel_x + 20, canvas_y + 18, "Node configuration", FS_BODY, INK, width=260) + text(panel_x + 20, canvas_y + 48, selected_name, FS_SMALL, MUTED, width=300) + text(panel_x + 344, canvas_y + 17, "x", FS_HEAD, MUTED, width=24, align="center") + line(panel_x, canvas_y + 76, panel_w, 0, color="#eef2f7") + field(panel_x + 20, canvas_y + 100, panel_w - 40, "Node name", selected_name) + field(panel_x + 20, canvas_y + 188, panel_w - 40, "Type", selected_kind) + for field_index, (label, value) in enumerate(fields or []): + field(panel_x + 20, canvas_y + 276 + field_index * 88, + panel_w - 40, label, value, h=58 if len(value) > 64 else 42) + line(panel_x, canvas_y + canvas_h - 62, panel_w, 0, color="#eef2f7") + button(panel_x + 194, canvas_y + canvas_h - 48, 78, "Delete", color=RED, h=34) + button(panel_x + 282, canvas_y + canvas_h - 48, 88, "Apply", + primary=True, color=BLUE, h=34) + + +def workflow_editor_frame(index: int, frame_name: str, *, title: str, + subtitle: str, source: str, + steps: list[tuple[str, str]], selected: int | None = None, + fields: list[tuple[str, str]] | None = None, + empty: bool = False) -> None: + fx, fy = begin_frame(index, frame_name) + cx, cy, cw = app_shell(fx, fy, "Workflows", title=title, subtitle=subtitle) + button(cx + cw - 510, fy + 24, 72, "Run", color=MUTED if empty else INK, h=32) + button(cx + cw - 428, fy + 24, 92, "Add node", color=INK, h=32) + button(cx + cw - 326, fy + 24, 92, "Edit YAML", color=INK, h=32) + button(cx + cw - 224, fy + 24, 82, "Save", primary=True, color=BLUE, h=32) + button(cx + cw - 132, fy + 24, 102, "Publish", color=MUTED if empty else INK, h=32) + studio_canvas(cx, cy, cw, FRAME_H - (cy - fy), steps, + selected=selected, fields=fields, empty=empty, source=source) + end_frame() + + +def settings_nav(x: float, y: float, active: str, *, mobile: bool = False) -> None: + labels = ("AI defaults", "Account", "Advanced") + if mobile: + tab_w = 108 + for idx, label in enumerate(labels): + tab_x = x + idx * tab_w + selected = label == active + if selected: + rect(tab_x, y, tab_w, 42, bg=BLUE_BG, stroke=BLUE_BG) + text(tab_x + 6, y + 12, label, FS_SMALL, + BLUE if selected else MUTED, width=tab_w - 12, align="center") + line(x, y + 48, tab_w * len(labels), 0, color=LINE) + return + + for idx, label in enumerate(labels): + row_y = y + idx * 48 + selected = label == active + if selected: + rect(x, row_y, 176, 40, bg=BLUE_BG, stroke=BLUE_BG) + icon = ("AI", "ID", "")[idx] + text(x + 12, row_y + 12, icon, FS_SMALL, + BLUE if selected else MUTED, font=FONT_MONO, width=34) + text(x + 48, row_y + 11, label, FS_SMALL, + BLUE if selected else MUTED, width=118) + + +def settings_panel_heading(x: float, y: float, w: float, title_value: str, + description: str = "") -> None: + text(x + 18, y + 16, title_value, FS_BODY, INK, width=w - 36) + if description: + text(x + 18, y + 42, description, FS_SMALL, MUTED, width=w - 36) + line(x, y + 72, w, 0, color=LINE) + + +# Board title and semantic contract +text(ORIGIN_X, 80, "Aevatar Workflow + Activity + Settings vNext", FS_TITLE, INK, width=1040) +text(ORIGIN_X, 132, + "One authoring resource. One Run action. One immutable Activity history.", + FS_HEAD, BLUE, width=980) +text(ORIGIN_X, 180, + "Primary path: Workflows -> direct draft -> Run -> Activity. Settings owns LLM defaults and browser identity.", + FS_BODY, MUTED, width=1180) + + +# 01 Workflows catalogue +fx, fy = begin_frame(0, "01 Workflows - catalogue") +cx, cy, cw = app_shell(fx, fy, "Workflows", title="Workflows", + subtitle="Create, edit, publish, and run automations.") +button(cx + cw - 174, fy + 22, 144, "New workflow", primary=True, color=BLUE) +field(cx + 30, cy + 26, 370, "Search", "Search workflows") +px = cx + 426 +for label, selected in (("All 5", True), ("Published 3", False), ("Drafts 2", False), ("Failing 1", False)): + px = chip(px, cy + 48, label, selected=selected) +table_x = cx + 30 +table_y = cy + 112 +table_header(table_x, table_y, [410, 170, 220, 150, 190], + ["Workflow", "Version", "Last run", "State", "Actions"]) +rows = [ + ("Weekly feedback digest", "Group feedback and post a weekly summary", "v7", "12 min ago", "ok", "Published"), + ("Customer escalation triage", "Classify urgent conversations and prepare replies", "draft r12", "4 min ago", "run", "Draft"), + ("Invoice follow-up", "Prepare overdue invoice reminders for approval", "v4", "42 min ago", "ok", "Published"), + ("Nightly order sync", "Move completed orders into the warehouse", "v9", "3:04 AM", "fail", "Published"), + ("Contract review", "Flag unusual clauses and prepare a review note", "draft r3", "-", "muted", "Draft"), +] +for idx, row in enumerate(rows): + workflow_row(table_x, table_y + 42 + idx * 82, *row) +text(table_x, fy + FRAME_H - 54, + "5 workflows | Every Run, including a draft revision, is retained in Activity.", + FS_SMALL, MUTED, width=760) +end_frame() + + +# 02 Direct Workflow creation +fx, fy = begin_frame(1, "02 New workflow - direct creation") +cx, cy, cw = app_shell(fx, fy, "Workflows", title="New workflow", + subtitle="Choose a starting point. Each option creates a workflow draft directly.") +button(cx + cw - 118, fy + 22, 88, "Cancel") +card_y = cy + 42 +cards = [ + ("Describe what you need", "Turn a plain-language goal into a reviewable first draft.", BLUE, BLUE_BG, "Describe"), + ("Start blank", "Open an empty workflow canvas and add the first node.", INK, SURFACE, "Start blank"), + ("Import YAML", "Create a draft from an existing workflow definition.", PURPLE, PURPLE_BG, "Import"), +] +for idx, (title, body, color, bg, action) in enumerate(cards): + x = cx + 30 + idx * 390 + rect(x, card_y, 362, 180, bg=bg, stroke=color if idx != 1 else LINE) + text(x + 22, card_y + 24, title, FS_HEAD, color, width=318) + text(x + 22, card_y + 64, body, FS_BODY, MUTED, width=310) + button(x + 22, card_y + 124, 130, action, primary=(idx == 0), color=color) +text(cx + 30, card_y + 226, "TEMPLATES", FS_SMALL, MUTED, font=FONT_MONO, width=180) +templates = [ + ("Weekly feedback digest", "6 steps", "Lark", "Used 240 times"), + ("Escalation triage", "9 steps", "Lark + Linear", "Used 180 times"), + ("Invoice follow-up", "11 steps", "Xero + Gmail", "Used 96 times"), + ("Standup digest", "5 steps", "Lark", "Used 88 times"), + ("On-call summary", "5 steps", "PagerDuty", "Used 61 times"), + ("Contract review", "7 steps", "Drive", "Used 44 times"), +] +for idx, item in enumerate(templates): + col = idx % 3 + row = idx // 3 + x = cx + 30 + col * 390 + y = card_y + 264 + row * 172 + rect(x, y, 362, 148, bg=SURFACE, stroke=LINE) + text(x + 18, y + 18, item[0], FS_BODY, INK, width=320) + text(x + 18, y + 48, f"{item[1]} | {item[2]}", FS_SMALL, MUTED, width=320) + text(x + 18, y + 78, item[3], FS_SMALL, MUTED, width=160) + button(x + 218, y + 92, 126, "Use template", color=BLUE, bg=BLUE_BG) +end_frame() + + +# 03-06 The four creation paths produce different Workflow documents. +workflow_editor_frame( + 2, "03 Describe - generated Workflow draft", + title="Monday feedback summary", + subtitle="Current draft · revision 1 · Saved just now", + source="Description", + steps=[ + ("Schedule every Monday", "Schedule"), + ("Collect recent feedback", "Lark messages"), + ("Group feedback themes", "AI task"), + ("Draft concise summary", "AI task"), + ("Post feedback summary", "Lark message"), + ], + selected=0, + fields=[("Frequency", "Every Monday at 09:00"), + ("Timezone", "Asia/Shanghai")], +) + +workflow_editor_frame( + 3, "04 Start blank - empty Workflow draft", + title="Untitled workflow", + subtitle="Current draft · revision 1 · Saved just now", + source="Blank", + steps=[], + empty=True, +) + +workflow_editor_frame( + 4, "05 Import YAML - imported Workflow draft", + title="Daily order exception report", + subtitle="Current draft · revision 1 · Imported just now", + source="Import", + steps=[ + ("Schedule every weekday", "Schedule"), + ("Find order exceptions", "Data query"), + ("Summarize exceptions", "AI task"), + ("Send operations summary", "Lark message"), + ], + selected=1, + fields=[("Source", "Orders"), + ("Filter", "status = exception")], +) + +workflow_editor_frame( + 5, "06 Template - populated Workflow draft", + title="Standup digest copy", + subtitle="Current draft · revision 1 · Saved just now", + source="Template", + steps=[ + ("Schedule every weekday", "Schedule"), + ("Collect contributor updates", "Lark messages"), + ("Draft standup digest", "AI task"), + ("Post standup digest", "Lark message"), + ], + selected=2, + fields=[("Instruction", "Group updates into completed, planned, and blocked."), + ("Tone", "Concise")], +) + + +# 07 Unified Run dialog +fx, fy = begin_frame(6, "07 Run - unified execution dialog") +cx, cy, cw = app_shell(fx, fy, "Workflows", title="Customer escalation triage", + subtitle="Draft revision 12 | Saved just now") +button(cx + cw - 510, fy + 24, 72, "Run", color=INK, h=32) +button(cx + cw - 428, fy + 24, 92, "Add node", color=INK, h=32) +button(cx + cw - 326, fy + 24, 92, "Edit YAML", color=INK, h=32) +button(cx + cw - 224, fy + 24, 82, "Save", primary=True, color=BLUE, h=32) +button(cx + cw - 132, fy + 24, 102, "Publish", color=INK, h=32) +studio_canvas(cx, cy, cw, FRAME_H - (cy - fy), [ + ("Receive conversation", "Lark message"), + ("Classify severity", "AI task"), + ("Route escalation", "Condition"), + ("Prepare reply", "AI task"), + ("Post response", "Lark message"), +], source="Description") +modal_x = cx + 260 +modal_y = cy + 38 +modal_w = 710 +rect(modal_x, modal_y, modal_w, 720, bg=SURFACE, stroke="#344054", sw=2) +text(modal_x + 28, modal_y + 26, "Run workflow", FS_HEAD, INK, width=450) +text(modal_x + 28, modal_y + 62, + "Confirm the revision, inputs, and external effects.", FS_SMALL, MUTED, width=520) +badge(modal_x + 28, modal_y + 102, "Current draft", "info") +text(modal_x + 154, modal_y + 108, "revision 12", FS_SMALL, PURPLE, + font=FONT_MONO, width=130) +line(modal_x + 28, modal_y + 144, modal_w - 56, 0, color=LINE) +field(modal_x + 28, modal_y + 168, modal_w - 56, "Workflow", "Customer escalation triage") +field(modal_x + 28, modal_y + 252, modal_w - 56, "Conversation", "support-thread-4821", mono=True) +field(modal_x + 28, modal_y + 336, (modal_w - 70) / 2, "Environment", "Production") +field(modal_x + 42 + (modal_w - 70) / 2, modal_y + 336, + (modal_w - 70) / 2, "Connections", "2 ready") +rect(modal_x + 28, modal_y + 430, modal_w - 56, 86, bg=AMBER_BG, stroke=AMBER) +text(modal_x + 46, modal_y + 448, "External effects", FS_BODY, AMBER, width=180) +text(modal_x + 46, modal_y + 477, + "May post a Lark reply and create a Linear issue.", FS_SMALL, INK, width=560) +rect(modal_x + 28, modal_y + 536, 18, 18, bg=BLUE, stroke=BLUE) +text(modal_x + 32, modal_y + 537, "x", FS_SMALL, SURFACE, width=12) +text(modal_x + 58, modal_y + 536, + "I understand this workflow may change external systems.", FS_SMALL, INK, width=590) +rect(modal_x + 28, modal_y + 574, modal_w - 56, 50, bg=BLUE_BG, stroke=BLUE) +text(modal_x + 46, modal_y + 590, + "This Run will be saved in Activity.", FS_SMALL, BLUE, width=500) +button(modal_x + modal_w - 232, modal_y + 652, 88, "Cancel") +button(modal_x + modal_w - 132, modal_y + 652, 104, "Run", primary=True, color=BLUE) +end_frame() + + +# 08 Running in the same Workflow Studio canvas +fx, fy = begin_frame(7, "08 Running draft - Studio canvas and Run console") +cx, cy, cw = app_shell(fx, fy, "Workflows", title="Customer escalation triage", + subtitle="Current draft · revision 12 · Run R-1042") +button(cx + cw - 510, fy + 24, 72, "Run", color=INK, h=32) +button(cx + cw - 428, fy + 24, 92, "Add node", color=INK, h=32) +button(cx + cw - 326, fy + 24, 92, "Edit YAML", color=INK, h=32) +button(cx + cw - 224, fy + 24, 82, "Save", primary=True, color=BLUE, h=32) +button(cx + cw - 132, fy + 24, 102, "Publish", color=INK, h=32) +running_steps = [ + ("Receive conversation", "Lark message"), + ("Classify severity", "AI task"), + ("Route escalation", "Condition"), + ("Prepare reply", "AI task"), + ("Post response", "Lark message"), +] +studio_canvas(cx, cy, cw, 570, running_steps, source="Description", + statuses=["Completed", "Completed", "Completed", "Running", "Queued"]) +console_y = cy + 570 +rect(cx, console_y, cw, FRAME_H - (console_y - fy), bg=SURFACE, stroke="#d8e0ea", radius=False) +rect(cx, console_y - 6, cw, 6, bg="#cbd5e1", stroke="#cbd5e1", radius=False) +text(cx + 22, console_y + 18, "Run console", FS_BODY, INK, width=180) +badge(cx + 142, console_y + 14, "Running", "run") +text(cx + 248, console_y + 21, + "R-1042 · Current draft · revision 12 · Activity record created", + FS_SMALL, BLUE, font=FONT_MONO, width=620) +button(cx + cw - 132, console_y + 12, 102, "View Run", color=BLUE, bg=BLUE_BG, h=34) +line(cx, console_y + 58, cw, 0, color="#eef2f7") +log_rows = [ + ("14:32:18.102", "Receive conversation", "completed", GREEN), + ("14:32:22.364", "Classify severity", "completed", GREEN), + ("14:32:22.481", "Route escalation", "completed", GREEN), + ("14:32:23.019", "Prepare reply", "running", BLUE), +] +for idx, (stamp, name, state, color) in enumerate(log_rows): + row_y = console_y + 78 + idx * 37 + text(cx + 24, row_y, stamp, 12, MUTED, font=FONT_MONO, width=120) + dot(cx + 152, row_y + 2, 10, color, bg=color) + text(cx + 176, row_y, name, FS_SMALL, INK, width=260) + text(cx + 450, row_y, state, FS_SMALL, color, font=FONT_MONO, width=130) +rect(cx + 690, console_y + 74, cw - 720, 134, bg=SIDEBAR, stroke=SIDEBAR) +text(cx + 708, console_y + 90, "OUTPUT", 12, FAINT, font=FONT_MONO, width=100) +text(cx + 708, console_y + 120, + "Preparing a concise response for\nthe support conversation...", + FS_SMALL, "#d0d5dd", font=FONT_MONO, width=cw - 760) +end_frame() + + +# 09 Activity with a Workflow filter +fx, fy = begin_frame(8, "09 Activity - filtered by Workflow") +cx, cy, cw = app_shell(fx, fy, "Activity", title="Activity", + subtitle="Every Run, newest first. Filtered to Weekly feedback digest.") +field(cx + 30, cy + 24, 330, "Search", "Search Run or outcome") +px = cx + 386 +px = chip(px, cy + 46, "Workflow: Weekly feedback digest", selected=True) +for label, selected in (("All 24", True), ("Needs you 1", False), ("Running 1", False), ("Failed 2", False)): + px = chip(px, cy + 46, label, selected=selected) +table_x = cx + 30 +table_y = cy + 112 +table_header(table_x, table_y, [105, 235, 120, 175, 115, 75, 90, 255], + ["Status", "Workflow", "Origin", "Revision", "When", "Took", "Usage", "Outcome"]) +runs = [ + ("Running", "Weekly feedback digest", "Manual · you", "Current draft · revision 12", "18s ago", "00:18", "$0.03", "Preparing summary"), + ("Succeeded", "Weekly feedback digest", "Schedule · weekly", "Published · v7", "2h ago", "01:42", "$0.18", "Posted 1 summary"), + ("Needs you", "Weekly feedback digest", "Schedule · weekly", "Published · v7", "1w ago", "00:56", "$0.11", "Approval requested"), + ("Failed", "Weekly feedback digest", "Manual · Calvin", "Draft · revision 9", "8d ago", "00:12", "$0.02", "Lark connection expired"), + ("Succeeded", "Weekly feedback digest", "Run again · R-1001", "Published · v6", "15d ago", "01:37", "$0.17", "Posted 1 summary"), +] +for idx, run in enumerate(runs): + activity_row(table_x, table_y + 42 + idx * 70, *run) +text(table_x, fy + FRAME_H - 52, + "Activity remains the authoritative Run history. Run again and Retry append linked records.", + FS_SMALL, BLUE, width=720) +end_frame() + + +# 10 Global Activity +fx, fy = begin_frame(9, "10 Activity - all retained Runs") +cx, cy, cw = app_shell(fx, fy, "Activity", title="Activity", + subtitle="Every Run, newest first. Search, inspect, and recover from one place.") +field(cx + 30, cy + 28, 380, "Search", "Search workflow, Run, or outcome") +px = cx + 438 +for label, selected in (("All 128", True), ("Needs you 2", False), ("Running 3", False), ("Failed 7", False), ("Mine 18", False)): + px = chip(px, cy + 50, label, selected=selected) +table_x = cx + 30 +table_y = cy + 116 +table_header(table_x, table_y, [105, 235, 120, 175, 115, 75, 90, 255], + ["Status", "Workflow", "Origin", "Revision", "When", "Took", "Usage", "Outcome"]) +runs = [ + ("Running", "Customer escalation triage", "Manual · you", "Current draft · revision 12", "18s ago", "00:18", "$0.03", "Preparing reply"), + ("Needs you", "Invoice follow-up", "Schedule · weekday", "Published · v4", "42m ago", "02:18", "$0.22", "Approve 4 messages"), + ("Succeeded", "Weekly feedback digest", "Schedule · weekly", "Published · v7", "2h ago", "01:42", "$0.18", "Posted 1 summary"), + ("Failed", "Nightly order sync", "Schedule · nightly", "Published · v9", "3:04 AM", "00:21", "$0.04", "Warehouse unavailable"), + ("Succeeded", "Customer escalation triage", "Retry · R-1031", "Draft · revision 11", "Yesterday", "00:49", "$0.09", "Posted reply"), + ("Failed", "Customer escalation triage", "Manual · Calvin", "Draft · revision 11", "Yesterday", "00:13", "$0.02", "Linear permission denied"), + ("Succeeded", "Invoice follow-up", "Manual · you", "Published · v4", "2d ago", "02:04", "$0.20", "Sent 6 reminders"), +] +for idx, run in enumerate(runs): + activity_row(table_x, table_y + 42 + idx * 70, *run) +text(table_x, fy + FRAME_H - 50, + "Showing 7 of 128 Runs | New records appear here as soon as execution starts.", + FS_SMALL, MUTED, width=680) +end_frame() + + +# 11 Run detail +fx, fy = begin_frame(10, "11 Run detail - immutable record") +cx, cy, cw = app_shell(fx, fy, "Activity", title="Run #R-1042", + subtitle="Customer escalation triage | Started 18 seconds ago") +button(cx + cw - 328, fy + 22, 126, "Open workflow", color=BLUE, bg=BLUE_BG) +button(cx + cw - 190, fy + 22, 160, "Run again", primary=True, color=BLUE) +left_w = 780 +rect(cx + 30, cy + 28, left_w, 748, bg=SURFACE, stroke=LINE) +badge(cx + 54, cy + 52, "Running", "run") +text(cx + 54, cy + 100, "Customer escalation triage", FS_HEAD, INK, width=520) +text(cx + 54, cy + 138, + "Current draft · revision 12", FS_BODY, PURPLE, font=FONT_MONO, width=360) +summary_fields = [ + ("ORIGIN", "Manual · you"), + ("STARTED", "Aug 3, 2026 at 14:32:18"), + ("ELAPSED", "00:18"), + ("USAGE", "$0.03 · 5.8k tokens"), +] +for idx, (label, value) in enumerate(summary_fields): + sx = cx + 54 + (idx % 2) * 360 + sy = cy + 196 + (idx // 2) * 84 + text(sx, sy, label, FS_SMALL, MUTED, font=FONT_MONO, width=130) + text(sx, sy + 26, value, FS_SMALL, INK, width=310) +line(cx + 54, cy + 362, left_w - 48, 0, color=LINE) +text(cx + 54, cy + 390, "STEP TIMELINE", FS_SMALL, MUTED, font=FONT_MONO, width=170) +timeline = [ + ("Receive conversation", "0.8s", "ok"), + ("Classify severity", "3.4s", "ok"), + ("Route escalation", "0.1s", "ok"), + ("Prepare reply", "running 13s", "run"), + ("Post response", "queued", "muted"), +] +for idx, (name, duration, status) in enumerate(timeline): + ty = cy + 432 + idx * 58 + color = GREEN if status == "ok" else BLUE if status == "run" else FAINT + dot(cx + 58, ty + 4, 18, color, bg=color if status != "muted" else SURFACE) + if idx < len(timeline) - 1: + line(cx + 67, ty + 22, 0, 38, color=LINE) + text(cx + 94, ty + 2, name, FS_SMALL, INK, width=320) + text(cx + 460, ty + 2, duration, FS_SMALL, color, font=FONT_MONO, width=160) + +side_x = cx + 834 +side_w = cw - 864 +rect(side_x, cy + 28, side_w, 748, bg=SUBTLE, stroke=LINE) +text(side_x + 24, cy + 52, "RECORD", FS_SMALL, MUTED, font=FONT_MONO, width=100) +field(side_x + 24, cy + 88, side_w - 48, "Run", "R-1042", mono=True) +field(side_x + 24, cy + 172, side_w - 48, "Revision", "draft-r12", mono=True) +field(side_x + 24, cy + 256, side_w - 48, "Environment", "Production") +text(side_x + 24, cy + 346, "LINKED RUNS", FS_SMALL, MUTED, font=FONT_MONO, width=140) +rect(side_x + 24, cy + 376, side_w - 48, 76, bg=SURFACE, stroke=LINE) +text(side_x + 40, cy + 392, "No linked Runs yet", FS_SMALL, INK, width=240) +text(side_x + 40, cy + 419, + "Run again will create one.", FS_SMALL, MUTED, width=270) +rect(side_x + 24, cy + 480, side_w - 48, 124, bg=BLUE_BG, stroke=BLUE) +text(side_x + 40, cy + 500, "History is immutable", FS_BODY, BLUE, width=250) +text(side_x + 40, cy + 534, + "A new attempt keeps this record and links back to R-1042.", + FS_SMALL, INK, width=300) +button(side_x + 24, cy + 634, side_w - 48, "Run again", primary=True, color=BLUE) +end_frame() + + +# 12 Failure / Needs you recovery +fx, fy = begin_frame(11, "12 Failed Run - recovery creates a new record") +cx, cy, cw = app_shell(fx, fy, "Activity", title="Run #R-1038", + subtitle="Nightly order sync | Failed at step 4") +button(cx + cw - 328, fy + 22, 126, "Edit workflow", color=BLUE, bg=BLUE_BG) +button(cx + cw - 190, fy + 22, 160, "Retry", primary=True, color=BLUE) +rect(cx + 30, cy + 28, cw - 60, 110, bg=RED_BG, stroke=RED) +badge(cx + 52, cy + 52, "Failed", "fail") +text(cx + 160, cy + 56, "Warehouse connection is unavailable", FS_HEAD, RED, width=560) +text(cx + 160, cy + 90, + "Step 4 · Write completed orders | The connection rejected the request.", + FS_SMALL, INK, width=700) +text(cx + 52, cy + 168, "WHAT HAPPENED", FS_SMALL, MUTED, font=FONT_MONO, width=180) +rect(cx + 30, cy + 198, 720, 246, bg=SURFACE, stroke=LINE) +field(cx + 54, cy + 222, 672, "Revision", "Published · v9", mono=True) +field(cx + 54, cy + 306, 320, "Failed after", "00:21", mono=True) +field(cx + 390, cy + 306, 336, "Usage", "$0.04 · 8.1k tokens", mono=True) +text(cx + 54, cy + 400, + "The previous three completed steps remain visible in this Run record.", + FS_SMALL, MUTED, width=620) +side_x = cx + 780 +side_w = cw - 810 +text(side_x + 22, cy + 168, "RECOVER", FS_SMALL, MUTED, font=FONT_MONO, width=130) +rect(side_x, cy + 198, side_w, 246, bg=SUBTLE, stroke=LINE) +text(side_x + 24, cy + 222, "1. Repair the connection", FS_BODY, INK, width=330) +button(side_x + 24, cy + 254, side_w - 48, "Open connections", color=BLUE, bg=BLUE_BG) +text(side_x + 24, cy + 318, "2. Retry this Run", FS_BODY, INK, width=330) +button(side_x + 24, cy + 350, side_w - 48, "Retry", primary=True, color=BLUE) +text(cx + 30, cy + 486, "RETRY PREVIEW", FS_SMALL, MUTED, font=FONT_MONO, width=160) +rect(cx + 30, cy + 516, cw - 60, 204, bg=BLUE_BG, stroke=BLUE) +text(cx + 54, cy + 542, "A new Run will be created", FS_HEAD, BLUE, width=420) +text(cx + 54, cy + 584, + "New record: R-1043 | Source Run: R-1038 | Published · v9", + FS_BODY, INK, font=FONT_MONO, width=720) +text(cx + 54, cy + 624, + "R-1038 remains Failed. R-1043 starts from step 4 after the connection is repaired.", + FS_SMALL, MUTED, width=790) +button(cx + cw - 252, cy + 652, 88, "Cancel") +button(cx + cw - 152, cy + 652, 98, "Retry", primary=True, color=BLUE) +end_frame() + + +# 13 State sheet and mobile behavior +fx, fy = begin_frame(12, "13 Workflows and Activity - states") +cx, cy, cw = app_shell(fx, fy, "Activity", title="Workflows + Activity states", + subtitle="Empty, loading, error, and compact layouts for the two in-scope areas.") +state_w = 360 +state_y = cy + 34 +states = [ + ("Empty Workflows", "No workflows yet", "Create your first workflow directly.", "New workflow", BLUE, BLUE_BG), + ("Empty Activity", "No Runs match", "Change filters or run a workflow.", "Clear filters", MUTED, SUBTLE), + ("Loading Activity", "Loading Run history", "Keeping the current filters in place.", "", BLUE, BLUE_BG), +] +for idx, (label, title, body, action, color, bg) in enumerate(states): + x = cx + 30 + idx * 390 + rect(x, state_y, state_w, 218, bg=bg, stroke=color if idx != 1 else LINE) + text(x + 20, state_y + 18, label.upper(), FS_SMALL, color, font=FONT_MONO, width=260) + if idx == 2: + for bar in range(3): + rect(x + 24, state_y + 62 + bar * 42, state_w - 48 - bar * 34, 18, + bg="#dbeafe", stroke="#dbeafe") + else: + text(x + 20, state_y + 62, title, FS_HEAD, INK, width=310) + text(x + 20, state_y + 100, body, FS_SMALL, MUTED, width=310) + button(x + 20, state_y + 150, 130, action, + primary=(idx == 0), color=color, bg=SURFACE) + +error_y = state_y + 250 +rect(cx + 30, error_y, 750, 174, bg=RED_BG, stroke=RED) +text(cx + 52, error_y + 22, "ACTIVITY UNAVAILABLE", FS_SMALL, RED, font=FONT_MONO, width=240) +text(cx + 52, error_y + 58, "Run history could not be loaded", FS_HEAD, INK, width=520) +text(cx + 52, error_y + 96, + "Your Runs are still retained. Retry loading without losing search or filters.", + FS_SMALL, MUTED, width=620) +button(cx + 608, error_y + 108, 142, "Retry loading", color=RED, bg=RED_BG) + +mobile_x = cx + 826 +mobile_y = error_y +mobile_w = 370 +rect(mobile_x, mobile_y, mobile_w, 438, bg=SURFACE, stroke="#344054", sw=2) +rect(mobile_x, mobile_y, mobile_w, 58, bg=SIDEBAR, stroke=SIDEBAR, radius=False) +text(mobile_x + 18, mobile_y + 18, "Activity", FS_BODY, SURFACE, width=140) +button(mobile_x + 264, mobile_y + 12, 88, "Filters", color=SURFACE, bg=SIDEBAR, h=34) +mobile_runs = [ + ("Running", "Customer escalation triage", "Draft · r12", "run"), + ("Needs you", "Invoice follow-up", "Published · v4", "wait"), + ("Failed", "Nightly order sync", "Published · v9", "fail"), +] +for idx, (status, name, revision, palette) in enumerate(mobile_runs): + y = mobile_y + 76 + idx * 108 + rect(mobile_x + 14, y, mobile_w - 28, 92, bg=SURFACE, stroke=LINE) + badge(mobile_x + 28, y + 14, status, palette) + text(mobile_x + 28, y + 48, name, FS_SMALL, INK, width=210) + text(mobile_x + 230, y + 48, revision, FS_SMALL, MUTED, + font=FONT_MONO, width=100, align="right") +text(cx + 30, fy + FRAME_H - 54, + "Compact layouts preserve status, workflow, revision, and recovery actions before secondary metrics.", + FS_SMALL, MUTED, width=820) +end_frame() + + +# 14 Settings - AI defaults +fx, fy = begin_frame(13, "14 Settings - AI defaults") +cx, cy, cw = app_shell(fx, fy, "Settings", title="Settings", + subtitle="Personal defaults and access.") +settings_nav(cx + 26, cy + 34, "AI defaults") +main_x = cx + 236 +main_w = cw - 266 +text(main_x, cy + 34, "AI defaults", FS_HEAD, INK, width=360) +text(main_x, cy + 70, + "Choose the service and model used by new Chat, Studio, and global tool sessions without an override.", + FS_SMALL, MUTED, width=650) +line(main_x, cy + 108, main_w, 0, color=LINE) + +rows = [ + ("Preferred service", "Gateway or exact connected service.", "NyxID Gateway"), + ("Default model", "Leave unset to use the service default.", "gpt-4o-mini"), +] +for idx, (label, body, value) in enumerate(rows): + y = cy + 146 + idx * 104 + text(main_x, y + 10, label, FS_SMALL, INK, width=220) + text(main_x, y + 38, body, FS_SMALL, MUTED, width=230) + rect(main_x + 270, y, main_w - 270, 48, bg=SURFACE, stroke=LINE) + text(main_x + 286, y + 15, value, FS_SMALL, INK, width=main_w - 310) + line(main_x, y + 82, main_w, 0, color=LINE) +end_frame() + + +# 15 Settings - save and recovery states +fx, fy = begin_frame(14, "15 Settings - save and recovery states") +cx, cy, cw = app_shell(fx, fy, "Settings", title="Settings states", + subtitle="Dirty, accepted, fallback, and catalog recovery without dashboard noise.") +settings_nav(cx + 26, cy + 34, "AI defaults") +main_x = cx + 236 +main_w = cw - 266 +text(main_x, cy + 34, "AI defaults", FS_HEAD, INK, width=340) +badge(main_x + main_w - 126, cy + 34, "Unsaved", "wait") +line(main_x, cy + 92, main_w, 0, color=LINE) + +state_y = cy + 126 +state_gap = 18 +state_w = (main_w - state_gap * 2) / 3 +state_specs = [ + ("UNSAVED", "Sticky save bar appears", "Discard and Save changes stay close to the edited defaults.", AMBER, AMBER_BG), + ("ACCEPTED", "Confirming saved values", "Keep the submitted exact service visible until the committed values are observed.", BLUE, BLUE_BG), + ("FALLBACK", "Effective route changed", "Show fallback only when the selected service is unavailable.", AMBER, AMBER_BG), +] +for idx, (label, title_value, body, color, bg) in enumerate(state_specs): + x = main_x + idx * (state_w + state_gap) + rect(x, state_y, state_w, 218, bg=bg, stroke=color) + text(x + 16, state_y + 16, label, FS_SMALL, color, font=FONT_MONO, width=state_w - 32) + text(x + 16, state_y + 52, title_value, FS_BODY, INK, width=state_w - 32) + text(x + 16, state_y + 88, body, FS_SMALL, MUTED, + width=state_w - 32, line_height=1.45) + if idx == 0: + button(x + 16, state_y + 166, 92, "Discard") + button(x + 118, state_y + 166, 122, "Save changes", primary=True, color=BLUE) + elif idx == 1: + badge(x + 16, state_y + 166, "Observation pending", "run") + else: + badge(x + 16, state_y + 166, "Effective: Gateway", "wait") + +recovery_y = state_y + 252 +rect(main_x, recovery_y, (main_w - 18) / 2, 220, bg=SUBTLE, stroke=LINE) +text(main_x + 18, recovery_y + 18, "CATALOG UNAVAILABLE", FS_SMALL, AMBER, + font=FONT_MONO, width=300) +text(main_x + 18, recovery_y + 56, "Keep stored defaults visible", FS_BODY, INK, width=380) +text(main_x + 18, recovery_y + 92, + "Disable service and model editing until provider inventory can be loaded.", + FS_SMALL, MUTED, width=400, line_height=1.45) +button(main_x + 18, recovery_y + 160, 88, "Retry", color=AMBER, bg=AMBER_BG) + +error_x = main_x + (main_w - 18) / 2 + 18 +rect(error_x, recovery_y, (main_w - 18) / 2, 220, bg=RED_BG, stroke=RED) +text(error_x + 18, recovery_y + 18, "SAVE FAILED", FS_SMALL, RED, + font=FONT_MONO, width=300) +text(error_x + 18, recovery_y + 56, "Edits remain intact", FS_BODY, INK, width=380) +text(error_x + 18, recovery_y + 92, + "The exact service and model stay editable. Retry without rebuilding the draft.", + FS_SMALL, MUTED, width=400, line_height=1.45) +button(error_x + 18, recovery_y + 160, 126, "Save changes", color=RED, bg=RED_BG) + +savebar_y = cy + 680 +rect(main_x, savebar_y, main_w, 72, bg="#1d2939", stroke="#344054") +text(main_x + 18, savebar_y + 14, "Unsaved changes", FS_SMALL, SURFACE, width=280) +text(main_x + 18, savebar_y + 40, "Your AI defaults have not been saved.", FS_SMALL, "#d0d5dd", width=420) +button(main_x + main_w - 244, savebar_y + 17, 92, "Discard", color=SURFACE, bg="#1d2939") +button(main_x + main_w - 140, savebar_y + 17, 122, "Save changes", primary=True, color=BLUE) +end_frame() + + +# 16 Settings - Account +fx, fy = begin_frame(15, "16 Settings - Account") +cx, cy, cw = app_shell(fx, fy, "Settings", title="Settings", + subtitle="Identity and service access for this browser.") +settings_nav(cx + 26, cy + 34, "Account") +main_x = cx + 236 +main_w = cw - 266 +text(main_x, cy + 34, "Account", FS_HEAD, INK, width=340) +text(main_x, cy + 70, "Identity and service access for this browser session.", + FS_SMALL, MUTED, width=560) +line(main_x, cy + 108, main_w, 0, color=LINE) + +profile_y = cy + 138 +text(main_x, profile_y, "Profile", FS_BODY, INK, width=260) +button(main_x + main_w - 94, profile_y, 94, "Sign out", color=RED, bg=RED_BG) +dot(main_x, profile_y + 48, 50, BLUE) +text(main_x + 68, profile_y + 48, "Calvin Tan", FS_BODY, INK, width=260) +text(main_x + 68, profile_y + 78, "calvin@example.com", FS_SMALL, MUTED, width=300) + +detail_y = profile_y + 122 +detail_w = main_w / 2 +account_fields = [ + ("USER ID", "usr_7c9142...e8a13f"), + ("ROLES", "admin, operator"), + ("GROUPS", "platform"), + ("EMAIL", "Verified"), +] +for idx, (label, value) in enumerate(account_fields): + col = idx % 2 + row = idx // 2 + x = main_x + col * detail_w + y = detail_y + row * 76 + rect(x, y, detail_w, 76, bg=SURFACE, stroke=LINE, radius=False) + text(x + 14, y + 14, label, FS_SMALL, MUTED, font=FONT_MONO, width=detail_w - 28) + text(x + 14, y + 44, value, FS_SMALL, INK, width=detail_w - 28) + +auth_y = profile_y + 300 +line(main_x, auth_y - 22, main_w, 0, color=LINE) +text(main_x, auth_y, "Authentication", FS_BODY, INK, width=280) +button(main_x + main_w - 208, auth_y, 208, "Manage service access") +auth_fields = [ + ("SESSION EXPIRES", "2026/8/4 18:30"), + ("PROVIDER", "NyxID"), + ("SCOPE", "openid profile email"), + ("BROWSER TOKEN REFRESH", "Disabled"), +] +for idx, (label, value) in enumerate(auth_fields): + col = idx % 2 + row = idx // 2 + x = main_x + col * detail_w + y = auth_y + 56 + row * 76 + rect(x, y, detail_w, 76, bg=SURFACE, stroke=LINE, radius=False) + text(x + 14, y + 14, label, FS_SMALL, MUTED, font=FONT_MONO, width=detail_w - 28) + text(x + 14, y + 44, value, FS_SMALL, INK, width=detail_w - 28) + +signedout_y = cy + 704 +rect(main_x, signedout_y, main_w, 66, bg=SUBTLE, stroke=LINE) +text(main_x + 16, signedout_y + 14, "SIGNED-OUT STATE", FS_SMALL, MUTED, + font=FONT_MONO, width=180) +text(main_x + 214, signedout_y + 14, + "Replace identity claims with No active session and a Sign in action.", + FS_SMALL, INK, width=560) +end_frame() + + +# 17 Settings - Advanced and responsive behavior +fx, fy = begin_frame(16, "17 Settings - Advanced and responsive") +cx, cy, cw = app_shell(fx, fy, "Settings", title="Settings", + subtitle="Advanced diagnostics stay separate from everyday defaults.") +settings_nav(cx + 20, cy + 30, "Advanced") +advanced_x = cx + 218 +advanced_w = 610 +text(advanced_x, cy + 30, "Advanced", FS_HEAD, INK, width=280) +text(advanced_x, cy + 66, "Read-only runtime and routing details for troubleshooting.", + FS_SMALL, MUTED, width=480) +line(advanced_x, cy + 104, advanced_w, 0, color=LINE) +text(advanced_x, cy + 132, "Request values", FS_BODY, INK, width=260) +text(advanced_x, cy + 162, "Effective values supplied to new requests.", + FS_SMALL, MUTED, width=460) +technical_rows = [ + ("x-aevatar-llm-route", "nyxid_gateway"), + ("x-aevatar-llm-model", "gpt-4o-mini"), + ("studio.runtime_base_url", "http://127.0.0.1:5080"), + ("aevatar.runtime_mode", "local"), +] +for idx, (key, value) in enumerate(technical_rows): + y = cy + 204 + idx * 48 + rect(advanced_x, y, advanced_w, 48, bg=SIDEBAR, stroke="#344054", radius=False) + text(advanced_x + 14, y + 15, key, FS_SMALL, "#d0d5dd", + font=FONT_MONO, width=270) + text(advanced_x + 292, y + 15, value, FS_SMALL, "#98a2b3", + font=FONT_MONO, width=advanced_w - 306) + +mobile_x = cx + 858 +mobile_y = cy + 28 +mobile_w = 344 +rect(mobile_x, mobile_y, mobile_w, 774, bg=SURFACE, stroke="#344054", sw=2) +rect(mobile_x, mobile_y, mobile_w, 58, bg=SIDEBAR, stroke=SIDEBAR, radius=False) +text(mobile_x + 14, mobile_y + 18, "Settings", FS_BODY, SURFACE, width=120) +text(mobile_x + 14, mobile_y + 80, "Settings", FS_HEAD, INK, width=180) +text(mobile_x + 14, mobile_y + 116, + "Personal defaults and access.", + FS_SMALL, MUTED, width=310) +settings_nav(mobile_x + 10, mobile_y + 166, "AI defaults", mobile=True) +text(mobile_x + 14, mobile_y + 236, "AI defaults", FS_HEAD, INK, width=220) +text(mobile_x + 14, mobile_y + 274, + "Service and model for new sessions without an override.", + FS_SMALL, MUTED, width=310) +line(mobile_x + 14, mobile_y + 322, mobile_w - 28, 0, color=LINE) +text(mobile_x + 14, mobile_y + 348, "Preferred service", FS_SMALL, INK, width=260) +field(mobile_x + 14, mobile_y + 376, mobile_w - 28, "Service", "NyxID Gateway") +text(mobile_x + 14, mobile_y + 472, "Default model", FS_SMALL, INK, width=260) +field(mobile_x + 14, mobile_y + 500, mobile_w - 28, "Model", "gpt-4o-mini") +rect(mobile_x + 14, mobile_y + 670, mobile_w - 28, 70, bg="#1d2939", stroke="#344054") +text(mobile_x + 26, mobile_y + 682, "Unsaved changes", FS_SMALL, SURFACE, width=180) +button(mobile_x + 202, mobile_y + 686, 116, "Save changes", primary=True, color=BLUE, h=34) +end_frame() + + +document = { + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": elements, + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": False, + "viewBackgroundColor": "#eef2f6", + }, + "files": {}, +} + +OUT.write_text(json.dumps(document, indent=2, ensure_ascii=True) + "\n", encoding="utf-8") + + +# Structural and semantic checks +ids = [item["id"] for item in elements] +assert len(ids) == len(set(ids)), "duplicate Excalidraw element IDs" +frames = {item["id"]: item for item in elements if item["type"] == "frame"} +assert len(frames) == 17, f"expected 17 frames, got {len(frames)}" + +escaped = [] +for item in elements: + frame_id = item.get("frameId") + if not frame_id: + continue + owner = frames[frame_id] + if (item["x"] < owner["x"] - 2 or item["y"] < owner["y"] - 2 + or item["x"] + item["width"] > owner["x"] + owner["width"] + 2 + or item["y"] + item["height"] > owner["y"] + owner["height"] + 2): + escaped.append((owner["name"], item["type"], item.get("text", "")[:60])) +assert not escaped, f"elements escaped frames: {escaped[:8]}" + +visible_text = "\n".join(item["text"] for item in elements if item["type"] == "text") +for forbidden in ("Invoke", "Draft Run", "Test Run", "Create Team", "Create Member", "Open Flows", "Fix flow"): + assert forbidden.casefold() not in visible_text.casefold(), f"stale term: {forbidden}" + +standalone_flow = re.compile(r"(?= 10 +assert visible_text.count("Activity") >= 12 +assert visible_text.count("Settings") >= 8 +assert "This Run will be saved in Activity." in visible_text +assert "Current draft · revision 12" in visible_text +assert "Run again will create one." in visible_text +assert "Preferred service" in visible_text +assert "Manage service access" in visible_text +assert "AI defaults" in visible_text +assert "studio.runtime_base_url" in visible_text +assert "aevatar.runtime_mode" in visible_text + +print(f"wrote {OUT}") +print(f"elements: {len(elements)}") +print(f"frames: {len(frames)}") +print("semantic checks: passed") +print("frame bounds: passed") diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.excalidraw b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.excalidraw new file mode 100644 index 0000000000..fe8e0718e1 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.excalidraw @@ -0,0 +1 @@ +{"type":"excalidraw","version":2,"source":"https://excalidraw.com","elements":[{"id":"t-00001-1545","type":"text","x":140.0,"y":70.0,"width":1040.0,"height":40.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":729512858,"version":1,"versionNonce":133347924,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Aevatar — Published workflow schedules","originalText":"Aevatar — Published workflow schedules","fontSize":32,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00002-1765","type":"text","x":140.0,"y":126.0,"width":1060.0,"height":27.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":1099550647,"version":1,"versionNonce":283212493,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"One Workflow, one recurring resource model, seven reviewable screens.","originalText":"One Workflow, one recurring resource model, seven reviewable screens.","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00003-4202","type":"text","x":140.0,"y":178.0,"width":1180.0,"height":20.0,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":1494373298,"version":1,"versionNonce":318663386,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule is configured, previewed, created, observed, and managed through the Workflow-scoped API.","originalText":"Schedule is configured, previewed, created, observed, and managed through the Workflow-scoped API.","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00004-3242","type":"text","x":140.0,"y":232.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":2141913302,"version":1,"versionNonce":1866669699,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Each frame renders to its own 1440 × 900 PNG. Notes stay outside the screen frames.","originalText":"Each frame renders to its own 1440 × 900 PNG. Notes stay outside the screen frames.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00005-3687","type":"line","x":140.0,"y":274.0,"width":1150.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":315686227,"version":1,"versionNonce":1118610136,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[1150.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"frame-00006-8349","type":"frame","x":140.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":166792497,"version":1,"versionNonce":2019800083,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"01 · Workflows — schedule management modal"},{"id":"r-00008-5683","type":"rectangle","x":140.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1657078077,"version":1,"versionNonce":1992778601,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00009-8884","type":"rectangle","x":140.0,"y":480.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1052962616,"version":1,"versionNonce":214494482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00010-2648","type":"text","x":162.0,"y":502.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1277667314,"version":1,"versionNonce":629695962,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00011-2109","type":"text","x":162.0,"y":534.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":21563061,"version":1,"versionNonce":487497018,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00012-2408","type":"text","x":164.0,"y":592.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":166706401,"version":1,"versionNonce":158018830,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00013-9757","type":"rectangle","x":150.0,"y":626.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1601541552,"version":1,"versionNonce":178296207,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00014-5197","type":"text","x":164.0,"y":634.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":310469426,"version":1,"versionNonce":143027738,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00015-1941","type":"text","x":164.0,"y":676.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1247230994,"version":1,"versionNonce":1668907097,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00016-3835","type":"text","x":164.0,"y":718.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":229716043,"version":1,"versionNonce":84968610,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00017-9409","type":"text","x":164.0,"y":760.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1133145782,"version":1,"versionNonce":887961131,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00018-4104","type":"line","x":150.0,"y":1398.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2003735782,"version":1,"versionNonce":965904802,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00019-7572","type":"text","x":162.0,"y":1420.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":438743447,"version":1,"versionNonce":1658457725,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00020-7107","type":"rectangle","x":350.0,"y":480.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1040692417,"version":1,"versionNonce":615782968,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00021-5774","type":"text","x":378.0,"y":496.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1071858901,"version":1,"versionNonce":1203444105,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00022-3386","type":"text","x":378.0,"y":526.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":340621016,"version":1,"versionNonce":1929257844,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published capabilities can run manually or on a schedule.","originalText":"Published capabilities can run manually or on a schedule.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00023-8992","type":"rectangle","x":1530.0,"y":498.0,"width":142.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":751938324,"version":1,"versionNonce":715506604,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00024-7856","type":"text","x":1538.0,"y":507.0,"width":126.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1478846502,"version":1,"versionNonce":293159839,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Start a run","originalText":"Start a run","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00025-3361","type":"text","x":378.0,"y":578.0,"width":47.879999999999995,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1443138478,"version":1,"versionNonce":1902125480,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SEARCH","originalText":"SEARCH","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00026-9563","type":"rectangle","x":378.0,"y":600.0,"width":360.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1464749973,"version":1,"versionNonce":1104100021,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00027-7025","type":"text","x":390.0,"y":612.0,"width":336.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":999572091,"version":1,"versionNonce":1253988940,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Search workflows","originalText":"Search workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00028-5275","type":"rectangle","x":762.0,"y":600.0,"width":86.0,"height":34.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1445465829,"version":1,"versionNonce":56675767,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00029-3059","type":"text","x":772.0,"y":608.0,"width":66.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":944508503,"version":1,"versionNonce":893181465,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"All 6","originalText":"All 6","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00030-7546","type":"rectangle","x":856.0,"y":600.0,"width":120.0,"height":34.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1378202541,"version":1,"versionNonce":1499691691,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00031-6375","type":"text","x":866.0,"y":608.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1243159269,"version":1,"versionNonce":1343474275,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published 4","originalText":"Published 4","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00032-1880","type":"rectangle","x":984.0,"y":600.0,"width":168.0,"height":34.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1078744587,"version":1,"versionNonce":1669576273,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00033-4492","type":"text","x":994.0,"y":608.0,"width":148.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1950123821,"version":1,"versionNonce":1969815418,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Runs on its own 3","originalText":"Runs on its own 3","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00034-9833","type":"rectangle","x":1160.0,"y":600.0,"width":96.0,"height":34.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":431427449,"version":1,"versionNonce":2030395757,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00035-9229","type":"text","x":1170.0,"y":608.0,"width":76.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":932628661,"version":1,"versionNonce":1552328106,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Drafts 1","originalText":"Drafts 1","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00036-7220","type":"rectangle","x":378.0,"y":666.0,"width":1280.0,"height":42.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":139199685,"version":1,"versionNonce":321676536,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00037-6352","type":"text","x":392.0,"y":679.0,"width":432.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1916929751,"version":1,"versionNonce":1438225417,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"NAME","originalText":"NAME","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00038-5396","type":"text","x":852.0,"y":679.0,"width":162.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1275527499,"version":1,"versionNonce":1694096396,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"LAST RUN","originalText":"LAST RUN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00039-6898","type":"text","x":1042.0,"y":679.0,"width":242.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":333944347,"version":1,"versionNonce":811824201,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"STARTS ON ITS OWN","originalText":"STARTS ON ITS OWN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00040-3398","type":"text","x":1312.0,"y":679.0,"width":152.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1943889008,"version":1,"versionNonce":1616644331,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"STATE","originalText":"STATE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00041-9068","type":"text","x":1492.0,"y":679.0,"width":152.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1071293790,"version":1,"versionNonce":870674525,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"ACTIONS","originalText":"ACTIONS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00042-9886","type":"rectangle","x":378.0,"y":708.0,"width":1280.0,"height":116.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":907610285,"version":1,"versionNonce":1163542899,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00043-7205","type":"text","x":394.0,"y":724.0,"width":420.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":655928580,"version":1,"versionNonce":1878658968,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00044-3166","type":"text","x":394.0,"y":754.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1498271505,"version":1,"versionNonce":1362322284,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"reads #feedback, groups themes, posts a summary","originalText":"reads #feedback, groups themes, posts a summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00045-3977","type":"text","x":838.0,"y":742.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":755092172,"version":1,"versionNonce":843386306,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"2h ago","originalText":"2h ago","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00046-8639","type":"text","x":1028.0,"y":742.0,"width":220.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1165048831,"version":1,"versionNonce":1264162007,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"3 · 1 paused","originalText":"3 · 1 paused","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00047-4990","type":"rectangle","x":1298.0,"y":739.0,"width":91.5,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1211856992,"version":1,"versionNonce":183248068,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00048-8097","type":"text","x":1308.0,"y":745.0,"width":71.5,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1575679856,"version":1,"versionNonce":467501621,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published","originalText":"Published","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00049-9668","type":"rectangle","x":1490.0,"y":736.0,"width":90.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1515493258,"version":1,"versionNonce":847038303,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00050-3516","type":"text","x":1498.0,"y":745.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1039030924,"version":1,"versionNonce":95496879,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules","originalText":"Schedules","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00051-6618","type":"rectangle","x":1578.0,"y":736.0,"width":62.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":965697882,"version":1,"versionNonce":332274316,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00052-9107","type":"text","x":1586.0,"y":745.0,"width":46.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1036250937,"version":1,"versionNonce":1532174677,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open","originalText":"Open","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00053-6189","type":"rectangle","x":378.0,"y":824.0,"width":1280.0,"height":116.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":812760134,"version":1,"versionNonce":251262178,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00054-5793","type":"text","x":394.0,"y":840.0,"width":420.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2089149003,"version":1,"versionNonce":188078865,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Customer escalation triage","originalText":"Customer escalation triage","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00055-9572","type":"text","x":394.0,"y":870.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1264822462,"version":1,"versionNonce":1730376208,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"classifies urgent conversations and prepares replies","originalText":"classifies urgent conversations and prepares replies","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00056-3750","type":"text","x":838.0,"y":858.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":712537265,"version":1,"versionNonce":378992374,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"4m ago","originalText":"4m ago","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00057-1930","type":"text","x":1028.0,"y":858.0,"width":220.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":885430929,"version":1,"versionNonce":237887562,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"2","originalText":"2","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00058-5341","type":"rectangle","x":1298.0,"y":855.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1286136710,"version":1,"versionNonce":1192204111,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00059-6920","type":"text","x":1308.0,"y":861.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1523170834,"version":1,"versionNonce":1420389030,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Draft","originalText":"Draft","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00060-5584","type":"rectangle","x":1490.0,"y":852.0,"width":90.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":580252717,"version":1,"versionNonce":1964507427,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00061-2063","type":"text","x":1498.0,"y":861.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1754256467,"version":1,"versionNonce":1785280179,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules","originalText":"Schedules","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00062-1796","type":"rectangle","x":1578.0,"y":852.0,"width":62.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":912926306,"version":1,"versionNonce":1067981889,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00063-3677","type":"text","x":1586.0,"y":861.0,"width":46.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1985144850,"version":1,"versionNonce":1224747218,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open","originalText":"Open","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00064-2724","type":"rectangle","x":378.0,"y":940.0,"width":1280.0,"height":116.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":25950652,"version":1,"versionNonce":1662468448,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00065-8351","type":"text","x":394.0,"y":956.0,"width":420.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1341194486,"version":1,"versionNonce":1488033325,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Invoice chase","originalText":"Invoice chase","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00066-4165","type":"text","x":394.0,"y":986.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1435931710,"version":1,"versionNonce":1540836580,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"finds overdue invoices and waits for approval","originalText":"finds overdue invoices and waits for approval","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00067-9906","type":"text","x":838.0,"y":974.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":715033667,"version":1,"versionNonce":579936564,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"42m ago","originalText":"42m ago","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00068-7507","type":"text","x":1028.0,"y":974.0,"width":220.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1140587399,"version":1,"versionNonce":1654704984,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"1","originalText":"1","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00069-9842","type":"rectangle","x":1298.0,"y":971.0,"width":91.5,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":576563694,"version":1,"versionNonce":1899282338,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00070-5680","type":"text","x":1308.0,"y":977.0,"width":71.5,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1123076943,"version":1,"versionNonce":1602036176,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published","originalText":"Published","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00071-5735","type":"rectangle","x":1490.0,"y":968.0,"width":90.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":528968053,"version":1,"versionNonce":380845192,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00072-7877","type":"text","x":1498.0,"y":977.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1763873787,"version":1,"versionNonce":324182149,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules","originalText":"Schedules","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00073-4681","type":"rectangle","x":1578.0,"y":968.0,"width":62.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":945859970,"version":1,"versionNonce":663732467,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00074-6537","type":"text","x":1586.0,"y":977.0,"width":46.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1638376273,"version":1,"versionNonce":476341223,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open","originalText":"Open","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00075-3353","type":"rectangle","x":378.0,"y":1056.0,"width":1280.0,"height":116.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2127807317,"version":1,"versionNonce":1239867130,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00076-1927","type":"text","x":394.0,"y":1072.0,"width":420.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":396168356,"version":1,"versionNonce":124456771,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Nightly data sync","originalText":"Nightly data sync","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00077-7312","type":"text","x":394.0,"y":1102.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":932847009,"version":1,"versionNonce":1136657573,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"pulls yesterday's orders into the warehouse","originalText":"pulls yesterday's orders into the warehouse","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00078-3708","type":"text","x":838.0,"y":1090.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1894159250,"version":1,"versionNonce":1012709843,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"3:04 AM","originalText":"3:04 AM","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00079-5572","type":"text","x":1028.0,"y":1090.0,"width":220.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":497553542,"version":1,"versionNonce":638253475,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"1","originalText":"1","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00080-3042","type":"rectangle","x":1298.0,"y":1087.0,"width":91.5,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":587472721,"version":1,"versionNonce":675609471,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00081-3890","type":"text","x":1308.0,"y":1093.0,"width":71.5,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":462129217,"version":1,"versionNonce":1015734739,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published","originalText":"Published","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00082-2632","type":"rectangle","x":1490.0,"y":1084.0,"width":90.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":478897913,"version":1,"versionNonce":615174732,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00083-5944","type":"text","x":1498.0,"y":1093.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":900147038,"version":1,"versionNonce":1661400591,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules","originalText":"Schedules","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00084-1133","type":"rectangle","x":1578.0,"y":1084.0,"width":62.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":932175593,"version":1,"versionNonce":1096001399,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00085-6440","type":"text","x":1586.0,"y":1093.0,"width":46.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":569733735,"version":1,"versionNonce":601834485,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open","originalText":"Open","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00086-5198","type":"rectangle","x":850.0,"y":564.0,"width":838.0,"height":910.0,"angle":0,"strokeColor":"#eef2f6","backgroundColor":"#eef2f6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1508085840,"version":1,"versionNonce":1174710518,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00087-9286","type":"rectangle","x":870.0,"y":572.0,"width":760.0,"height":890.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":902644202,"version":1,"versionNonce":231123752,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00088-2365","type":"text","x":898.0,"y":598.0,"width":560.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2086616108,"version":1,"versionNonce":1993707349,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules for Weekly Feedback Report","originalText":"Schedules for Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00089-2109","type":"rectangle","x":1572.0,"y":592.0,"width":32.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":469442566,"version":1,"versionNonce":1522397595,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00090-5628","type":"text","x":1580.0,"y":601.0,"width":16.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1479071346,"version":1,"versionNonce":972655768,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"×","originalText":"×","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00091-7545","type":"rectangle","x":1350.0,"y":654.0,"width":108.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1287500333,"version":1,"versionNonce":2052394368,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00092-5588","type":"text","x":1358.0,"y":663.0,"width":92.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1295683940,"version":1,"versionNonce":2065564293,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Refresh","originalText":"Refresh","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00093-1539","type":"rectangle","x":1470.0,"y":654.0,"width":132.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1018250718,"version":1,"versionNonce":1251342303,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00094-2128","type":"text","x":1478.0,"y":663.0,"width":116.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":954909292,"version":1,"versionNonce":1025937376,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"New schedule","originalText":"New schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00095-2000","type":"line","x":898.0,"y":712.0,"width":704.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":407431282,"version":1,"versionNonce":1190404073,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[704.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"r-00096-7467","type":"rectangle","x":898.0,"y":740.0,"width":704.0,"height":132.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1285523897,"version":1,"versionNonce":309218069,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00097-3871","type":"text","x":918.0,"y":758.0,"width":330.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":17186237,"version":1,"versionNonce":1414020680,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly feedback report","originalText":"Weekly feedback report","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00098-9498","type":"rectangle","x":1498.0,"y":756.0,"width":76.5,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1855985364,"version":1,"versionNonce":1816181586,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00099-1939","type":"text","x":1508.0,"y":762.0,"width":56.5,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1799095735,"version":1,"versionNonce":1706389308,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Enabled","originalText":"Enabled","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00100-7554","type":"text","x":918.0,"y":792.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":742730298,"version":1,"versionNonce":333922280,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekdays · 09:00 · Asia/Shanghai","originalText":"Weekdays · 09:00 · Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00101-6776","type":"text","x":918.0,"y":830.0,"width":360.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1299450568,"version":1,"versionNonce":680256711,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Next · Mon 24 Aug at 09:00","originalText":"Next · Mon 24 Aug at 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00102-9253","type":"text","x":1520.0,"y":828.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1781005480,"version":1,"versionNonce":761729975,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open →","originalText":"Open →","fontSize":14,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00103-3873","type":"rectangle","x":898.0,"y":894.0,"width":704.0,"height":132.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":886979113,"version":1,"versionNonce":792781013,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00104-7840","type":"text","x":918.0,"y":912.0,"width":330.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2093243933,"version":1,"versionNonce":1396738799,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Monthly billing review","originalText":"Monthly billing review","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00105-9146","type":"rectangle","x":1498.0,"y":910.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":{"type":3},"seed":1596699383,"version":1,"versionNonce":1439074510,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00106-5129","type":"text","x":1508.0,"y":916.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":251017436,"version":1,"versionNonce":1771327623,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Paused","originalText":"Paused","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00107-9167","type":"text","x":918.0,"y":946.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":2116036055,"version":1,"versionNonce":1840661992,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Monthly · day 1 · Asia/Shanghai","originalText":"Monthly · day 1 · Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00108-2803","type":"text","x":918.0,"y":984.0,"width":360.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":81151952,"version":1,"versionNonce":1962642283,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"No upcoming attempt","originalText":"No upcoming attempt","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00109-2582","type":"text","x":1520.0,"y":982.0,"width":74.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1163075914,"version":1,"versionNonce":864749470,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open →","originalText":"Open →","fontSize":14,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00110-2361","type":"ellipse","x":1742.0,"y":640.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1035111375,"version":1,"versionNonce":488753988,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00111-9496","type":"text","x":1742.0,"y":645.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":927486490,"version":1,"versionNonce":764298400,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"1","originalText":"1","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00112-9613","type":"text","x":1782.0,"y":640.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":357270525,"version":1,"versionNonce":1275814911,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"ONE TITLE IDENTIFIES COLLECTION AND OWNER","originalText":"ONE TITLE IDENTIFIES COLLECTION AND OWNER","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00113-4694","type":"text","x":1782.0,"y":664.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-00"],"frameId":"frame-00006-8349","roundness":null,"seed":1041902395,"version":1,"versionNonce":534844951,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules for Weekly Feedback Report replaces a repeated title stack. The body starts with collection actions, while each row supplies the facts needed for selection.","originalText":"Schedules for Weekly Feedback Report replaces a repeated title stack. The body starts with collection actions, while each row supplies the facts needed for selection.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00114-7938","type":"frame","x":2020.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":1411489382,"version":1,"versionNonce":1021841410,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"02 · Workflow — schedule setup panel"},{"id":"r-00116-4241","type":"rectangle","x":2020.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1876246349,"version":1,"versionNonce":80241220,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00117-6243","type":"rectangle","x":2020.0,"y":480.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1319364224,"version":1,"versionNonce":1347790009,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00118-4897","type":"text","x":2042.0,"y":502.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":410136159,"version":1,"versionNonce":384367602,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00119-3225","type":"text","x":2042.0,"y":534.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1364866044,"version":1,"versionNonce":314227250,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00120-2275","type":"text","x":2044.0,"y":592.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":977006473,"version":1,"versionNonce":1642839309,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00121-4287","type":"rectangle","x":2030.0,"y":626.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":104862544,"version":1,"versionNonce":517658270,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00122-3493","type":"text","x":2044.0,"y":634.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1834228494,"version":1,"versionNonce":2058606047,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00123-7541","type":"text","x":2044.0,"y":676.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":381793853,"version":1,"versionNonce":1469146757,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00124-7434","type":"text","x":2044.0,"y":718.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":742427589,"version":1,"versionNonce":1963379619,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00125-1982","type":"text","x":2044.0,"y":760.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":665551224,"version":1,"versionNonce":1694778842,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00126-1457","type":"line","x":2030.0,"y":1398.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":575442310,"version":1,"versionNonce":1414991384,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00127-2658","type":"text","x":2042.0,"y":1420.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1689580120,"version":1,"versionNonce":1282207776,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00128-6537","type":"rectangle","x":2230.0,"y":480.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":519264794,"version":1,"versionNonce":899622336,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00129-5828","type":"text","x":2258.0,"y":496.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1179190543,"version":1,"versionNonce":2027513942,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00130-1630","type":"text","x":2258.0,"y":526.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":78935896,"version":1,"versionNonce":371833070,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published · v7 · finance workspace","originalText":"Published · v7 · finance workspace","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00131-9104","type":"rectangle","x":3052.0,"y":498.0,"width":70.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1385958260,"version":1,"versionNonce":2035593660,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00132-6479","type":"text","x":3060.0,"y":507.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1152331634,"version":1,"versionNonce":145085702,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run","originalText":"Run","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00133-3857","type":"rectangle","x":3134.0,"y":498.0,"width":104.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1704857494,"version":1,"versionNonce":1342340781,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00134-7633","type":"text","x":3142.0,"y":507.0,"width":88.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":656473196,"version":1,"versionNonce":151547198,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedules","originalText":"Schedules","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00135-5244","type":"rectangle","x":3236.0,"y":498.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1390691298,"version":1,"versionNonce":181756514,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00136-7408","type":"text","x":3244.0,"y":507.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":70438691,"version":1,"versionNonce":789457814,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Add node","originalText":"Add node","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00137-6362","type":"rectangle","x":3338.0,"y":498.0,"width":88.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":819523125,"version":1,"versionNonce":1171447134,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00138-5222","type":"text","x":3346.0,"y":507.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1287009377,"version":1,"versionNonce":170536697,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Save","originalText":"Save","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00139-2923","type":"rectangle","x":3434.0,"y":498.0,"width":116.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1485656038,"version":1,"versionNonce":1780513387,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00140-4718","type":"text","x":3442.0,"y":507.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":853229179,"version":1,"versionNonce":1066025595,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Publish","originalText":"Publish","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00141-1711","type":"rectangle","x":2250.0,"y":572.0,"width":700.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f7f9fc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1348097111,"version":1,"versionNonce":978578270,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00142-4152","type":"text","x":2278.0,"y":606.0,"width":420.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":332916397,"version":1,"versionNonce":1240386232,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflow canvas remains visible","originalText":"Workflow canvas remains visible","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00143-7347","type":"text","x":2278.0,"y":646.0,"width":590.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":721824144,"version":1,"versionNonce":777213346,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"The Schedule belongs to this Workflow and stays beside the canvas, not inside the graph.","originalText":"The Schedule belongs to this Workflow and stays beside the canvas, not inside the graph.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00144-4327","type":"rectangle","x":2294.0,"y":764.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1838874678,"version":1,"versionNonce":1002026360,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00145-3950","type":"rectangle","x":2294.0,"y":764.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":878182887,"version":1,"versionNonce":1008413870,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00146-6556","type":"text","x":2312.0,"y":786.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":895217346,"version":1,"versionNonce":2063611206,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Collect feedback","originalText":"Collect feedback","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00147-3971","type":"text","x":2312.0,"y":816.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":725768761,"version":1,"versionNonce":1225345159,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark messages","originalText":"Lark messages","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00148-1061","type":"rectangle","x":2312.0,"y":842.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1735216555,"version":1,"versionNonce":1604175653,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00149-2987","type":"text","x":2322.0,"y":848.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":397883687,"version":1,"versionNonce":684087115,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00150-9579","type":"arrow","x":2478.0,"y":814.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":208869916,"version":1,"versionNonce":2006892978,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00151-1054","type":"rectangle","x":2512.0,"y":764.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1692938662,"version":1,"versionNonce":1441961569,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00152-8114","type":"rectangle","x":2512.0,"y":764.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":699295638,"version":1,"versionNonce":891186859,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00153-8589","type":"text","x":2530.0,"y":786.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":510992285,"version":1,"versionNonce":1576166482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Group themes","originalText":"Group themes","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00154-8979","type":"text","x":2530.0,"y":816.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":156673480,"version":1,"versionNonce":1106244308,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AI task","originalText":"AI task","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00155-8820","type":"rectangle","x":2530.0,"y":842.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1668558137,"version":1,"versionNonce":665174432,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00156-6951","type":"text","x":2540.0,"y":848.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":485289655,"version":1,"versionNonce":151470457,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00157-5737","type":"arrow","x":2696.0,"y":814.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1482007950,"version":1,"versionNonce":612605097,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00158-3054","type":"rectangle","x":2730.0,"y":764.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1772933171,"version":1,"versionNonce":1780193726,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00159-6079","type":"rectangle","x":2730.0,"y":764.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":777722959,"version":1,"versionNonce":1899398292,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00160-1399","type":"text","x":2748.0,"y":786.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":541339052,"version":1,"versionNonce":1539402530,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Post summary","originalText":"Post summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00161-1401","type":"text","x":2748.0,"y":816.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":683421223,"version":1,"versionNonce":1495358383,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark message","originalText":"Lark message","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00162-3093","type":"rectangle","x":2748.0,"y":842.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":834662305,"version":1,"versionNonce":889045888,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00163-6131","type":"text","x":2758.0,"y":848.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1901300880,"version":1,"versionNonce":278442906,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00164-1654","type":"rectangle","x":2978.0,"y":572.0,"width":548.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":43743664,"version":1,"versionNonce":852096618,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00165-3689","type":"text","x":3006.0,"y":600.0,"width":300.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1036909346,"version":1,"versionNonce":261958550,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule","originalText":"Schedule","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00166-5941","type":"rectangle","x":3006.0,"y":642.0,"width":492.0,"height":74.0,"angle":0,"strokeColor":"#84adff","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":620608714,"version":1,"versionNonce":734687644,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00167-3740","type":"text","x":3022.0,"y":666.0,"width":460.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1494028649,"version":1,"versionNonce":2072002870,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report · Published","originalText":"Weekly Feedback Report · Published","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00168-3004","type":"text","x":3006.0,"y":736.0,"width":103.74,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1496873975,"version":1,"versionNonce":773540226,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SCHEDULE NAME","originalText":"SCHEDULE NAME","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00169-3405","type":"rectangle","x":3006.0,"y":758.0,"width":492.0,"height":54.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1249694682,"version":1,"versionNonce":1178503597,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00170-2732","type":"text","x":3018.0,"y":770.0,"width":468.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1536057199,"version":1,"versionNonce":479706769,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report recurring work","originalText":"Weekly Feedback Report recurring work","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00171-6549","type":"text","x":3006.0,"y":812.0,"width":71.82,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":927871506,"version":1,"versionNonce":130941124,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"HOW OFTEN","originalText":"HOW OFTEN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00172-5707","type":"text","x":3006.0,"y":852.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1250698091,"version":1,"versionNonce":715734423,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Repeat","originalText":"Repeat","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00173-1259","type":"rectangle","x":3090.0,"y":838.0,"width":408.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1792584233,"version":1,"versionNonce":1492765337,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00174-1025","type":"text","x":3102.0,"y":852.0,"width":372.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1538522105,"version":1,"versionNonce":2060252004,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Mon · Tue · Wed · Thu · Fri","originalText":"Mon · Tue · Wed · Thu · Fri","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00175-2749","type":"text","x":3478.0,"y":852.0,"width":12.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":247896113,"version":1,"versionNonce":841092343,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾","originalText":"▾","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00176-3094","type":"text","x":3006.0,"y":908.0,"width":20.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1190508410,"version":1,"versionNonce":167894683,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"at","originalText":"at","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00177-3468","type":"text","x":3154.0,"y":908.0,"width":20.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1589933932,"version":1,"versionNonce":312744817,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"in","originalText":"in","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00178-7770","type":"rectangle","x":3034.0,"y":894.0,"width":104.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1268317321,"version":1,"versionNonce":1830672447,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00179-1429","type":"text","x":3046.0,"y":908.0,"width":80.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1319605527,"version":1,"versionNonce":1847803266,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"09:00","originalText":"09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00180-9909","type":"rectangle","x":3182.0,"y":894.0,"width":316.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1057416929,"version":1,"versionNonce":1069269234,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00181-5551","type":"text","x":3194.0,"y":908.0,"width":286.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":182516853,"version":1,"versionNonce":1136153989,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Asia/Shanghai","originalText":"Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00182-4865","type":"text","x":3478.0,"y":908.0,"width":12.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":290882284,"version":1,"versionNonce":290949521,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾","originalText":"▾","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00183-3718","type":"text","x":3006.0,"y":900.0,"width":246.0,"height":20.0,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1611275168,"version":1,"versionNonce":1569877340,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Every weekday at 09:00","originalText":"Every weekday at 09:00","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00184-5935","type":"text","x":3020.0,"y":938.0,"width":178.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":885314871,"version":1,"versionNonce":894129429,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"write it as cron instead","originalText":"write it as cron instead","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00185-1454","type":"text","x":3388.0,"y":938.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":546559748,"version":1,"versionNonce":1408985192,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"0 9 * * 1-5","originalText":"0 9 * * 1-5","fontSize":14,"fontFamily":3,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00186-5125","type":"text","x":3006.0,"y":980.0,"width":159.6,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":886608355,"version":1,"versionNonce":1552210093,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"RUN INPUT (OPTIONAL)","originalText":"RUN INPUT (OPTIONAL)","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00187-7682","type":"rectangle","x":3006.0,"y":1002.0,"width":492.0,"height":54.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":191375016,"version":1,"versionNonce":1046422973,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00188-5697","type":"text","x":3018.0,"y":1014.0,"width":468.0,"height":17.5,"angle":0,"strokeColor":"#98a2b3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1894229867,"version":1,"versionNonce":1699882466,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"No prompt","originalText":"No prompt","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00189-5236","type":"rectangle","x":3006.0,"y":1390.0,"width":178.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":1400182120,"version":1,"versionNonce":1018760482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00190-5184","type":"text","x":3014.0,"y":1399.0,"width":162.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1820942949,"version":1,"versionNonce":534969223,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Review schedule","originalText":"Review schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00191-2353","type":"rectangle","x":3196.0,"y":1390.0,"width":92.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":{"type":3},"seed":722181350,"version":1,"versionNonce":2104303521,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00192-2118","type":"text","x":3204.0,"y":1399.0,"width":76.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1359525694,"version":1,"versionNonce":1762637342,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Cancel","originalText":"Cancel","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00193-2531","type":"ellipse","x":3622.0,"y":700.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1669290389,"version":1,"versionNonce":176991154,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00194-6133","type":"text","x":3622.0,"y":705.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1755089543,"version":1,"versionNonce":839737480,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"2","originalText":"2","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00195-1479","type":"text","x":3662.0,"y":700.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":2117177741,"version":1,"versionNonce":773864414,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"ONLY RECURRING WORK","originalText":"ONLY RECURRING WORK","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00196-5775","type":"text","x":3662.0,"y":724.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-01"],"frameId":"frame-00114-7938","roundness":null,"seed":1625132620,"version":1,"versionNonce":889282482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"The public contract accepts a five-field cron and IANA timezone. POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/preview returns the next fires.","originalText":"The public contract accepts a five-field cron and IANA timezone. POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/preview returns the next fires.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00197-6704","type":"frame","x":3900.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":1769110274,"version":1,"versionNonce":1175592160,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"03 · Schedule — review before creation"},{"id":"r-00199-3182","type":"rectangle","x":3900.0,"y":480.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1930016938,"version":1,"versionNonce":2098495918,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00200-6088","type":"rectangle","x":3900.0,"y":480.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1290600708,"version":1,"versionNonce":1595636027,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00201-7537","type":"text","x":3922.0,"y":502.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":34969064,"version":1,"versionNonce":2130968942,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00202-2032","type":"text","x":3922.0,"y":534.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":213301808,"version":1,"versionNonce":2055773198,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00203-5999","type":"text","x":3924.0,"y":592.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1020089718,"version":1,"versionNonce":1939538597,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00204-6532","type":"rectangle","x":3910.0,"y":626.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1092981802,"version":1,"versionNonce":1213664191,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00205-2107","type":"text","x":3924.0,"y":634.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":932631711,"version":1,"versionNonce":1897011679,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00206-2546","type":"text","x":3924.0,"y":676.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1031517986,"version":1,"versionNonce":715407458,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00207-3039","type":"text","x":3924.0,"y":718.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":678602002,"version":1,"versionNonce":439975504,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00208-5199","type":"text","x":3924.0,"y":760.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1848088642,"version":1,"versionNonce":1466871048,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00209-4428","type":"line","x":3910.0,"y":1398.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":936410118,"version":1,"versionNonce":742265315,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00210-5907","type":"text","x":3922.0,"y":1420.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1559678674,"version":1,"versionNonce":684574741,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00211-3698","type":"rectangle","x":4110.0,"y":480.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1469623652,"version":1,"versionNonce":379545953,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00212-3624","type":"text","x":4138.0,"y":496.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":63272453,"version":1,"versionNonce":2105442010,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Review schedule","originalText":"Review schedule","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00213-5193","type":"text","x":4138.0,"y":526.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1334222681,"version":1,"versionNonce":1201256651,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Confirm the recurring setup before creating it.","originalText":"Confirm the recurring setup before creating it.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00214-3734","type":"rectangle","x":4260.0,"y":588.0,"width":1060.0,"height":806.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1323808052,"version":1,"versionNonce":1123971318,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00215-7619","type":"text","x":4294.0,"y":620.0,"width":680.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1816483779,"version":1,"versionNonce":2102405779,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report recurring work","originalText":"Weekly Feedback Report recurring work","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00216-4753","type":"rectangle","x":5088.0,"y":618.0,"width":189.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1190651454,"version":1,"versionNonce":1173669521,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00217-8965","type":"text","x":5098.0,"y":624.0,"width":169.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":124587761,"version":1,"versionNonce":1122932388,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Enabled after creation","originalText":"Enabled after creation","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00218-8185","type":"line","x":4294.0,"y":666.0,"width":990.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1276078563,"version":1,"versionNonce":1681605062,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[990.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00219-9665","type":"text","x":4294.0,"y":698.0,"width":63.839999999999996,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1296937433,"version":1,"versionNonce":1146291659,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"WORKFLOW","originalText":"WORKFLOW","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00220-5358","type":"rectangle","x":4294.0,"y":720.0,"width":476.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1215085236,"version":1,"versionNonce":195927304,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00221-6795","type":"text","x":4306.0,"y":732.0,"width":452.0,"height":17.5,"angle":0,"strokeColor":"#98a2b3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1740168010,"version":1,"versionNonce":1087832797,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00222-2980","type":"text","x":4790.0,"y":698.0,"width":103.74,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1790164805,"version":1,"versionNonce":920867415,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SCHEDULE NAME","originalText":"SCHEDULE NAME","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00223-8438","type":"rectangle","x":4790.0,"y":720.0,"width":494.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1366254451,"version":1,"versionNonce":1815245643,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00224-8226","type":"text","x":4802.0,"y":732.0,"width":470.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":483652934,"version":1,"versionNonce":2101213953,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report recurring work","originalText":"Weekly Feedback Report recurring work","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00225-3091","type":"text","x":4294.0,"y":778.0,"width":47.879999999999995,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1888155154,"version":1,"versionNonce":1926139030,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"REPEAT","originalText":"REPEAT","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00226-8077","type":"rectangle","x":4294.0,"y":800.0,"width":476.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":322730471,"version":1,"versionNonce":394147112,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00227-1832","type":"text","x":4306.0,"y":812.0,"width":452.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":445106343,"version":1,"versionNonce":1629914425,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Every weekday at 09:00","originalText":"Every weekday at 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00228-2228","type":"text","x":4790.0,"y":778.0,"width":71.82,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":389805047,"version":1,"versionNonce":1275830689,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"TIME ZONE","originalText":"TIME ZONE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00229-3505","type":"rectangle","x":4790.0,"y":800.0,"width":494.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":779260191,"version":1,"versionNonce":86096647,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00230-4957","type":"text","x":4802.0,"y":812.0,"width":470.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1135469991,"version":1,"versionNonce":1863609270,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Asia/Shanghai","originalText":"Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00231-1844","type":"text","x":4294.0,"y":858.0,"width":159.6,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":2096656619,"version":1,"versionNonce":212164580,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"RUN INPUT (OPTIONAL)","originalText":"RUN INPUT (OPTIONAL)","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00232-6105","type":"rectangle","x":4294.0,"y":880.0,"width":990.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":674724316,"version":1,"versionNonce":1768975877,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00233-5516","type":"text","x":4306.0,"y":892.0,"width":966.0,"height":17.5,"angle":0,"strokeColor":"#98a2b3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":533202244,"version":1,"versionNonce":325534189,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"No prompt","originalText":"No prompt","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00234-4614","type":"text","x":4294.0,"y":946.0,"width":520.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1198064046,"version":1,"versionNonce":734576880,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"NEXT FIVE FIRE TIMES","originalText":"NEXT FIVE FIRE TIMES","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00235-2047","type":"rectangle","x":4294.0,"y":978.0,"width":990.0,"height":176.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":1280066220,"version":1,"versionNonce":701076606,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"e-00236-8865","type":"ellipse","x":4320.0,"y":1006.0,"width":24.0,"height":24.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1404446853,"version":1,"versionNonce":2119138058,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00237-2216","type":"text","x":4320.0,"y":1010.0,"width":24.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1160277732,"version":1,"versionNonce":473563360,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"1","originalText":"1","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00238-5831","type":"text","x":4358.0,"y":1010.0,"width":230.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":260497651,"version":1,"versionNonce":897492338,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Mon 24 Aug · 09:00","originalText":"Mon 24 Aug · 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00239-2997","type":"ellipse","x":4632.0,"y":1006.0,"width":24.0,"height":24.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":738168148,"version":1,"versionNonce":541405408,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00240-7952","type":"text","x":4632.0,"y":1010.0,"width":24.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":300977165,"version":1,"versionNonce":1826845978,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"2","originalText":"2","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00241-2389","type":"text","x":4670.0,"y":1010.0,"width":230.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":235218993,"version":1,"versionNonce":171714062,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Tue 25 Aug · 09:00","originalText":"Tue 25 Aug · 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00242-7044","type":"ellipse","x":4944.0,"y":1006.0,"width":24.0,"height":24.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":650649869,"version":1,"versionNonce":1999479081,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00243-8087","type":"text","x":4944.0,"y":1010.0,"width":24.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1319898753,"version":1,"versionNonce":511989557,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"3","originalText":"3","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00244-8815","type":"text","x":4982.0,"y":1010.0,"width":230.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":611896562,"version":1,"versionNonce":344596801,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Wed 26 Aug · 09:00","originalText":"Wed 26 Aug · 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00245-7083","type":"ellipse","x":4320.0,"y":1068.0,"width":24.0,"height":24.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":305370333,"version":1,"versionNonce":780437428,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00246-3068","type":"text","x":4320.0,"y":1072.0,"width":24.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1955085526,"version":1,"versionNonce":812090754,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"4","originalText":"4","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00247-2183","type":"text","x":4358.0,"y":1072.0,"width":230.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1137533294,"version":1,"versionNonce":1049318968,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Thu 27 Aug · 09:00","originalText":"Thu 27 Aug · 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00248-8402","type":"ellipse","x":4632.0,"y":1068.0,"width":24.0,"height":24.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":505132239,"version":1,"versionNonce":656712894,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00249-6370","type":"text","x":4632.0,"y":1072.0,"width":24.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":569123867,"version":1,"versionNonce":1467139771,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"5","originalText":"5","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00250-1827","type":"text","x":4670.0,"y":1072.0,"width":230.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1347641038,"version":1,"versionNonce":282773552,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Fri 28 Aug · 09:00","originalText":"Fri 28 Aug · 09:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00251-5030","type":"text","x":4294.0,"y":1228.0,"width":860.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":811109853,"version":1,"versionNonce":502063850,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Create schedule sends the reviewed name, cron expression, time zone, enabled state, and optional run input.","originalText":"Create schedule sends the reviewed name, cron expression, time zone, enabled state, and optional run input.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00252-7008","type":"rectangle","x":4996.0,"y":1296.0,"width":170.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":466891768,"version":1,"versionNonce":436801118,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00253-2107","type":"text","x":5004.0,"y":1305.0,"width":154.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":658439520,"version":1,"versionNonce":1518962530,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Create schedule","originalText":"Create schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00254-1104","type":"rectangle","x":5178.0,"y":1296.0,"width":106.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":{"type":3},"seed":230743727,"version":1,"versionNonce":1072800408,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00255-5651","type":"text","x":5186.0,"y":1305.0,"width":90.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1028724892,"version":1,"versionNonce":1558043887,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Back","originalText":"Back","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00256-6124","type":"ellipse","x":5502.0,"y":760.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":281079382,"version":1,"versionNonce":1504403574,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00257-2607","type":"text","x":5502.0,"y":765.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":1811604740,"version":1,"versionNonce":900397227,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"3","originalText":"3","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00258-4028","type":"text","x":5542.0,"y":760.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":887056660,"version":1,"versionNonce":192466064,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"ONE WORKFLOW-SCOPED CREATE","originalText":"ONE WORKFLOW-SCOPED CREATE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00259-5457","type":"text","x":5542.0,"y":784.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-02"],"frameId":"frame-00197-6704","roundness":null,"seed":318552072,"version":1,"versionNonce":1114999628,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Create calls POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules; service and owner resolution stay behind the API.","originalText":"Create calls POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules; service and owner resolution stay behind the API.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00260-2525","type":"frame","x":140.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":876571612,"version":1,"versionNonce":896574535,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"04 · Schedule — creation pending"},{"id":"r-00262-5640","type":"rectangle","x":140.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1845443334,"version":1,"versionNonce":2073365481,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00263-4175","type":"rectangle","x":140.0,"y":1740.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":267588938,"version":1,"versionNonce":1667698373,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00264-4785","type":"text","x":162.0,"y":1762.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":2042629525,"version":1,"versionNonce":1020241089,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00265-6102","type":"text","x":162.0,"y":1794.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":753998342,"version":1,"versionNonce":729836677,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00266-6060","type":"text","x":164.0,"y":1852.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":698209142,"version":1,"versionNonce":1966970064,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00267-3276","type":"rectangle","x":150.0,"y":1886.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":1393625662,"version":1,"versionNonce":1029784003,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00268-4603","type":"text","x":164.0,"y":1894.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1055728274,"version":1,"versionNonce":831086741,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00269-9177","type":"text","x":164.0,"y":1936.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":77523420,"version":1,"versionNonce":1253314483,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00270-2932","type":"text","x":164.0,"y":1978.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1016961459,"version":1,"versionNonce":1538521132,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00271-6467","type":"text","x":164.0,"y":2020.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1239144377,"version":1,"versionNonce":596484911,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00272-1374","type":"line","x":150.0,"y":2658.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1784735932,"version":1,"versionNonce":432222029,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00273-6042","type":"text","x":162.0,"y":2680.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1580909918,"version":1,"versionNonce":195579152,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00274-7807","type":"rectangle","x":350.0,"y":1740.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":2113888384,"version":1,"versionNonce":2081863395,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00275-6223","type":"text","x":378.0,"y":1756.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":169949652,"version":1,"versionNonce":419800546,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00276-1090","type":"text","x":378.0,"y":1786.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":736469814,"version":1,"versionNonce":1047377509,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published capabilities can run manually or on a schedule.","originalText":"Published capabilities can run manually or on a schedule.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00277-3436","type":"text","x":378.0,"y":1838.0,"width":47.879999999999995,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1161908910,"version":1,"versionNonce":746395411,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SEARCH","originalText":"SEARCH","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00278-1762","type":"rectangle","x":378.0,"y":1860.0,"width":360.0,"height":44.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":2021485428,"version":1,"versionNonce":1820387802,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00279-9956","type":"text","x":390.0,"y":1872.0,"width":336.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1937656293,"version":1,"versionNonce":1174461252,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Search workflows","originalText":"Search workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00280-8215","type":"rectangle","x":378.0,"y":1926.0,"width":1280.0,"height":42.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1271922146,"version":1,"versionNonce":2087289562,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00281-2690","type":"text","x":392.0,"y":1939.0,"width":432.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":421369496,"version":1,"versionNonce":1454350275,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"NAME","originalText":"NAME","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00282-7347","type":"text","x":852.0,"y":1939.0,"width":162.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1940891515,"version":1,"versionNonce":1299033333,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"LAST RUN","originalText":"LAST RUN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00283-6539","type":"text","x":1042.0,"y":1939.0,"width":242.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1526435265,"version":1,"versionNonce":72202831,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"STARTS ON ITS OWN","originalText":"STARTS ON ITS OWN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00284-9134","type":"text","x":1312.0,"y":1939.0,"width":152.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":2087332966,"version":1,"versionNonce":925214654,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"STATE","originalText":"STATE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00285-7041","type":"text","x":1492.0,"y":1939.0,"width":152.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1845756109,"version":1,"versionNonce":714897300,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"ACTIONS","originalText":"ACTIONS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00286-3215","type":"rectangle","x":378.0,"y":1968.0,"width":1280.0,"height":116.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1022065886,"version":1,"versionNonce":920373865,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00287-6770","type":"text","x":394.0,"y":1986.0,"width":420.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":864975025,"version":1,"versionNonce":866516977,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00288-1834","type":"text","x":394.0,"y":2016.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":2131120446,"version":1,"versionNonce":1511403087,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"reads #feedback, groups themes, posts a summary","originalText":"reads #feedback, groups themes, posts a summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00289-6921","type":"text","x":838.0,"y":2002.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":472450020,"version":1,"versionNonce":2144920143,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"2h ago","originalText":"2h ago","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00290-8601","type":"text","x":1028.0,"y":2002.0,"width":220.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":818581024,"version":1,"versionNonce":304071083,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"3 · 1 paused","originalText":"3 · 1 paused","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00291-6313","type":"rectangle","x":1298.0,"y":1998.0,"width":91.5,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":58123773,"version":1,"versionNonce":740900556,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00292-4180","type":"text","x":1308.0,"y":2004.0,"width":71.5,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1351758983,"version":1,"versionNonce":1903406738,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published","originalText":"Published","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00293-3002","type":"rectangle","x":1490.0,"y":1996.0,"width":80.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":268339416,"version":1,"versionNonce":143458115,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00294-7864","type":"text","x":1498.0,"y":2005.0,"width":64.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1355461166,"version":1,"versionNonce":389262101,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule","originalText":"Schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00295-6845","type":"rectangle","x":1578.0,"y":1996.0,"width":62.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":535001494,"version":1,"versionNonce":876661501,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00296-7015","type":"text","x":1586.0,"y":2005.0,"width":46.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1589371627,"version":1,"versionNonce":1008874393,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Open","originalText":"Open","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00297-9533","type":"rectangle","x":1030.0,"y":1842.0,"width":560.0,"height":118.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":{"type":3},"seed":778882890,"version":1,"versionNonce":1755817207,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00298-9212","type":"text","x":1054.0,"y":1864.0,"width":512.0,"height":27.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":111812081,"version":1,"versionNonce":729112653,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule request accepted","originalText":"Schedule request accepted","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00299-6232","type":"text","x":1054.0,"y":1904.0,"width":512.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":736098414,"version":1,"versionNonce":1993261623,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"It will appear in this Workflow's schedule list shortly.","originalText":"It will appear in this Workflow's schedule list shortly.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00300-1122","type":"ellipse","x":1742.0,"y":1980.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1292145875,"version":1,"versionNonce":629429376,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00301-5770","type":"text","x":1742.0,"y":1985.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1961405715,"version":1,"versionNonce":1539765731,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"4","originalText":"4","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00302-6012","type":"text","x":1782.0,"y":1980.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":1629626246,"version":1,"versionNonce":1374769787,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"TOAST, THEN KEEP WORKING","originalText":"TOAST, THEN KEEP WORKING","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00303-7799","type":"text","x":1782.0,"y":2004.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-03"],"frameId":"frame-00260-2525","roundness":null,"seed":365151730,"version":1,"versionNonce":98824580,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"202 Accepted is acknowledged without a second modal; the Workflow-scoped list continues observing the new Schedule.","originalText":"202 Accepted is acknowledged without a second modal; the Workflow-scoped list continues observing the new Schedule.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00304-4144","type":"frame","x":2020.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":546295302,"version":1,"versionNonce":497530721,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"05 · Workflow — schedule overview"},{"id":"r-00306-7706","type":"rectangle","x":2020.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":347659282,"version":1,"versionNonce":1320954301,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00307-9511","type":"rectangle","x":2020.0,"y":1740.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1786334243,"version":1,"versionNonce":1615161826,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00308-2817","type":"text","x":2042.0,"y":1762.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":23980984,"version":1,"versionNonce":181608533,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00309-9408","type":"text","x":2042.0,"y":1794.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":775759437,"version":1,"versionNonce":1744469087,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00310-8537","type":"text","x":2044.0,"y":1852.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":237612953,"version":1,"versionNonce":589400706,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00311-1328","type":"rectangle","x":2030.0,"y":1886.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1796395095,"version":1,"versionNonce":1363634149,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00312-1760","type":"text","x":2044.0,"y":1894.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":115722563,"version":1,"versionNonce":322637929,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00313-7774","type":"text","x":2044.0,"y":1936.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1544538501,"version":1,"versionNonce":242871564,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00314-9055","type":"text","x":2044.0,"y":1978.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1372765004,"version":1,"versionNonce":953976268,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00315-1396","type":"text","x":2044.0,"y":2020.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1871345252,"version":1,"versionNonce":93188674,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00316-9568","type":"line","x":2030.0,"y":2658.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1588412502,"version":1,"versionNonce":1854685628,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00317-1383","type":"text","x":2042.0,"y":2680.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":438307492,"version":1,"versionNonce":1417316670,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00318-8248","type":"rectangle","x":2230.0,"y":1740.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":328433185,"version":1,"versionNonce":1593666473,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00319-6276","type":"text","x":2258.0,"y":1756.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":35102277,"version":1,"versionNonce":290571080,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00320-6616","type":"text","x":2258.0,"y":1786.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1770595668,"version":1,"versionNonce":1579763228,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published · v7 · Schedule overview","originalText":"Published · v7 · Schedule overview","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00321-1135","type":"rectangle","x":3052.0,"y":1758.0,"width":70.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1185418912,"version":1,"versionNonce":1623560410,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00322-9162","type":"text","x":3060.0,"y":1767.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":810927057,"version":1,"versionNonce":1103489694,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run","originalText":"Run","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00323-9467","type":"rectangle","x":3134.0,"y":1758.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1297708600,"version":1,"versionNonce":763041504,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00324-2479","type":"text","x":3142.0,"y":1767.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1215527430,"version":1,"versionNonce":105469687,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule","originalText":"Schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00325-7148","type":"rectangle","x":3236.0,"y":1758.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1398155501,"version":1,"versionNonce":1742134454,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00326-9347","type":"text","x":3244.0,"y":1767.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1135441148,"version":1,"versionNonce":131288340,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Add node","originalText":"Add node","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00327-8092","type":"rectangle","x":3338.0,"y":1758.0,"width":88.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":310922181,"version":1,"versionNonce":1234320569,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00328-3090","type":"text","x":3346.0,"y":1767.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1444524303,"version":1,"versionNonce":1134858845,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Save","originalText":"Save","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00329-9528","type":"rectangle","x":3434.0,"y":1758.0,"width":116.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":949355970,"version":1,"versionNonce":1137116023,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00330-2086","type":"text","x":3442.0,"y":1767.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":982471876,"version":1,"versionNonce":2098186218,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Publish","originalText":"Publish","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00331-8265","type":"rectangle","x":2250.0,"y":1832.0,"width":700.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f7f9fc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1893903657,"version":1,"versionNonce":374564653,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00332-3210","type":"text","x":2278.0,"y":1866.0,"width":420.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":985664479,"version":1,"versionNonce":1388551144,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflow canvas remains visible","originalText":"Workflow canvas remains visible","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00333-1766","type":"text","x":2278.0,"y":1906.0,"width":590.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":977259664,"version":1,"versionNonce":801893374,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule belongs to this published Workflow.","originalText":"Schedule belongs to this published Workflow.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00334-3789","type":"rectangle","x":2294.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1453592909,"version":1,"versionNonce":1936321732,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00335-7550","type":"rectangle","x":2294.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":805568671,"version":1,"versionNonce":1785838234,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00336-1459","type":"text","x":2312.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1229757770,"version":1,"versionNonce":1402617503,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Collect feedback","originalText":"Collect feedback","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00337-7108","type":"text","x":2312.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":515977615,"version":1,"versionNonce":784422278,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark messages","originalText":"Lark messages","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00338-4457","type":"rectangle","x":2312.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1385685230,"version":1,"versionNonce":867602416,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00339-3372","type":"text","x":2322.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1888054710,"version":1,"versionNonce":1855372135,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00340-1475","type":"arrow","x":2478.0,"y":2074.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":286228914,"version":1,"versionNonce":1747593021,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00341-7014","type":"rectangle","x":2512.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":231627040,"version":1,"versionNonce":2143990802,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00342-1531","type":"rectangle","x":2512.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":319882540,"version":1,"versionNonce":433967884,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00343-5520","type":"text","x":2530.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":635552355,"version":1,"versionNonce":363531086,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Group themes","originalText":"Group themes","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00344-2699","type":"text","x":2530.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1062885885,"version":1,"versionNonce":515245013,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AI task","originalText":"AI task","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00345-9067","type":"rectangle","x":2530.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":299524116,"version":1,"versionNonce":771575868,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00346-5069","type":"text","x":2540.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":792666857,"version":1,"versionNonce":506664822,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00347-6227","type":"arrow","x":2696.0,"y":2074.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1023999598,"version":1,"versionNonce":298847028,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00348-6803","type":"rectangle","x":2730.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":349247595,"version":1,"versionNonce":1416394537,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00349-2204","type":"rectangle","x":2730.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":441287446,"version":1,"versionNonce":635111774,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00350-9491","type":"text","x":2748.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":2118448301,"version":1,"versionNonce":584693807,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Post summary","originalText":"Post summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00351-2649","type":"text","x":2748.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":2107050277,"version":1,"versionNonce":973380530,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark message","originalText":"Lark message","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00352-9309","type":"rectangle","x":2748.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":626842951,"version":1,"versionNonce":1903400708,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00353-9923","type":"text","x":2758.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1990220925,"version":1,"versionNonce":55285060,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00354-2481","type":"rectangle","x":2978.0,"y":1832.0,"width":548.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":877145936,"version":1,"versionNonce":1639292581,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00355-1028","type":"text","x":2998.0,"y":1858.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":173186778,"version":1,"versionNonce":44088061,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"←","originalText":"←","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00356-4763","type":"text","x":3036.0,"y":1856.0,"width":400.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1927463562,"version":1,"versionNonce":2086265364,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Morning digest · Weekly Feedback Report","originalText":"Morning digest · Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00357-9192","type":"text","x":3472.0,"y":1858.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1785147760,"version":1,"versionNonce":2099077171,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"×","originalText":"×","fontSize":22,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00358-9434","type":"line","x":2978.0,"y":1922.0,"width":548.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1513422171,"version":1,"versionNonce":1823664160,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[548.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00359-7269","type":"text","x":3006.0,"y":1942.0,"width":84.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":727705543,"version":1,"versionNonce":120523237,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Overview","originalText":"Overview","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00360-9006","type":"text","x":3104.0,"y":1942.0,"width":84.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":236510314,"version":1,"versionNonce":1766164705,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"History","originalText":"History","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00361-1366","type":"line","x":3006.0,"y":1972.0,"width":84.0,"height":0.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":843821975,"version":1,"versionNonce":1380610469,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[84.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"r-00362-9150","type":"rectangle","x":3006.0,"y":2002.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1430725307,"version":1,"versionNonce":1318002525,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00363-5884","type":"text","x":3016.0,"y":2008.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1481581715,"version":1,"versionNonce":770891038,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Active","originalText":"Active","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00364-8456","type":"text","x":3006.0,"y":2044.0,"width":360.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":734596162,"version":1,"versionNonce":2040628811,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Every weekday at 09:00","originalText":"Every weekday at 09:00","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00365-6997","type":"text","x":3006.0,"y":2078.0,"width":260.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1122876795,"version":1,"versionNonce":1741599378,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Asia/Shanghai","originalText":"Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00366-1089","type":"rectangle","x":3006.0,"y":2118.0,"width":108.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1315899378,"version":1,"versionNonce":1450194282,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00367-2204","type":"text","x":3014.0,"y":2127.0,"width":92.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":807783000,"version":1,"versionNonce":117398344,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run now","originalText":"Run now","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00368-7563","type":"rectangle","x":3124.0,"y":2118.0,"width":134.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":137884555,"version":1,"versionNonce":144244524,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00369-3785","type":"text","x":3132.0,"y":2127.0,"width":118.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":727493769,"version":1,"versionNonce":1300099790,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Edit schedule","originalText":"Edit schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00370-7081","type":"rectangle","x":3268.0,"y":2118.0,"width":84.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":{"type":3},"seed":1272752753,"version":1,"versionNonce":1474868682,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00371-1997","type":"text","x":3276.0,"y":2127.0,"width":68.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1602231079,"version":1,"versionNonce":792409572,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"More ▾","originalText":"More ▾","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00372-5050","type":"line","x":3006.0,"y":2186.0,"width":492.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":891097293,"version":1,"versionNonce":251199134,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[492.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00373-8336","type":"text","x":3006.0,"y":2210.0,"width":212.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1386076977,"version":1,"versionNonce":1516832204,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"NEXT SCHEDULED","originalText":"NEXT SCHEDULED","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00374-8233","type":"text","x":3262.0,"y":2210.0,"width":212.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1257776248,"version":1,"versionNonce":889956807,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"LAST ATTEMPT","originalText":"LAST ATTEMPT","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00375-5823","type":"text","x":3006.0,"y":2240.0,"width":220.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":961900029,"version":1,"versionNonce":1240406346,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Tue 25 Aug · 09:00","originalText":"Tue 25 Aug · 09:00","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00376-6682","type":"text","x":3262.0,"y":2240.0,"width":226.0,"height":20.0,"angle":0,"strokeColor":"#b42318","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":591875570,"version":1,"versionNonce":1810507423,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Mon 24 Aug · Failed to start","originalText":"Mon 24 Aug · Failed to start","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00377-8624","type":"line","x":3006.0,"y":2282.0,"width":492.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":131089451,"version":1,"versionNonce":206328479,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[492.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00378-7743","type":"text","x":3006.0,"y":2306.0,"width":212.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":2036912889,"version":1,"versionNonce":1014456524,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"TOTAL ATTEMPTS","originalText":"TOTAL ATTEMPTS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00379-3962","type":"text","x":3262.0,"y":2306.0,"width":212.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":390611999,"version":1,"versionNonce":1994608273,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"FAILED ATTEMPTS","originalText":"FAILED ATTEMPTS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00380-2054","type":"text","x":3006.0,"y":2336.0,"width":220.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1477783032,"version":1,"versionNonce":65007951,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"18","originalText":"18","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00381-3153","type":"text","x":3262.0,"y":2336.0,"width":226.0,"height":20.0,"angle":0,"strokeColor":"#b42318","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1997627259,"version":1,"versionNonce":1362891078,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"1","originalText":"1","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00382-8624","type":"line","x":3006.0,"y":2378.0,"width":492.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1290038231,"version":1,"versionNonce":1738827110,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[492.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00383-3297","type":"text","x":3006.0,"y":2404.0,"width":180.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":215594497,"version":1,"versionNonce":147386482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"RUN INPUT","originalText":"RUN INPUT","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00384-4471","type":"text","x":3006.0,"y":2434.0,"width":492.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1553915941,"version":1,"versionNonce":1481923900,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Summarize new feedback.","originalText":"Summarize new feedback.","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00385-6391","type":"line","x":3006.0,"y":2478.0,"width":492.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":757208151,"version":1,"versionNonce":207170226,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[492.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00386-5209","type":"text","x":3006.0,"y":2508.0,"width":220.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1872097313,"version":1,"versionNonce":13873791,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Advanced details","originalText":"Advanced details","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00387-9170","type":"text","x":3470.0,"y":2508.0,"width":20.0,"height":20.0,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":48813302,"version":1,"versionNonce":688311613,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾","originalText":"▾","fontSize":16,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00388-9155","type":"text","x":3006.0,"y":2544.0,"width":138.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":2048215272,"version":1,"versionNonce":1616672951,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"RUNS","originalText":"RUNS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00389-7360","type":"text","x":3160.0,"y":2544.0,"width":338.0,"height":20.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1497503901,"version":1,"versionNonce":2004615630,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Every weekday at 09:00","originalText":"Every weekday at 09:00","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00390-1160","type":"text","x":3006.0,"y":2578.0,"width":138.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":789765471,"version":1,"versionNonce":627550170,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"TECHNICAL FORMAT","originalText":"TECHNICAL FORMAT","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00391-9997","type":"text","x":3160.0,"y":2578.0,"width":338.0,"height":20.0,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":2050882022,"version":1,"versionNonce":258776033,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"0 9 * * 1-5","originalText":"0 9 * * 1-5","fontSize":16,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00392-9147","type":"ellipse","x":3622.0,"y":2040.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1161152771,"version":1,"versionNonce":589445174,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00393-8972","type":"text","x":3622.0,"y":2045.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":1928803694,"version":1,"versionNonce":1117098291,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"5","originalText":"5","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00394-7145","type":"text","x":3662.0,"y":2040.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":543528819,"version":1,"versionNonce":465641956,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"OVERVIEW ANSWERS WHAT IS CONFIGURED","originalText":"OVERVIEW ANSWERS WHAT IS CONFIGURED","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00395-3323","type":"text","x":3662.0,"y":2064.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-04"],"frameId":"frame-00304-4144","roundness":null,"seed":369456813,"version":1,"versionNonce":792402116,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run and Edit stay direct; Pause and Delete stay under More. Expanded details pair plain meaning with the exact technical format.","originalText":"Run and Edit stay direct; Pause and Delete stay under More. Expanded details pair plain meaning with the exact technical format.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00396-8363","type":"frame","x":3900.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":2029666418,"version":1,"versionNonce":1073888369,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"06 · Workflow — schedule history"},{"id":"r-00398-3073","type":"rectangle","x":3900.0,"y":1740.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1935817490,"version":1,"versionNonce":1032591502,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00399-8545","type":"rectangle","x":3900.0,"y":1740.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1987143566,"version":1,"versionNonce":922473799,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00400-8920","type":"text","x":3922.0,"y":1762.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1604411656,"version":1,"versionNonce":1643688975,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00401-8082","type":"text","x":3922.0,"y":1794.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":388691878,"version":1,"versionNonce":538836443,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00402-9048","type":"text","x":3924.0,"y":1852.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":777446128,"version":1,"versionNonce":1514467390,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00403-9590","type":"rectangle","x":3910.0,"y":1886.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":555662272,"version":1,"versionNonce":1367260114,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00404-7568","type":"text","x":3924.0,"y":1894.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1354261893,"version":1,"versionNonce":1221287834,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00405-9256","type":"text","x":3924.0,"y":1936.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2139072701,"version":1,"versionNonce":1629785427,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00406-4960","type":"text","x":3924.0,"y":1978.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1531926736,"version":1,"versionNonce":2060568492,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00407-9631","type":"text","x":3924.0,"y":2020.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":563739678,"version":1,"versionNonce":1679204551,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00408-3297","type":"line","x":3910.0,"y":2658.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1057536741,"version":1,"versionNonce":1302991840,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00409-9907","type":"text","x":3922.0,"y":2680.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1427608510,"version":1,"versionNonce":1895282187,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00410-1016","type":"rectangle","x":4110.0,"y":1740.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1554811399,"version":1,"versionNonce":681922074,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00411-2523","type":"text","x":4138.0,"y":1756.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":351222878,"version":1,"versionNonce":823279569,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00412-1572","type":"text","x":4138.0,"y":1786.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":13688493,"version":1,"versionNonce":1595893489,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published · v7 · Schedule history","originalText":"Published · v7 · Schedule history","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00413-5067","type":"rectangle","x":4932.0,"y":1758.0,"width":70.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":296678134,"version":1,"versionNonce":1561160662,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00414-1026","type":"text","x":4940.0,"y":1767.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1704210609,"version":1,"versionNonce":1993917289,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run","originalText":"Run","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00415-7462","type":"rectangle","x":5014.0,"y":1758.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1162833756,"version":1,"versionNonce":108018347,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00416-1302","type":"text","x":5022.0,"y":1767.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1554785641,"version":1,"versionNonce":509499479,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule","originalText":"Schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00417-7602","type":"rectangle","x":5116.0,"y":1758.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":896125957,"version":1,"versionNonce":2141566845,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00418-2796","type":"text","x":5124.0,"y":1767.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":485391200,"version":1,"versionNonce":1555327318,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Add node","originalText":"Add node","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00419-4817","type":"rectangle","x":5218.0,"y":1758.0,"width":88.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1694261910,"version":1,"versionNonce":170704072,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00420-2282","type":"text","x":5226.0,"y":1767.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1579072171,"version":1,"versionNonce":596532571,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Save","originalText":"Save","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00421-5876","type":"rectangle","x":5314.0,"y":1758.0,"width":116.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1611647076,"version":1,"versionNonce":1012848670,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00422-7981","type":"text","x":5322.0,"y":1767.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2046145957,"version":1,"versionNonce":737029402,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Publish","originalText":"Publish","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00423-5846","type":"rectangle","x":4130.0,"y":1832.0,"width":700.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f7f9fc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1672500647,"version":1,"versionNonce":1951423798,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00424-6935","type":"text","x":4158.0,"y":1866.0,"width":420.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2015821426,"version":1,"versionNonce":284456468,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflow canvas remains visible","originalText":"Workflow canvas remains visible","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00425-5686","type":"text","x":4158.0,"y":1906.0,"width":590.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1373918437,"version":1,"versionNonce":449658870,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule belongs to this published Workflow.","originalText":"Schedule belongs to this published Workflow.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00426-1792","type":"rectangle","x":4174.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":744860725,"version":1,"versionNonce":1931029954,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00427-1031","type":"rectangle","x":4174.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1699333486,"version":1,"versionNonce":1481680833,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00428-6543","type":"text","x":4192.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1962973342,"version":1,"versionNonce":90813931,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Collect feedback","originalText":"Collect feedback","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00429-3136","type":"text","x":4192.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1513539704,"version":1,"versionNonce":1906262834,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark messages","originalText":"Lark messages","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00430-6712","type":"rectangle","x":4192.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":333628037,"version":1,"versionNonce":405993658,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00431-9843","type":"text","x":4202.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2139429207,"version":1,"versionNonce":2008341417,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00432-2098","type":"arrow","x":4358.0,"y":2074.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":16732118,"version":1,"versionNonce":1111319891,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00433-8830","type":"rectangle","x":4392.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":417478080,"version":1,"versionNonce":284974257,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00434-4524","type":"rectangle","x":4392.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1137816073,"version":1,"versionNonce":956025541,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00435-2489","type":"text","x":4410.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1884030711,"version":1,"versionNonce":1809870539,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Group themes","originalText":"Group themes","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00436-3109","type":"text","x":4410.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1457320794,"version":1,"versionNonce":393140285,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AI task","originalText":"AI task","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00437-5343","type":"rectangle","x":4410.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1257139348,"version":1,"versionNonce":679421714,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00438-6795","type":"text","x":4420.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":41633966,"version":1,"versionNonce":815961057,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00439-8806","type":"arrow","x":4576.0,"y":2074.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1639897696,"version":1,"versionNonce":750728430,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00440-7737","type":"rectangle","x":4610.0,"y":2024.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1494501015,"version":1,"versionNonce":1204285210,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00441-8369","type":"rectangle","x":4610.0,"y":2024.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1104069947,"version":1,"versionNonce":1500050471,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00442-9081","type":"text","x":4628.0,"y":2046.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":931668189,"version":1,"versionNonce":762455442,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Post summary","originalText":"Post summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00443-4816","type":"text","x":4628.0,"y":2076.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1684359308,"version":1,"versionNonce":967214321,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark message","originalText":"Lark message","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00444-7663","type":"rectangle","x":4628.0,"y":2102.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":583476066,"version":1,"versionNonce":1044075081,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00445-1439","type":"text","x":4638.0,"y":2108.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":133520643,"version":1,"versionNonce":1520396972,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00446-9293","type":"rectangle","x":4858.0,"y":1832.0,"width":548.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1101662208,"version":1,"versionNonce":1120257289,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00447-1963","type":"text","x":4878.0,"y":1858.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":460617745,"version":1,"versionNonce":908219561,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"←","originalText":"←","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00448-6967","type":"text","x":4916.0,"y":1856.0,"width":400.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1435839170,"version":1,"versionNonce":1189722295,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Morning digest · Weekly Feedback Report","originalText":"Morning digest · Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00449-2237","type":"text","x":5352.0,"y":1858.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1145847928,"version":1,"versionNonce":343033550,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"×","originalText":"×","fontSize":22,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00450-8415","type":"line","x":4858.0,"y":1922.0,"width":548.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1971587703,"version":1,"versionNonce":941054383,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[548.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00451-6519","type":"text","x":4886.0,"y":1942.0,"width":84.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1346821397,"version":1,"versionNonce":1170536381,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Overview","originalText":"Overview","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00452-3121","type":"text","x":4984.0,"y":1942.0,"width":84.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":760238131,"version":1,"versionNonce":2075882649,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"History","originalText":"History","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00453-8904","type":"line","x":4984.0,"y":1972.0,"width":84.0,"height":0.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1033218552,"version":1,"versionNonce":345435964,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[84.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00454-2631","type":"text","x":4886.0,"y":2008.0,"width":260.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1369834041,"version":1,"versionNonce":1061574747,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Recent attempts","originalText":"Recent attempts","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00455-6813","type":"text","x":5164.0,"y":2014.0,"width":214.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":479355581,"version":1,"versionNonce":1849314276,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"View related runs in Activity →","originalText":"View related runs in Activity →","fontSize":14,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00456-1206","type":"text","x":4886.0,"y":2044.0,"width":470.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1739762004,"version":1,"versionNonce":3570425,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule attempts can fail before a Workflow Run exists.","originalText":"Schedule attempts can fail before a Workflow Run exists.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00457-9674","type":"rectangle","x":4886.0,"y":2092.0,"width":492.0,"height":42.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1837450449,"version":1,"versionNonce":669234601,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00458-2723","type":"text","x":4894.0,"y":2105.0,"width":122.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1293195547,"version":1,"versionNonce":1342693162,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SCHEDULED","originalText":"SCHEDULED","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00459-6414","type":"text","x":5032.0,"y":2105.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1462354162,"version":1,"versionNonce":2025430626,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SOURCE","originalText":"SOURCE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00460-1331","type":"text","x":5102.0,"y":2105.0,"width":122.0,"height":15.0,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":53971403,"version":1,"versionNonce":1435868832,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SCHEDULE OUTCOME","originalText":"SCHEDULE OUTCOME","fontSize":12,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00461-1247","type":"text","x":5240.0,"y":2105.0,"width":130.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1812128204,"version":1,"versionNonce":361677879,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"COMPLETED","originalText":"COMPLETED","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00462-8925","type":"rectangle","x":4886.0,"y":2134.0,"width":492.0,"height":152.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1606480640,"version":1,"versionNonce":2074356805,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00463-4325","type":"text","x":4890.0,"y":2152.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":440633755,"version":1,"versionNonce":481399435,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"24 Aug · 09:00","originalText":"24 Aug · 09:00","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00464-4038","type":"text","x":5028.0,"y":2152.0,"width":62.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2111742623,"version":1,"versionNonce":16028579,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Scheduled","originalText":"Scheduled","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00465-5113","type":"text","x":5098.0,"y":2152.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#b42318","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":336849589,"version":1,"versionNonce":999342268,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Failed to start","originalText":"Failed to start","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00466-5945","type":"text","x":5236.0,"y":2152.0,"width":138.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":374753,"version":1,"versionNonce":1520196192,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"09:00","originalText":"09:00","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00467-8166","type":"text","x":4894.0,"y":2188.0,"width":462.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":504328580,"version":1,"versionNonce":973880159,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"The scheduled attempt could not start the Workflow.","originalText":"The scheduled attempt could not start the Workflow.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00468-4236","type":"text","x":4894.0,"y":2222.0,"width":190.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1520535696,"version":1,"versionNonce":1237414970,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾ Technical details","originalText":"▾ Technical details","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00469-5963","type":"rectangle","x":4894.0,"y":2248.0,"width":476.0,"height":28.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":{"type":3},"seed":1133889189,"version":1,"versionNonce":1290319623,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00470-9103","type":"text","x":4904.0,"y":2255.0,"width":452.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1607721729,"version":1,"versionNonce":2011315728,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Capability admission rejected the scheduled request.","originalText":"Capability admission rejected the scheduled request.","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00471-7317","type":"rectangle","x":4886.0,"y":2286.0,"width":492.0,"height":76.0,"angle":0,"strokeColor":"#84adff","backgroundColor":"#eff8ff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":700634207,"version":1,"versionNonce":178244914,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00472-3478","type":"rectangle","x":4886.0,"y":2286.0,"width":3.0,"height":76.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1125943953,"version":1,"versionNonce":515273690,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00473-2758","type":"text","x":4890.0,"y":2304.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1401781048,"version":1,"versionNonce":42456810,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"21 Aug · 09:00","originalText":"21 Aug · 09:00","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00474-8016","type":"text","x":5028.0,"y":2304.0,"width":62.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1989300858,"version":1,"versionNonce":134955250,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Scheduled","originalText":"Scheduled","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00475-3054","type":"text","x":5098.0,"y":2304.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":661484133,"version":1,"versionNonce":353984000,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run created","originalText":"Run created","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00476-5920","type":"text","x":5236.0,"y":2304.0,"width":138.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":157797605,"version":1,"versionNonce":920411193,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"09:01","originalText":"09:01","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00477-8695","type":"rectangle","x":4886.0,"y":2362.0,"width":492.0,"height":76.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":2105417295,"version":1,"versionNonce":106628923,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00478-1258","type":"text","x":4890.0,"y":2380.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1150042572,"version":1,"versionNonce":216542064,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"20 Aug · 15:42","originalText":"20 Aug · 15:42","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00479-6878","type":"text","x":5028.0,"y":2380.0,"width":62.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":38776552,"version":1,"versionNonce":921057710,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Manual","originalText":"Manual","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00480-5205","type":"text","x":5098.0,"y":2380.0,"width":130.0,"height":15.0,"angle":0,"strokeColor":"#b54708","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1086438252,"version":1,"versionNonce":539059060,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Accepted","originalText":"Accepted","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00481-6951","type":"text","x":5236.0,"y":2380.0,"width":138.0,"height":15.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":271710263,"version":1,"versionNonce":1675486533,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"15:43","originalText":"15:43","fontSize":12,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00482-1333","type":"ellipse","x":5502.0,"y":2040.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1422819526,"version":1,"versionNonce":1034440400,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00483-4221","type":"text","x":5502.0,"y":2045.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":889369744,"version":1,"versionNonce":614169525,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"6","originalText":"6","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00484-6372","type":"text","x":5542.0,"y":2040.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":770125134,"version":1,"versionNonce":2711923,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"HISTORY IS ATTEMPTS, ACTIVITY IS RUNS","originalText":"HISTORY IS ATTEMPTS, ACTIVITY IS RUNS","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00485-3009","type":"text","x":5542.0,"y":2064.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-05"],"frameId":"frame-00396-8363","roundness":null,"seed":1241375844,"version":1,"versionNonce":1888218245,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule outcome states only what recentFires proves. A row with an exact Run destination is one native link; the blue row shows its hover treatment.","originalText":"Schedule outcome states only what recentFires proves. A row with an exact Run destination is one native link; the blue row shows its hover treatment.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"frame-00486-2950","type":"frame","x":140.0,"y":3000.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#bbb","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"frameId":null,"roundness":null,"seed":1825665397,"version":1,"versionNonce":850317285,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"name":"07 · Workflow — change schedule"},{"id":"r-00488-4944","type":"rectangle","x":140.0,"y":3000.0,"width":1560.0,"height":1000.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":839869688,"version":1,"versionNonce":456630911,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00489-7356","type":"rectangle","x":140.0,"y":3000.0,"width":210.0,"height":1000.0,"angle":0,"strokeColor":"#f8f9fa","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":202596984,"version":1,"versionNonce":1453396240,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00490-5355","type":"text","x":162.0,"y":3022.0,"width":150.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1723743932,"version":1,"versionNonce":965079385,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"aevatar","originalText":"aevatar","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00491-8367","type":"text","x":162.0,"y":3054.0,"width":160.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":965540883,"version":1,"versionNonce":911536304,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AUTOMATION","originalText":"AUTOMATION","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00492-6092","type":"text","x":164.0,"y":3112.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1861660874,"version":1,"versionNonce":2076106791,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Chat","originalText":"Chat","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00493-2486","type":"rectangle","x":150.0,"y":3146.0,"width":190.0,"height":34.0,"angle":0,"strokeColor":"#e9ecef","backgroundColor":"#e9ecef","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1220175219,"version":1,"versionNonce":996049598,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00494-1919","type":"text","x":164.0,"y":3154.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1855302241,"version":1,"versionNonce":99470878,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflows","originalText":"Workflows","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00495-9516","type":"text","x":164.0,"y":3196.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":673396048,"version":1,"versionNonce":855021829,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Activities","originalText":"Activities","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00496-1767","type":"text","x":164.0,"y":3238.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":2034013512,"version":1,"versionNonce":2110997147,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Agents","originalText":"Agents","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00497-8490","type":"text","x":164.0,"y":3280.0,"width":140.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1410674080,"version":1,"versionNonce":2026886554,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Artifacts","originalText":"Artifacts","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00498-2549","type":"line","x":150.0,"y":3918.0,"width":190.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":978497985,"version":1,"versionNonce":918154496,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[190.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00499-5394","type":"text","x":162.0,"y":3940.0,"width":150.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":23754199,"version":1,"versionNonce":698593062,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ana · Acme","originalText":"Ana · Acme","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00500-1077","type":"rectangle","x":350.0,"y":3000.0,"width":1350.0,"height":74.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1551383363,"version":1,"versionNonce":1328758395,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00501-1486","type":"text","x":378.0,"y":3016.0,"width":760.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1938781911,"version":1,"versionNonce":2081183276,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly Feedback Report","originalText":"Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00502-8245","type":"text","x":378.0,"y":3046.0,"width":900.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":99026206,"version":1,"versionNonce":679217660,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Published · v7 · Change schedule","originalText":"Published · v7 · Change schedule","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00503-9398","type":"rectangle","x":1172.0,"y":3018.0,"width":70.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":106170597,"version":1,"versionNonce":1352830740,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00504-7293","type":"text","x":1180.0,"y":3027.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":511804266,"version":1,"versionNonce":38355047,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Run","originalText":"Run","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00505-4892","type":"rectangle","x":1254.0,"y":3018.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":113267414,"version":1,"versionNonce":1781762533,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00506-3860","type":"text","x":1262.0,"y":3027.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1241026906,"version":1,"versionNonce":784696585,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule","originalText":"Schedule","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00507-4200","type":"rectangle","x":1356.0,"y":3018.0,"width":94.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":432240711,"version":1,"versionNonce":1690496839,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00508-8627","type":"text","x":1364.0,"y":3027.0,"width":78.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1515469539,"version":1,"versionNonce":202283548,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Add node","originalText":"Add node","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00509-1783","type":"rectangle","x":1458.0,"y":3018.0,"width":88.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":186695624,"version":1,"versionNonce":541422351,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00510-6881","type":"text","x":1466.0,"y":3027.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1563576036,"version":1,"versionNonce":1213682057,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Save","originalText":"Save","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00511-7078","type":"rectangle","x":1554.0,"y":3018.0,"width":116.0,"height":38.0,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1499496010,"version":1,"versionNonce":1700900223,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00512-8983","type":"text","x":1562.0,"y":3027.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":160028087,"version":1,"versionNonce":549071994,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Publish","originalText":"Publish","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00513-1180","type":"rectangle","x":370.0,"y":3092.0,"width":700.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f7f9fc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":294328636,"version":1,"versionNonce":2014380778,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00514-3453","type":"text","x":398.0,"y":3126.0,"width":420.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":970816999,"version":1,"versionNonce":1778019301,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Workflow canvas remains visible","originalText":"Workflow canvas remains visible","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00515-7948","type":"text","x":398.0,"y":3166.0,"width":590.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":2110903230,"version":1,"versionNonce":512445610,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Schedule belongs to this published Workflow.","originalText":"Schedule belongs to this published Workflow.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00516-6116","type":"rectangle","x":414.0,"y":3284.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1177696960,"version":1,"versionNonce":1441260473,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00517-4882","type":"rectangle","x":414.0,"y":3284.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":712188704,"version":1,"versionNonce":1493725735,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00518-1300","type":"text","x":432.0,"y":3306.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":507493233,"version":1,"versionNonce":492633140,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Collect feedback","originalText":"Collect feedback","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00519-1079","type":"text","x":432.0,"y":3336.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":236788956,"version":1,"versionNonce":530482931,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark messages","originalText":"Lark messages","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00520-6867","type":"rectangle","x":432.0,"y":3362.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":242384372,"version":1,"versionNonce":1714388383,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00521-1164","type":"text","x":442.0,"y":3368.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":367334452,"version":1,"versionNonce":209590356,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00522-7987","type":"arrow","x":598.0,"y":3334.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1108573929,"version":1,"versionNonce":869142154,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00523-1364","type":"rectangle","x":632.0,"y":3284.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":437907864,"version":1,"versionNonce":1896746206,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00524-9069","type":"rectangle","x":632.0,"y":3284.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":111284955,"version":1,"versionNonce":1185396846,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00525-7424","type":"text","x":650.0,"y":3306.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1965573181,"version":1,"versionNonce":2022223668,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Group themes","originalText":"Group themes","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00526-6527","type":"text","x":650.0,"y":3336.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1966017058,"version":1,"versionNonce":2063687558,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"AI task","originalText":"AI task","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00527-3022","type":"rectangle","x":650.0,"y":3362.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1517115844,"version":1,"versionNonce":880490118,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00528-5748","type":"text","x":660.0,"y":3368.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":920716962,"version":1,"versionNonce":1280915865,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"a-00529-6277","type":"arrow","x":816.0,"y":3334.0,"width":30.0,"height":0.0,"angle":0,"strokeColor":"#94a3b8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1884451770,"version":1,"versionNonce":1287760018,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[30.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"arrow"},{"id":"r-00530-5252","type":"rectangle","x":850.0,"y":3284.0,"width":178.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1379541887,"version":1,"versionNonce":1150259977,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"r-00531-6041","type":"rectangle","x":850.0,"y":3284.0,"width":4.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#067647","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":717515900,"version":1,"versionNonce":1566818992,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00532-9577","type":"text","x":868.0,"y":3306.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1529027383,"version":1,"versionNonce":214126024,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Post summary","originalText":"Post summary","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00533-4044","type":"text","x":868.0,"y":3336.0,"width":144.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1776581764,"version":1,"versionNonce":1994168482,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Lark message","originalText":"Lark message","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00534-5285","type":"rectangle","x":868.0,"y":3362.0,"width":74.0,"height":28.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1508845371,"version":1,"versionNonce":798191683,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00535-2352","type":"text","x":878.0,"y":3368.0,"width":54.0,"height":17.5,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":981616195,"version":1,"versionNonce":1776353952,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Ready","originalText":"Ready","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00536-6650","type":"rectangle","x":1098.0,"y":3092.0,"width":548.0,"height":898.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1693964143,"version":1,"versionNonce":1453090624,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00537-7451","type":"text","x":1118.0,"y":3118.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1336861860,"version":1,"versionNonce":1329667584,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"←","originalText":"←","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00538-5381","type":"text","x":1156.0,"y":3116.0,"width":400.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1470667276,"version":1,"versionNonce":545762129,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly review · Weekly Feedback Report","originalText":"Weekly review · Weekly Feedback Report","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00539-7366","type":"text","x":1592.0,"y":3118.0,"width":24.0,"height":27.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":628009666,"version":1,"versionNonce":1755563502,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"×","originalText":"×","fontSize":22,"fontFamily":1,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"l-00540-3559","type":"line","x":1098.0,"y":3182.0,"width":548.0,"height":0.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":991873649,"version":1,"versionNonce":1244476306,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"points":[[0,0],[548.0,0.0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":null},{"id":"t-00541-7192","type":"text","x":1126.0,"y":3206.0,"width":330.0,"height":27.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":181554064,"version":1,"versionNonce":245430770,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Edit schedule","originalText":"Edit schedule","fontSize":22,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00542-4559","type":"text","x":1126.0,"y":3258.0,"width":103.74,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1025704525,"version":1,"versionNonce":278660671,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"SCHEDULE NAME","originalText":"SCHEDULE NAME","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00543-2791","type":"rectangle","x":1126.0,"y":3280.0,"width":492.0,"height":54.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1653397803,"version":1,"versionNonce":779818724,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00544-5003","type":"text","x":1138.0,"y":3292.0,"width":468.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":413065162,"version":1,"versionNonce":485664594,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Weekly review","originalText":"Weekly review","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00545-6639","type":"text","x":1126.0,"y":3334.0,"width":71.82,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":458056317,"version":1,"versionNonce":9732493,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"HOW OFTEN","originalText":"HOW OFTEN","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00546-1315","type":"text","x":1126.0,"y":3374.0,"width":72.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":886198188,"version":1,"versionNonce":1111489672,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Repeat","originalText":"Repeat","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00547-5638","type":"rectangle","x":1210.0,"y":3360.0,"width":408.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":86422832,"version":1,"versionNonce":464806720,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00548-8547","type":"text","x":1222.0,"y":3374.0,"width":372.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1622126723,"version":1,"versionNonce":1222204960,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Mon","originalText":"Mon","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00549-7569","type":"text","x":1598.0,"y":3374.0,"width":12.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":474645964,"version":1,"versionNonce":1322525479,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾","originalText":"▾","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00550-8496","type":"text","x":1126.0,"y":3430.0,"width":20.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":255442920,"version":1,"versionNonce":2056753071,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"at","originalText":"at","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00551-4959","type":"text","x":1274.0,"y":3430.0,"width":20.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1527855674,"version":1,"versionNonce":1120864856,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"in","originalText":"in","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00552-6617","type":"rectangle","x":1154.0,"y":3416.0,"width":104.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1797724506,"version":1,"versionNonce":359670298,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00553-2789","type":"text","x":1166.0,"y":3430.0,"width":80.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1355108816,"version":1,"versionNonce":719310802,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"10:00","originalText":"10:00","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00554-2629","type":"rectangle","x":1302.0,"y":3416.0,"width":316.0,"height":46.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":519609957,"version":1,"versionNonce":425267218,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00555-5121","type":"text","x":1314.0,"y":3430.0,"width":286.0,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1605112894,"version":1,"versionNonce":882927972,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Asia/Shanghai","originalText":"Asia/Shanghai","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00556-4480","type":"text","x":1598.0,"y":3430.0,"width":12.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":120923922,"version":1,"versionNonce":1814226431,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"▾","originalText":"▾","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00557-8942","type":"rectangle","x":1126.0,"y":3480.0,"width":492.0,"height":112.0,"angle":0,"strokeColor":"#067647","backgroundColor":"#ecfdf3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":994115770,"version":1,"versionNonce":880677874,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00558-3088","type":"text","x":1140.0,"y":3494.0,"width":246.0,"height":20.0,"angle":0,"strokeColor":"#067647","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1356817390,"version":1,"versionNonce":812101699,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Every Monday at 10:00","originalText":"Every Monday at 10:00","fontSize":16,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00559-7767","type":"text","x":1140.0,"y":3530.0,"width":393.6,"height":17.5,"angle":0,"strokeColor":"#1e1e1e","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":740288845,"version":1,"versionNonce":438697924,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"next Mon 24 Aug, Mon 31 Aug, Mon 7 Sep · see all","originalText":"next Mon 24 Aug, Mon 31 Aug, Mon 7 Sep · see all","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00560-7401","type":"text","x":1140.0,"y":3558.0,"width":178.0,"height":17.5,"angle":0,"strokeColor":"#175cd3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":242713271,"version":1,"versionNonce":691318613,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"write it as cron instead","originalText":"write it as cron instead","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00561-2039","type":"text","x":1508.0,"y":3558.0,"width":100.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":299206054,"version":1,"versionNonce":912175751,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"0 10 * * 1","originalText":"0 10 * * 1","fontSize":14,"fontFamily":3,"textAlign":"right","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00562-5647","type":"text","x":1126.0,"y":3620.0,"width":159.6,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":787360165,"version":1,"versionNonce":47158035,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"RUN INPUT (OPTIONAL)","originalText":"RUN INPUT (OPTIONAL)","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00563-3009","type":"rectangle","x":1126.0,"y":3642.0,"width":492.0,"height":54.0,"angle":0,"strokeColor":"#ced4da","backgroundColor":"#f8f9fa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1350169600,"version":1,"versionNonce":1897268632,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00564-8007","type":"text","x":1138.0,"y":3654.0,"width":468.0,"height":17.5,"angle":0,"strokeColor":"#98a2b3","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1795446744,"version":1,"versionNonce":382771657,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"No prompt","originalText":"No prompt","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00565-8477","type":"rectangle","x":1126.0,"y":3898.0,"width":136.0,"height":38.0,"angle":0,"strokeColor":"#175cd3","backgroundColor":"#175cd3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":2080997866,"version":1,"versionNonce":1417850358,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00566-4323","type":"text","x":1134.0,"y":3907.0,"width":120.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":788600842,"version":1,"versionNonce":1240576406,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Save changes","originalText":"Save changes","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"r-00567-1665","type":"rectangle","x":1274.0,"y":3898.0,"width":92.0,"height":38.0,"angle":0,"strokeColor":"#667085","backgroundColor":"#ffffff","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":{"type":3},"seed":1662427937,"version":1,"versionNonce":655866125,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00568-9472","type":"text","x":1282.0,"y":3907.0,"width":76.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1639632187,"version":1,"versionNonce":1291162602,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Cancel","originalText":"Cancel","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"e-00569-3489","type":"ellipse","x":1742.0,"y":3260.0,"width":28.0,"height":28.0,"angle":0,"strokeColor":"#7048e8","backgroundColor":"#7048e8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":319252892,"version":1,"versionNonce":865384926,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false},{"id":"t-00570-6651","type":"text","x":1742.0,"y":3265.0,"width":28.0,"height":17.5,"angle":0,"strokeColor":"#ffffff","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":129685578,"version":1,"versionNonce":771662668,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"7","originalText":"7","fontSize":14,"fontFamily":1,"textAlign":"center","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00571-9970","type":"text","x":1782.0,"y":3260.0,"width":420.0,"height":17.5,"angle":0,"strokeColor":"#7048e8","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1618185047,"version":1,"versionNonce":1113990252,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"EDIT IS A TEMPORARY MODE","originalText":"EDIT IS A TEMPORARY MODE","fontSize":14,"fontFamily":3,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25},{"id":"t-00572-3581","type":"text","x":1782.0,"y":3284.0,"width":430.0,"height":17.5,"angle":0,"strokeColor":"#667085","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["group-06"],"frameId":"frame-00486-2950","roundness":null,"seed":1369405436,"version":1,"versionNonce":105219466,"isDeleted":false,"boundElements":null,"updated":1,"link":null,"locked":false,"text":"Cancel returns to Overview. PUT sends the edited fields and preserves the observed enabled state; it never enables a paused Schedule by accident.","originalText":"Cancel returns to Overview. PUT sends the edited fields and preserves the observed enabled state; it never enables a paused Schedule by accident.","fontSize":14,"fontFamily":1,"textAlign":"left","verticalAlign":"top","containerId":null,"autoResize":false,"lineHeight":1.25}],"appState":{"gridSize":null,"viewBackgroundColor":"#ffffff","currentItemStrokeColor":"#1e1e1e","currentItemBackgroundColor":"transparent"},"files":{}} \ No newline at end of file diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.gen.py b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.gen.py new file mode 100644 index 0000000000..7ef03bb5d0 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/aevatar-workflow-schedule-design.gen.py @@ -0,0 +1,718 @@ +#!/usr/bin/env python3 +"""Generate standalone Schedule review scenes for published Workflows. + +The scenes follow the Schedule path in the supplied wireframe while keeping +the Aevatar product boundary explicit: a Schedule is owned and addressed by +its published Workflow, independent from Team member automation. +""" + +from __future__ import annotations + +import json +import random +from pathlib import Path + + +random.seed(20260817) + +OUT = Path(__file__).with_name("aevatar-workflow-schedule-design.excalidraw") +INK = "#1e1e1e" +MUTED = "#667085" +FAINT = "#98a2b3" +LINE = "#ced4da" +SURFACE = "#ffffff" +SUBTLE = "#f8f9fa" +SIDEBAR = "#f8f9fa" +BLUE = "#175cd3" +BLUE_BG = "#eff8ff" +GREEN = "#067647" +GREEN_BG = "#ecfdf3" +AMBER = "#b54708" +AMBER_BG = "#fffaeb" +RED = "#b42318" +RED_BG = "#fef3f2" +PURPLE = "#7048e8" +PURPLE_BG = "#f4f3ff" + +FONT_SANS = 1 +FONT_MONO = 3 +FS_SMALL = 14 +FS_BODY = 16 +FS_HEAD = 22 +FS_TITLE = 32 + +FRAME_W = 1560 +FRAME_H = 1000 +GAP_X = 320 +GAP_Y = 260 +COLS = 3 +ORIGIN_X = 140 +ORIGIN_Y = 480 + +elements: list[dict] = [] +current_frame: str | None = None +current_group: str | None = None +sequence = 0 + + +def eid(prefix: str = "e") -> str: + global sequence + sequence += 1 + return f"{prefix}-{sequence:05d}-{random.randint(1000, 9999)}" + + +def base(kind: str, x: float, y: float, w: float, h: float, **kwargs) -> dict: + item = { + "id": kwargs.pop("id", eid(kind[:1])), + "type": kind, + "x": float(x), + "y": float(y), + "width": float(w), + "height": float(h), + "angle": 0, + "strokeColor": kwargs.pop("stroke", INK), + "backgroundColor": kwargs.pop("bg", "transparent"), + "fillStyle": "solid", + "strokeWidth": kwargs.pop("sw", 1), + "strokeStyle": kwargs.pop("style", "solid"), + "roughness": 0, + "opacity": 100, + "groupIds": [current_group] if current_group else [], + "frameId": kwargs.pop("frameId", current_frame), + "roundness": kwargs.pop("roundness", None), + "seed": random.randint(1, 2**31 - 1), + "version": 1, + "versionNonce": random.randint(1, 2**31 - 1), + "isDeleted": False, + "boundElements": None, + "updated": 1, + "link": None, + "locked": False, + } + item.update(kwargs) + return item + + +def rect(x: float, y: float, w: float, h: float, *, bg: str = "transparent", + stroke: str = LINE, radius: bool = True, style: str = "solid", + sw: int = 1) -> dict: + item = base("rectangle", x, y, w, h, bg=bg, stroke=stroke, style=style, + sw=sw) + if radius: + item["roundness"] = {"type": 3} + elements.append(item) + return item + + +def text(x: float, y: float, value: str, size: int = FS_BODY, color: str = INK, + *, font: int = FONT_SANS, width: float | None = None, + align: str = "left", line_height: float = 1.25) -> dict: + lines = value.split("\n") + if width is None: + width = max(18, max(len(line) for line in lines) * size * 0.57) + item = base("text", x, y, width, len(lines) * size * line_height, + stroke=color) + item.update({ + "text": value, + "originalText": value, + "fontSize": size, + "fontFamily": font, + "textAlign": align, + "verticalAlign": "top", + "containerId": None, + "autoResize": False, + "lineHeight": line_height, + }) + elements.append(item) + return item + + +def line(x: float, y: float, w: float, h: float, *, color: str = LINE, + arrowhead: str | None = None, sw: int = 1, + style: str = "solid") -> dict: + kind = "arrow" if arrowhead else "line" + item = base(kind, x, y, abs(w), abs(h), stroke=color, sw=sw, style=style) + item.update({ + "points": [[0, 0], [float(w), float(h)]], + "lastCommittedPoint": None, + "startBinding": None, + "endBinding": None, + "startArrowhead": None, + "endArrowhead": arrowhead, + }) + elements.append(item) + return item + + +def dot(x: float, y: float, diameter: float, color: str, *, bg: str | None = None) -> dict: + item = base("ellipse", x, y, diameter, diameter, stroke=color, + bg=bg or color) + elements.append(item) + return item + + +def button(x: float, y: float, w: float, label: str, *, primary: bool = False, + color: str = INK, bg: str = SURFACE, h: float = 38) -> None: + rect(x, y, w, h, bg=color if primary else bg, stroke=color) + text(x + 8, y + 9, label, FS_SMALL, SURFACE if primary else color, + width=w - 16, align="center") + + +def badge(x: float, y: float, label: str, kind: str = "muted") -> float: + colors = { + "ok": (GREEN, GREEN_BG), + "wait": (AMBER, AMBER_BG), + "fail": (RED, RED_BG), + "info": (PURPLE, PURPLE_BG), + "run": (BLUE, BLUE_BG), + "muted": (MUTED, SUBTLE), + } + color, bg = colors[kind] + width = max(74, len(label) * 7.5 + 24) + rect(x, y, width, 28, bg=bg, stroke=color) + text(x + 10, y + 6, label, FS_SMALL, color, width=width - 20) + return x + width + 8 + + +def chip(x: float, y: float, label: str, *, selected: bool = False, + width: float | None = None) -> float: + width = width or max(86, len(label) * 8 + 24) + rect(x, y, width, 34, bg=BLUE_BG if selected else SURFACE, + stroke=BLUE if selected else LINE) + text(x + 10, y + 8, label, FS_SMALL, BLUE if selected else MUTED, + width=width - 20, align="center") + return x + width + 8 + + +def field(x: float, y: float, width: float, label: str, value: str, *, + mono: bool = False, disabled: bool = False, h: float = 44) -> None: + text(x, y, label.upper(), FS_SMALL, MUTED, font=FONT_MONO) + rect(x, y + 22, width, h, bg=SUBTLE if disabled else SURFACE, + stroke=LINE) + text(x + 12, y + 34, value, FS_SMALL, FAINT if disabled else INK, + font=FONT_MONO if mono else FONT_SANS, width=width - 24) + + +def begin_frame(index: int, name: str) -> tuple[int, int]: + global current_frame, current_group + x = ORIGIN_X + (index % COLS) * (FRAME_W + GAP_X) + y = ORIGIN_Y + (index // COLS) * (FRAME_H + GAP_Y) + fid = eid("frame") + frame = base("frame", x, y, FRAME_W, FRAME_H, id=fid, + stroke="#bbb", frameId=None) + frame["name"] = name + elements.append(frame) + current_frame = fid + current_group = f"group-{index:02d}" + rect(x, y, FRAME_W, FRAME_H, bg=SURFACE, stroke="#ced4da", + radius=False, sw=2) + return x, y + + +def end_frame() -> None: + global current_frame, current_group + current_frame = None + current_group = None + + +def app_shell(fx: float, fy: float, active: str, *, title: str, + subtitle: str = "") -> tuple[float, float, float]: + sidebar_w = 210 + rect(fx, fy, sidebar_w, FRAME_H, bg=SIDEBAR, stroke=SIDEBAR, + radius=False) + text(fx + 22, fy + 22, "aevatar", FS_HEAD, INK, width=150) + text(fx + 22, fy + 54, "AUTOMATION", FS_SMALL, MUTED, + font=FONT_MONO, width=160) + for idx, item in enumerate(("Chat", "Workflows", "Activities", "Agents", "Artifacts")): + row_y = fy + 112 + idx * 42 + selected = item == active + if selected: + rect(fx + 10, row_y - 8, sidebar_w - 20, 34, bg="#e9ecef", + stroke="#e9ecef") + text(fx + 24, row_y, item, FS_SMALL, INK if selected else MUTED, + width=140) + line(fx + 10, fy + FRAME_H - 82, sidebar_w - 20, 0, color=LINE) + text(fx + 22, fy + FRAME_H - 60, "Ana · Acme", FS_SMALL, MUTED, + width=150) + content_x = fx + sidebar_w + content_w = FRAME_W - sidebar_w + rect(content_x, fy, content_w, 74, bg=SURFACE, stroke=LINE, radius=False) + text(content_x + 28, fy + 16, title, FS_HEAD, INK, width=760) + if subtitle: + text(content_x + 28, fy + 46, subtitle, FS_SMALL, MUTED, width=900) + return content_x, fy + 74, content_w + + +def annotation(x: float, y: float, number: str, title: str, body: str, + *, color: str = PURPLE) -> None: + dot(x, y, 28, color, bg=color) + text(x, y + 5, number, FS_SMALL, SURFACE, width=28, align="center") + text(x + 40, y, title.upper(), FS_SMALL, color, font=FONT_MONO, + width=420) + text(x + 40, y + 24, body, FS_SMALL, MUTED, width=430) + + +def schedule_summary(x: float, y: float, width: float, *, state: str | None = None) -> None: + rect(x, y, width, 74, bg=BLUE_BG, stroke="#84adff") + text(x + 16, y + 24, + "Weekly Feedback Report · Published", + FS_BODY, INK, width=width - 32) + if state: + badge(x + width - 92, y + 22, state, "ok" if state == "Enabled" else "muted") + + +def schedule_fields( + x: float, + y: float, + width: float, + *, + show_preview: bool = False, + name: str = "Weekly Feedback Report recurring work", + repeat_label: str = "Mon · Tue · Wed · Thu · Fri", + repeat_time: str = "09:00", + time_zone: str = "Asia/Shanghai", + human_summary: str = "Every weekday at 09:00", + cron_expression: str = "0 9 * * 1-5", + preview_copy: str = "next Mon 24, Tue 25, Wed 26 Aug · see all", +) -> None: + field(x, y, width, "Schedule name", name, h=54) + y += 76 + text(x, y, "HOW OFTEN", FS_SMALL, MUTED, font=FONT_MONO) + text(x, y + 40, "Repeat", FS_SMALL, MUTED, font=FONT_MONO, width=72) + repeat_x = x + 84 + compact = width < 600 + repeat_w = width - 84 if compact else width * 0.46 + rect(repeat_x, y + 26, repeat_w, 46, bg=SURFACE, stroke=LINE) + text(repeat_x + 12, y + 40, repeat_label, FS_SMALL, INK, + width=repeat_w - 36) + text(repeat_x + repeat_w - 20, y + 40, "▾", FS_SMALL, MUTED, width=12) + if compact: + time_x = x + 28 + time_y = y + 82 + text(x, y + 96, "at", FS_SMALL, MUTED, width=20) + time_w = 104 + zone_x = x + 176 + text(x + 148, y + 96, "in", FS_SMALL, MUTED, width=20) + else: + time_x = repeat_x + repeat_w + 34 + time_y = y + 26 + text(time_x - 24, y + 40, "at", FS_SMALL, MUTED, width=20) + time_w = max(88, width * 0.16) + zone_x = time_x + time_w + 34 + text(zone_x - 22, y + 40, "in", FS_SMALL, MUTED, width=20) + rect(time_x, time_y, time_w, 46, bg=SURFACE, stroke=LINE) + text(time_x + 12, time_y + 14, repeat_time, FS_SMALL, INK, width=time_w - 24) + zone_w = x + width - zone_x + rect(zone_x, time_y, zone_w, 46, bg=SURFACE, stroke=LINE) + text(zone_x + 12, time_y + 14, time_zone, FS_SMALL, INK, width=zone_w - 30) + text(zone_x + zone_w - 20, time_y + 14, "▾", FS_SMALL, MUTED, width=12) + + if show_preview: + preview_y = y + (146 if compact else 90) + preview_h = 112 if compact else 92 + rect(x, preview_y, width, preview_h, bg=GREEN_BG, stroke=GREEN) + text(x + 14, preview_y + 14, human_summary, FS_BODY, GREEN, + width=width * 0.5) + text(x + 14, preview_y + 50, preview_copy, FS_SMALL, INK, + width=width * 0.8) + cron_y = preview_y + (78 if compact else 50) + else: + text(x, y + 88, human_summary, FS_BODY, GREEN, width=width * 0.5) + cron_y = y + (126 if compact else 122) + text(x + (14 if compact else width * 0.58), cron_y, + "write it as cron instead", FS_SMALL, BLUE, width=178) + text(x + width - 110, cron_y, cron_expression, FS_SMALL, MUTED, + font=FONT_MONO, width=100, align="right") + + input_y = preview_y + preview_h + 28 if show_preview else cron_y + 42 + field(x, input_y, width, "Run input (optional)", "No prompt", + disabled=True, h=54) + + +def frame_workflows_list(index: int) -> None: + fx, fy = begin_frame(index, "01 · Workflows — schedule management modal") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Workflows", + subtitle="Published capabilities can run manually or on a schedule.") + button(cx + cw - 170, fy + 18, 142, "Start a run", color=INK) + field(cx + 28, cy + 24, 360, "Search", "Search workflows") + px = cx + 412 + for label, selected in (("All 6", True), ("Published 4", False), + ("Runs on its own 3", False), ("Drafts 1", False)): + px = chip(px, cy + 46, label, selected=selected) + header_y = cy + 112 + widths = [460, 190, 270, 180, 180] + rect(cx + 28, header_y, sum(widths), 42, bg=SUBTLE, stroke=LINE, + radius=False) + cursor = cx + 28 + for width, label in zip(widths, ("NAME", "LAST RUN", "STARTS ON ITS OWN", "STATE", "ACTIONS")): + text(cursor + 14, header_y + 13, label, FS_SMALL, MUTED, + font=FONT_MONO, width=width - 28) + cursor += width + rows = [ + ("Weekly Feedback Report", "reads #feedback, groups themes, posts a summary", "2h ago", "3 · 1 paused", "Published"), + ("Customer escalation triage", "classifies urgent conversations and prepares replies", "4m ago", "2", "Draft"), + ("Invoice chase", "finds overdue invoices and waits for approval", "42m ago", "1", "Published"), + ("Nightly data sync", "pulls yesterday's orders into the warehouse", "3:04 AM", "1", "Published"), + ] + for row_index, (name, description, last, starts, state) in enumerate(rows): + y = header_y + 42 + row_index * 116 + rect(cx + 28, y, sum(widths), 116, bg=SURFACE, stroke=LINE, + radius=False) + text(cx + 44, y + 16, name, FS_BODY, INK, width=420) + text(cx + 44, y + 46, description, FS_SMALL, MUTED, width=420) + text(cx + 488, y + 34, last, FS_SMALL, MUTED, width=150) + text(cx + 678, y + 34, starts, FS_SMALL, INK, font=FONT_MONO, width=220) + badge(cx + 948, y + 31, state, "ok" if state == "Published" else "muted") + button(cx + 1140, y + 28, 90, "Schedules", + color=BLUE if state == "Published" else MUTED, + bg=BLUE_BG if state == "Published" else SUBTLE) + button(cx + 1228, y + 28, 62, "Open") + modal_x, modal_y, modal_w, modal_h = cx + 520, cy + 18, 760, 890 + rect(cx + 500, cy + 10, cw - 512, 910, bg="#eef2f6", stroke="#eef2f6", radius=False) + rect(modal_x, modal_y, modal_w, modal_h, bg=SURFACE, stroke=INK, sw=2) + text(modal_x + 28, modal_y + 26, "Schedules for Weekly Feedback Report", + FS_HEAD, INK, width=560) + button(modal_x + modal_w - 58, modal_y + 20, 32, "×", color=MUTED) + button(modal_x + modal_w - 280, modal_y + 82, 108, "Refresh", color=MUTED) + button(modal_x + modal_w - 160, modal_y + 82, 132, "New schedule", + primary=True, color=BLUE) + line(modal_x + 28, modal_y + 140, modal_w - 56, 0, color=LINE) + schedule_rows = [ + ("Weekly feedback report", "Weekdays · 09:00 · Asia/Shanghai", "Enabled", "ok"), + ("Monthly billing review", "Monthly · day 1 · Asia/Shanghai", "Paused", "muted"), + ] + for row_index, (name, summary, state, kind) in enumerate(schedule_rows): + row_y = modal_y + 168 + row_index * 154 + rect(modal_x + 28, row_y, modal_w - 56, 132, bg=SURFACE, stroke=LINE) + text(modal_x + 48, row_y + 18, name, FS_BODY, INK, width=330) + badge(modal_x + modal_w - 132, row_y + 16, state, kind) + text(modal_x + 48, row_y + 52, summary, FS_SMALL, MUTED, width=420) + text(modal_x + 48, row_y + 90, + "Next · Mon 24 Aug at 09:00" if state == "Enabled" else "No upcoming attempt", + FS_SMALL, INK if state == "Enabled" else MUTED, width=360) + text(modal_x + modal_w - 110, row_y + 88, "Open →", FS_SMALL, BLUE, + width=74, align="right") + annotation(fx + FRAME_W + 42, fy + 160, "1", "One title identifies collection and owner", + "Schedules for Weekly Feedback Report replaces a repeated title stack. The body starts with collection actions, while each row supplies the facts needed for selection.") + end_frame() + + +def frame_schedule_setup(index: int) -> None: + fx, fy = begin_frame(index, "02 · Workflow — schedule setup panel") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Weekly Feedback Report", + subtitle="Published · v7 · finance workspace") + button(cx + cw - 528, fy + 18, 70, "Run", color=INK) + button(cx + cw - 446, fy + 18, 104, "Schedules", primary=True, color=BLUE) + button(cx + cw - 344, fy + 18, 94, "Add node", color=INK) + button(cx + cw - 242, fy + 18, 88, "Save", color=INK) + button(cx + cw - 146, fy + 18, 116, "Publish", color=INK) + rect(cx + 20, cy + 18, 700, 898, bg="#f7f9fc", stroke=LINE) + text(cx + 48, cy + 52, "Workflow canvas remains visible", FS_HEAD, INK, width=420) + text(cx + 48, cy + 92, + "The Schedule belongs to this Workflow and stays beside the canvas, not inside the graph.", + FS_SMALL, MUTED, width=590) + for n, (x, label, detail, color) in enumerate(((cx + 64, "Collect feedback", "Lark messages", GREEN), + (cx + 282, "Group themes", "AI task", BLUE), + (cx + 500, "Post summary", "Lark message", GREEN))): + if n: + line(x - 34, cy + 260, 30, 0, color="#94a3b8", arrowhead="arrow", sw=2) + rect(x, cy + 210, 178, 112, bg=SURFACE, stroke=color, sw=2) + rect(x, cy + 210, 4, 112, bg=color, stroke=color, radius=False) + text(x + 18, cy + 232, label, FS_SMALL, INK, width=144) + text(x + 18, cy + 262, detail, FS_SMALL, MUTED, width=144) + badge(x + 18, cy + 288, "Ready", "ok") + rect(cx + 748, cy + 18, 548, 898, bg=SURFACE, stroke=LINE) + text(cx + 776, cy + 46, "Schedule", FS_HEAD, INK, width=300) + schedule_summary(cx + 776, cy + 88, 492) + schedule_fields(cx + 776, cy + 182, 492) + button(cx + 776, cy + 836, 178, "Review schedule", primary=True, color=BLUE) + button(cx + 966, cy + 836, 92, "Cancel", color=MUTED) + annotation(fx + FRAME_W + 42, fy + 220, "2", "Only recurring work", + "The public contract accepts a five-field cron and IANA timezone. POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/preview returns the next fires.") + end_frame() + + +def frame_creation_review(index: int) -> None: + fx, fy = begin_frame(index, "03 · Schedule — review before creation") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Review schedule", + subtitle="Confirm the recurring setup before creating it.") + rect(cx + 150, cy + 34, 1060, 806, bg=SURFACE, stroke=INK, sw=2) + text(cx + 184, cy + 66, "Weekly Feedback Report recurring work", FS_HEAD, INK, width=680) + badge(cx + 978, cy + 64, "Enabled after creation", "ok") + line(cx + 184, cy + 112, 990, 0, color=LINE) + field(cx + 184, cy + 144, 476, "Workflow", "Weekly Feedback Report", disabled=True) + field(cx + 680, cy + 144, 494, "Schedule name", "Weekly Feedback Report recurring work") + field(cx + 184, cy + 224, 476, "Repeat", "Every weekday at 09:00") + field(cx + 680, cy + 224, 494, "Time zone", "Asia/Shanghai") + field(cx + 184, cy + 304, 990, "Run input (optional)", "No prompt", disabled=True) + text(cx + 184, cy + 392, "NEXT FIVE FIRE TIMES", FS_SMALL, MUTED, + font=FONT_MONO, width=520) + rect(cx + 184, cy + 424, 990, 176, bg=GREEN_BG, stroke=GREEN) + fires = [ + ("1", "Mon 24 Aug · 09:00"), + ("2", "Tue 25 Aug · 09:00"), + ("3", "Wed 26 Aug · 09:00"), + ("4", "Thu 27 Aug · 09:00"), + ("5", "Fri 28 Aug · 09:00"), + ] + for fire_index, (number, label) in enumerate(fires): + column = fire_index % 3 + row = fire_index // 3 + fire_x = cx + 210 + column * 312 + fire_y = cy + 452 + row * 62 + dot(fire_x, fire_y, 24, GREEN, bg=GREEN_BG) + text(fire_x, fire_y + 4, number, FS_SMALL, GREEN, width=24, align="center") + text(fire_x + 38, fire_y + 4, label, FS_SMALL, INK, width=230) + text(cx + 184, cy + 674, + "Create schedule sends the reviewed name, cron expression, time zone, enabled state, and optional run input.", + FS_SMALL, INK, width=860) + button(cx + 886, cy + 742, 170, "Create schedule", primary=True, color=BLUE) + button(cx + 1068, cy + 742, 106, "Back", color=MUTED) + annotation(fx + FRAME_W + 42, fy + 280, "3", "One Workflow-scoped create", + "Create calls POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules; service and owner resolution stay behind the API.") + end_frame() + + +def frame_creation_pending(index: int) -> None: + fx, fy = begin_frame(index, "04 · Schedule — creation pending") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Workflows", + subtitle="Published capabilities can run manually or on a schedule.") + field(cx + 28, cy + 24, 360, "Search", "Search workflows") + header_y = cy + 112 + widths = [460, 190, 270, 180, 180] + rect(cx + 28, header_y, sum(widths), 42, bg=SUBTLE, stroke=LINE, radius=False) + cursor = cx + 28 + for width, label in zip(widths, ("NAME", "LAST RUN", "STARTS ON ITS OWN", "STATE", "ACTIONS")): + text(cursor + 14, header_y + 13, label, FS_SMALL, MUTED, + font=FONT_MONO, width=width - 28) + cursor += width + rect(cx + 28, header_y + 42, sum(widths), 116, bg=SURFACE, stroke=LINE, radius=False) + text(cx + 44, header_y + 60, "Weekly Feedback Report", FS_BODY, INK, width=420) + text(cx + 44, header_y + 90, "reads #feedback, groups themes, posts a summary", FS_SMALL, MUTED, width=420) + text(cx + 488, header_y + 76, "2h ago", FS_SMALL, MUTED, width=150) + text(cx + 678, header_y + 76, "3 · 1 paused", FS_SMALL, INK, font=FONT_MONO, width=220) + badge(cx + 948, header_y + 72, "Published", "ok") + button(cx + 1140, header_y + 70, 80, "Schedule", color=BLUE, bg=BLUE_BG) + button(cx + 1228, header_y + 70, 62, "Open") + + toast_x, toast_y, toast_w, toast_h = cx + 680, cy + 28, 560, 118 + rect(toast_x, toast_y, toast_w, toast_h, bg=GREEN_BG, stroke=GREEN) + text(toast_x + 24, toast_y + 22, "Schedule request accepted", FS_HEAD, GREEN, + width=toast_w - 48) + text(toast_x + 24, toast_y + 62, + "It will appear in this Workflow's schedule list shortly.", + FS_SMALL, INK, width=toast_w - 48) + annotation(fx + FRAME_W + 42, fy + 240, "4", "Toast, then keep working", + "202 Accepted is acknowledged without a second modal; the Workflow-scoped list continues observing the new Schedule.") + end_frame() + + +def workflow_canvas(cx: float, cy: float) -> None: + rect(cx + 20, cy + 18, 700, 898, bg="#f7f9fc", stroke=LINE) + text(cx + 48, cy + 52, "Workflow canvas remains visible", FS_HEAD, INK, width=420) + text(cx + 48, cy + 92, "Schedule belongs to this published Workflow.", FS_SMALL, MUTED, width=590) + for n, (x, label, detail, node_color) in enumerate(((cx + 64, "Collect feedback", "Lark messages", GREEN), + (cx + 282, "Group themes", "AI task", BLUE), + (cx + 500, "Post summary", "Lark message", GREEN))): + if n: + line(x - 34, cy + 260, 30, 0, color="#94a3b8", arrowhead="arrow", sw=2) + rect(x, cy + 210, 178, 112, bg=SURFACE, stroke=node_color, sw=2) + rect(x, cy + 210, 4, 112, bg=node_color, stroke=node_color, radius=False) + text(x + 18, cy + 232, label, FS_SMALL, INK, width=144) + text(x + 18, cy + 262, detail, FS_SMALL, MUTED, width=144) + badge(x + 18, cy + 288, "Ready", "ok") + + +def frame_schedule_detail(index: int) -> None: + fx, fy = begin_frame(index, "05 · Workflow — schedule overview") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Weekly Feedback Report", + subtitle="Published · v7 · Schedule overview") + button(cx + cw - 528, fy + 18, 70, "Run", color=INK) + button(cx + cw - 446, fy + 18, 94, "Schedule", primary=True, color=BLUE) + button(cx + cw - 344, fy + 18, 94, "Add node", color=INK) + button(cx + cw - 242, fy + 18, 88, "Save", color=INK) + button(cx + cw - 146, fy + 18, 116, "Publish", color=INK) + workflow_canvas(cx, cy) + rect(cx + 748, cy + 18, 548, 898, bg=SURFACE, stroke=LINE) + text(cx + 768, cy + 44, "←", FS_HEAD, MUTED, width=24) + text(cx + 806, cy + 42, "Morning digest · Weekly Feedback Report", FS_HEAD, INK, width=400) + text(cx + 1242, cy + 44, "×", FS_HEAD, MUTED, width=24, align="right") + line(cx + 748, cy + 108, 548, 0, color=LINE) + text(cx + 776, cy + 128, "Overview", FS_SMALL, BLUE, width=84, align="center") + text(cx + 874, cy + 128, "History", FS_SMALL, MUTED, width=84, align="center") + line(cx + 776, cy + 158, 84, 0, color=BLUE, sw=2) + + badge(cx + 776, cy + 188, "Active", "ok") + text(cx + 776, cy + 230, "Every weekday at 09:00", FS_HEAD, INK, width=360) + text(cx + 776, cy + 264, "Asia/Shanghai", FS_SMALL, MUTED, width=260) + button(cx + 776, cy + 304, 108, "Run now", primary=True, color=BLUE) + button(cx + 894, cy + 304, 134, "Edit schedule", color=INK) + button(cx + 1038, cy + 304, 84, "More ▾", color=MUTED) + + line(cx + 776, cy + 372, 492, 0, color=LINE) + text(cx + 776, cy + 396, "NEXT SCHEDULED", FS_SMALL, MUTED, font=FONT_MONO, width=212) + text(cx + 1032, cy + 396, "LAST ATTEMPT", FS_SMALL, MUTED, font=FONT_MONO, width=212) + text(cx + 776, cy + 426, "Tue 25 Aug · 09:00", FS_BODY, INK, width=220) + text(cx + 1032, cy + 426, "Mon 24 Aug · Failed to start", FS_BODY, RED, width=226) + line(cx + 776, cy + 468, 492, 0, color=LINE) + text(cx + 776, cy + 492, "TOTAL ATTEMPTS", FS_SMALL, MUTED, font=FONT_MONO, width=212) + text(cx + 1032, cy + 492, "FAILED ATTEMPTS", FS_SMALL, MUTED, font=FONT_MONO, width=212) + text(cx + 776, cy + 522, "18", FS_BODY, INK, width=220) + text(cx + 1032, cy + 522, "1", FS_BODY, RED, width=226) + line(cx + 776, cy + 564, 492, 0, color=LINE) + text(cx + 776, cy + 590, "RUN INPUT", FS_SMALL, MUTED, font=FONT_MONO, width=180) + text(cx + 776, cy + 620, "Summarize new feedback.", FS_BODY, INK, width=492) + line(cx + 776, cy + 664, 492, 0, color=LINE) + text(cx + 776, cy + 694, "Advanced details", FS_BODY, INK, width=220) + text(cx + 1240, cy + 694, "▾", FS_BODY, MUTED, width=20, align="right") + text(cx + 776, cy + 730, "RUNS", FS_SMALL, MUTED, font=FONT_MONO, width=138) + text(cx + 930, cy + 730, "Every weekday at 09:00", FS_BODY, INK, width=338) + text(cx + 776, cy + 764, "TECHNICAL FORMAT", FS_SMALL, MUTED, font=FONT_MONO, width=138) + text(cx + 930, cy + 764, "0 9 * * 1-5", FS_BODY, MUTED, font=FONT_MONO, width=338) + annotation(fx + FRAME_W + 42, fy + 300, "5", "Overview answers what is configured", + "Run and Edit stay direct; Pause and Delete stay under More. Expanded details pair plain meaning with the exact technical format.") + end_frame() + + +def frame_schedule_history(index: int) -> None: + fx, fy = begin_frame(index, "06 · Workflow — schedule history") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Weekly Feedback Report", + subtitle="Published · v7 · Schedule history") + button(cx + cw - 528, fy + 18, 70, "Run", color=INK) + button(cx + cw - 446, fy + 18, 94, "Schedule", primary=True, color=BLUE) + button(cx + cw - 344, fy + 18, 94, "Add node", color=INK) + button(cx + cw - 242, fy + 18, 88, "Save", color=INK) + button(cx + cw - 146, fy + 18, 116, "Publish", color=INK) + workflow_canvas(cx, cy) + rect(cx + 748, cy + 18, 548, 898, bg=SURFACE, stroke=LINE) + text(cx + 768, cy + 44, "←", FS_HEAD, MUTED, width=24) + text(cx + 806, cy + 42, "Morning digest · Weekly Feedback Report", FS_HEAD, INK, width=400) + text(cx + 1242, cy + 44, "×", FS_HEAD, MUTED, width=24, align="right") + line(cx + 748, cy + 108, 548, 0, color=LINE) + text(cx + 776, cy + 128, "Overview", FS_SMALL, MUTED, width=84, align="center") + text(cx + 874, cy + 128, "History", FS_SMALL, BLUE, width=84, align="center") + line(cx + 874, cy + 158, 84, 0, color=BLUE, sw=2) + + text(cx + 776, cy + 194, "Recent attempts", FS_HEAD, INK, width=260) + text(cx + 1054, cy + 200, "View related runs in Activity →", FS_SMALL, BLUE, + width=214, align="right") + text(cx + 776, cy + 230, + "Schedule attempts can fail before a Workflow Run exists.", FS_SMALL, + MUTED, width=470) + + table_y = cy + 278 + widths = [138, 70, 138, 146] + rect(cx + 776, table_y, sum(widths), 42, bg=SUBTLE, stroke=LINE, radius=False) + cursor = cx + 776 + for width, label in zip(widths, ("SCHEDULED", "SOURCE", "SCHEDULE OUTCOME", "COMPLETED")): + size = 12 if label == "SCHEDULE OUTCOME" else FS_SMALL + text(cursor + 8, table_y + 13, label, size, MUTED, + font=FONT_MONO, width=width - 16) + cursor += width + + rows = [ + ("24 Aug · 09:00", "Scheduled", "Failed to start", "09:00", False), + ("21 Aug · 09:00", "Scheduled", "Run created", "09:01", True), + ("20 Aug · 15:42", "Manual", "Accepted", "15:43", False), + ] + row_offsets = [42, 194, 270] + for row_index, (scheduled, source, outcome, completed, linked) in enumerate(rows): + row_y = table_y + row_offsets[row_index] + row_h = 152 if row_index == 0 else 76 + rect(cx + 776, row_y, sum(widths), row_h, + bg=BLUE_BG if linked else SURFACE, stroke="#84adff" if linked else LINE, + radius=False) + if linked: + rect(cx + 776, row_y, 3, row_h, bg=BLUE, stroke=BLUE, radius=False) + cursor = cx + 776 + for width, value in zip(widths, (scheduled, source, outcome, completed)): + color = (RED if value == "Failed to start" else + GREEN if value == "Run created" else + AMBER if value == "Accepted" else INK) + text(cursor + 4, row_y + 18, value, 12, color, + width=width - 8) + cursor += width + if row_index == 0: + text(cx + 784, row_y + 54, + "The scheduled attempt could not start the Workflow.", FS_SMALL, + INK, width=462) + text(cx + 784, row_y + 88, "▾ Technical details", FS_SMALL, BLUE, + width=190) + rect(cx + 784, row_y + 114, 476, 28, bg=SUBTLE, stroke=LINE) + text(cx + 794, row_y + 121, + "Capability admission rejected the scheduled request.", FS_SMALL, + MUTED, font=FONT_MONO, width=452) + annotation(fx + FRAME_W + 42, fy + 300, "6", "History is attempts, Activity is Runs", + "Schedule outcome states only what recentFires proves. A row with an exact Run destination is one native link; the blue row shows its hover treatment.") + end_frame() + + +def frame_schedule_edit(index: int) -> None: + fx, fy = begin_frame(index, "07 · Workflow — change schedule") + cx, cy, cw = app_shell(fx, fy, "Workflows", title="Weekly Feedback Report", + subtitle="Published · v7 · Change schedule") + button(cx + cw - 528, fy + 18, 70, "Run", color=INK) + button(cx + cw - 446, fy + 18, 94, "Schedule", primary=True, color=BLUE) + button(cx + cw - 344, fy + 18, 94, "Add node", color=INK) + button(cx + cw - 242, fy + 18, 88, "Save", color=INK) + button(cx + cw - 146, fy + 18, 116, "Publish", color=INK) + workflow_canvas(cx, cy) + rect(cx + 748, cy + 18, 548, 898, bg=SURFACE, stroke=LINE) + text(cx + 768, cy + 44, "←", FS_HEAD, MUTED, width=24) + text(cx + 806, cy + 42, "Weekly review · Weekly Feedback Report", FS_HEAD, INK, width=400) + text(cx + 1242, cy + 44, "×", FS_HEAD, MUTED, width=24, align="right") + line(cx + 748, cy + 108, 548, 0, color=LINE) + text(cx + 776, cy + 132, "Edit schedule", FS_HEAD, INK, width=330) + schedule_fields( + cx + 776, + cy + 184, + 492, + show_preview=True, + name="Weekly review", + repeat_label="Mon", + repeat_time="10:00", + time_zone="Asia/Shanghai", + human_summary="Every Monday at 10:00", + cron_expression="0 10 * * 1", + preview_copy="next Mon 24 Aug, Mon 31 Aug, Mon 7 Sep · see all", + ) + button(cx + 776, cy + 824, 136, "Save changes", primary=True, color=BLUE) + button(cx + 924, cy + 824, 92, "Cancel", color=MUTED) + annotation(fx + FRAME_W + 42, fy + 260, "7", "Edit is a temporary mode", + "Cancel returns to Overview. PUT sends the edited fields and preserves the observed enabled state; it never enables a paused Schedule by accident.") + end_frame() + + +text(ORIGIN_X, 70, "Aevatar — Published workflow schedules", FS_TITLE, INK, width=1040) +text(ORIGIN_X, 126, "One Workflow, one recurring resource model, seven reviewable screens.", FS_HEAD, BLUE, width=1060) +text(ORIGIN_X, 178, + "Schedule is configured, previewed, created, observed, and managed through the Workflow-scoped API.", + FS_BODY, MUTED, width=1180) +text(ORIGIN_X, 232, + "Each frame renders to its own 1440 × 900 PNG. Notes stay outside the screen frames.", + FS_SMALL, MUTED, width=900) +line(ORIGIN_X, 274, 1150, 0, color=LINE) + +frame_workflows_list(0) +frame_schedule_setup(1) +frame_creation_review(2) +frame_creation_pending(3) +frame_schedule_detail(4) +frame_schedule_history(5) +frame_schedule_edit(6) + +document = { + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": elements, + "appState": { + "gridSize": None, + "viewBackgroundColor": "#ffffff", + "currentItemStrokeColor": INK, + "currentItemBackgroundColor": "transparent", + }, + "files": {}, +} +OUT.write_text(json.dumps(document, ensure_ascii=False, separators=(",", ":")), encoding="utf-8") +print(f"wrote {OUT} ({len(elements)} elements)") diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-activity.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-activity.png new file mode 100644 index 0000000000..83139c8ad7 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-activity.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-blank.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-blank.png new file mode 100644 index 0000000000..9a85007347 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-blank.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-describe.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-describe.png new file mode 100644 index 0000000000..8ebe09b5f8 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-describe.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-import.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-import.png new file mode 100644 index 0000000000..146a32f653 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-import.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-mobile.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-mobile.png new file mode 100644 index 0000000000..dc1e43e420 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-mobile.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-template.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-template.png new file mode 100644 index 0000000000..036ca5851a Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-create-template.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-canvas.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-canvas.png new file mode 100644 index 0000000000..5b8340af4a Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-canvas.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-mobile-node.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-mobile-node.png new file mode 100644 index 0000000000..a23567c281 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-mobile-node.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-node.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-node.png new file mode 100644 index 0000000000..389569aa25 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-node.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-yaml.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-yaml.png new file mode 100644 index 0000000000..2c2a25fb2f Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-editor-yaml.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-mobile.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-mobile.png new file mode 100644 index 0000000000..b11b47c129 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-mobile.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-node-library.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-node-library.png new file mode 100644 index 0000000000..2520399418 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-node-library.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-schedule.html b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-schedule.html new file mode 100644 index 0000000000..10943982cc --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-schedule.html @@ -0,0 +1,17 @@ + + + + + + + Aevatar Schedule Prototype + + + +

Opening the Schedule prototype...

+ + + diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-account.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-account.png new file mode 100644 index 0000000000..d3a69b5d6a Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-account.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-advanced.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-advanced.png new file mode 100644 index 0000000000..3792a1bec3 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-advanced.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-llm.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-llm.png new file mode 100644 index 0000000000..0ee6a345cb Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-llm.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-mobile.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-mobile.png new file mode 100644 index 0000000000..9875a0e67d Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-mobile.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-save.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-save.png new file mode 100644 index 0000000000..ff1319481b Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-save.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-tablet.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-tablet.png new file mode 100644 index 0000000000..333df8d7db Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-settings-tablet.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-workflows.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-workflows.png new file mode 100644 index 0000000000..f022c06c41 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype-workflows.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype.html b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype.html new file mode 100644 index 0000000000..bfa02aeb67 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/prototype.html @@ -0,0 +1,2844 @@ + + + + + + Aevatar Workflow + Activity + Settings Prototype + + + +
+ + +
+
+ +
+
+ +
+ + + + +
+
+
+
+
+ + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/render-schedule-png.py b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/render-schedule-png.py new file mode 100644 index 0000000000..0cdcc93404 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/render-schedule-png.py @@ -0,0 +1,230 @@ +#!/usr/bin/env python3 +"""Render review PNGs from the deterministic Schedule Excalidraw source.""" + +from __future__ import annotations + +import argparse +import hashlib +import json +import math +from pathlib import Path +from typing import Any + +from PIL import Image, ImageDraw, ImageFont, PngImagePlugin + + +BASELINE_DIR = Path(__file__).resolve().parent +SOURCE = BASELINE_DIR / "aevatar-workflow-schedule-design.excalidraw" +FRAME_OUTPUTS = ( + ("01 · Workflows — schedule management modal", "schedule-workflows-list-modal.png"), + ("02 · Workflow — schedule setup panel", "schedule-workflow-editor-panel.png"), + ("03 · Schedule — review before creation", "schedule-review.png"), + ("04 · Schedule — creation pending", "schedule-creation-pending.png"), + ("05 · Workflow — schedule overview", "schedule-detail.png"), + ("06 · Workflow — schedule history", "schedule-history.png"), + ("07 · Workflow — change schedule", "schedule-edit.png"), +) + +SANS_FONT = Path("/System/Library/Fonts/Supplemental/Arial Unicode.ttf") +MONO_FONT = Path("/System/Library/Fonts/Menlo.ttc") +FALLBACK_FONT = Path("/System/Library/Fonts/Supplemental/Arial.ttf") + + +def color(value: str | None) -> str | None: + if not value or value == "transparent": + return None + return value + + +def load_font(font_family: int, size: float) -> ImageFont.FreeTypeFont: + preferred = MONO_FONT if font_family == 3 else SANS_FONT + font_path = preferred if preferred.exists() else FALLBACK_FONT + return ImageFont.truetype(str(font_path), max(7, round(size))) + + +def dashed_line( + draw: ImageDraw.ImageDraw, + start: tuple[float, float], + end: tuple[float, float], + fill: str, + width: int, + dash: float, +) -> None: + dx = end[0] - start[0] + dy = end[1] - start[1] + length = math.hypot(dx, dy) + if not length: + return + ux, uy = dx / length, dy / length + cursor = 0.0 + while cursor < length: + segment_end = min(cursor + dash, length) + draw.line( + ( + start[0] + ux * cursor, + start[1] + uy * cursor, + start[0] + ux * segment_end, + start[1] + uy * segment_end, + ), + fill=fill, + width=width, + ) + cursor += dash * 1.8 + + +def draw_arrowhead( + draw: ImageDraw.ImageDraw, + start: tuple[float, float], + end: tuple[float, float], + fill: str, + width: int, +) -> None: + angle = math.atan2(end[1] - start[1], end[0] - start[0]) + size = max(7, width * 4) + wing = math.pi / 7 + left = (end[0] - size * math.cos(angle - wing), end[1] - size * math.sin(angle - wing)) + right = (end[0] - size * math.cos(angle + wing), end[1] - size * math.sin(angle + wing)) + draw.line((left, end, right), fill=fill, width=width, joint="curve") + + +def render_frame( + document: dict[str, Any], + frame: dict[str, Any], + size: tuple[int, int], + *, + padding: int = 0, +) -> Image.Image: + image = Image.new("RGB", size, "#f1f3f5") + draw = ImageDraw.Draw(image) + usable_width = size[0] - padding * 2 + usable_height = size[1] - padding * 2 + scale = min(usable_width / frame["width"], usable_height / frame["height"]) + origin_x = padding + (usable_width - frame["width"] * scale) / 2 + origin_y = padding + (usable_height - frame["height"] * scale) / 2 + + def point(x: float, y: float) -> tuple[float, float]: + return ( + origin_x + (x - frame["x"]) * scale, + origin_y + (y - frame["y"]) * scale, + ) + + elements = [ + element + for element in document["elements"] + if not element.get("isDeleted") + and element.get("type") != "frame" + and element.get("frameId") == frame["id"] + ] + for element in elements: + kind = element["type"] + stroke = color(element.get("strokeColor")) or "#1e1e1e" + fill = color(element.get("backgroundColor")) + stroke_width = max(1, round(element.get("strokeWidth", 1) * scale)) + x1, y1 = point(element["x"], element["y"]) + x2 = x1 + element.get("width", 0) * scale + y2 = y1 + element.get("height", 0) * scale + + if kind == "rectangle": + radius = max(2, round(8 * scale)) if element.get("roundness") else 0 + draw.rounded_rectangle( + (x1, y1, x2, y2), + radius=radius, + fill=fill, + outline=stroke, + width=stroke_width, + ) + continue + + if kind == "ellipse": + draw.ellipse((x1, y1, x2, y2), fill=fill, outline=stroke, width=stroke_width) + continue + + if kind in {"line", "arrow"}: + raw_points = element.get("points") or [[0, 0], [element.get("width", 0), element.get("height", 0)]] + points = [(x1 + px * scale, y1 + py * scale) for px, py in raw_points] + for start, end in zip(points, points[1:]): + if element.get("strokeStyle") == "dashed": + dashed_line(draw, start, end, stroke, stroke_width, max(5, 7 * scale)) + else: + draw.line((start, end), fill=stroke, width=stroke_width, joint="curve") + if kind == "arrow" and element.get("endArrowhead") and len(points) > 1: + draw_arrowhead(draw, points[-2], points[-1], stroke, stroke_width) + continue + + if kind == "text": + font_size = element.get("fontSize", 16) * scale + font = load_font(element.get("fontFamily", 1), font_size) + text_value = element.get("text", "") + align = element.get("textAlign", "left") + spacing = max(0, round(font_size * (element.get("lineHeight", 1.25) - 1))) + if align == "center": + draw.multiline_text( + (x1 + element.get("width", 0) * scale / 2, y1), + text_value, + font=font, + fill=stroke, + anchor="ma", + align="center", + spacing=spacing, + ) + elif align == "right": + draw.multiline_text( + (x2, y1), + text_value, + font=font, + fill=stroke, + anchor="ra", + align="right", + spacing=spacing, + ) + else: + draw.multiline_text( + (x1, y1), + text_value, + font=font, + fill=stroke, + spacing=spacing, + ) + + return image + + +def output_metadata(source_bytes: bytes) -> PngImagePlugin.PngInfo: + metadata = PngImagePlugin.PngInfo() + metadata.add_text("Source-SHA256", hashlib.sha256(source_bytes).hexdigest()) + metadata.add_text( + "Renderer-SHA256", + hashlib.sha256(Path(__file__).read_bytes()).hexdigest(), + ) + return metadata + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--output-dir", type=Path, default=BASELINE_DIR) + args = parser.parse_args() + args.output_dir.mkdir(parents=True, exist_ok=True) + + source_bytes = SOURCE.read_bytes() + document = json.loads(source_bytes) + frames = [element for element in document["elements"] if element.get("type") == "frame"] + frames_by_name = {frame["name"]: frame for frame in frames} + expected_names = tuple(frame_name for frame_name, _ in FRAME_OUTPUTS) + if tuple(frames_by_name) != expected_names: + raise SystemExit( + f"Schedule frame inventory mismatch: expected {expected_names!r}, " + f"found {tuple(frames_by_name)!r}" + ) + + for frame_name, output_name in FRAME_OUTPUTS: + output_path = args.output_dir / output_name + render_frame(document, frames_by_name[frame_name], (1440, 900)).save( + output_path, + optimize=True, + pnginfo=output_metadata(source_bytes), + ) + print(f"rendered {output_path.name}: 1440x900") + + +if __name__ == "__main__": + main() diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-creation-pending.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-creation-pending.png new file mode 100644 index 0000000000..4927dde13d Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-creation-pending.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-detail.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-detail.png new file mode 100644 index 0000000000..e155e0a6f2 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-detail.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-edit.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-edit.png new file mode 100644 index 0000000000..80a5268d1c Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-edit.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-history.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-history.png new file mode 100644 index 0000000000..45ddc06c1f Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-history.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-review.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-review.png new file mode 100644 index 0000000000..f22a0a3d48 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-review.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflow-editor-panel.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflow-editor-panel.png new file mode 100644 index 0000000000..53135e524e Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflow-editor-panel.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflows-list-modal.png b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflows-list-modal.png new file mode 100644 index 0000000000..994a0ae2e1 Binary files /dev/null and b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/schedule-workflows-list-modal.png differ diff --git a/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/verify-baseline.py b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/verify-baseline.py new file mode 100644 index 0000000000..ef95af0cd8 --- /dev/null +++ b/apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/verify-baseline.py @@ -0,0 +1,698 @@ +#!/usr/bin/env python3 +"""Verify the immutable Workflow Activity vNext design baseline.""" + +from __future__ import annotations + +import hashlib +import importlib.util +import json +import shutil +import subprocess +import sys +import tempfile +import zlib +from pathlib import Path + + +BASELINE_DIR = Path(__file__).resolve().parent +BOARD_NAME = "aevatar-workflow-activity-vnext.excalidraw" +SCHEDULE_BOARD_NAME = "aevatar-workflow-schedule-design.excalidraw" +GENERATOR_NAME = "aevatar-workflow-activity-vnext.gen.py" +SCHEDULE_GENERATOR_NAME = "aevatar-workflow-schedule-design.gen.py" +SCHEDULE_RENDERER_NAME = "render-schedule-png.py" +PROTOTYPE_NAME = "prototype.html" +SCHEDULE_PROTOTYPE_NAME = "prototype-schedule.html" +SCHEDULE_PNG_SHA256 = { + "schedule-workflows-list-modal.png": "e151c9feedec7ead21498bd5af62a1f914fdbf949de8a4ca7269a84622a1d72b", + "schedule-workflow-editor-panel.png": "9b948a4ca69a1549f93319cf992024fa4bba9869ca1c8d333cda1b0196aa2e56", + "schedule-review.png": "1e4ebcf6b675efa625b5b9a2968cca289734cd1d6a48539b9e4a3a76232b1020", + "schedule-creation-pending.png": "3964b97d0c5bebb625cfc767ad287c8ab8f303a6b2769dc017df8345214425c7", + "schedule-detail.png": "b2253dff9288838557f0378af7f71aeacd3afbb57c9771a5cc7bb0f49b0e7c0b", + "schedule-history.png": "536a4775ea946251bb66185ac470a3316a737b9dd44d3998e3f092da385ebb76", + "schedule-edit.png": "1fed99e375085e78af23ef6999d6232304a98aac47bd0f338939af32027987dd", +} +OBSOLETE_SCHEDULE_PNGS = ( + "prototype-schedule.png", + "aevatar-workflow-schedule-design.png", + "schedule-authorization-review.png", +) +EXPECTED_SHA256 = "30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de" +EXPECTED_SCHEDULE_SHA256 = "cd5c84c45ffb0cdb253af31b7e1b7616504b35520298f01773026e3b76882d8a" +EXPECTED_FRAMES = ( + "01 Workflows - catalogue", + "02 New workflow - direct creation", + "03 Describe - generated Workflow draft", + "04 Start blank - empty Workflow draft", + "05 Import YAML - imported Workflow draft", + "06 Template - populated Workflow draft", + "07 Run - unified execution dialog", + "08 Running draft - Studio canvas and Run console", + "09 Activity - filtered by Workflow", + "10 Activity - all retained Runs", + "11 Run detail - immutable record", + "12 Failed Run - recovery creates a new record", + "13 Workflows and Activity - states", + "14 Settings - AI defaults", + "15 Settings - save and recovery states", + "16 Settings - Account", + "17 Settings - Advanced and responsive", +) +EXPECTED_SCHEDULE_FRAMES = ( + "01 · Workflows — schedule management modal", + "02 · Workflow — schedule setup panel", + "03 · Schedule — review before creation", + "04 · Schedule — creation pending", + "05 · Workflow — schedule overview", + "06 · Workflow — schedule history", + "07 · Workflow — change schedule", +) + + +def png_chunks(data: bytes) -> list[tuple[bytes, bytes]]: + chunks: list[tuple[bytes, bytes]] = [] + offset = 8 + while offset + 12 <= len(data): + length = int.from_bytes(data[offset:offset + 4], "big") + chunk_type = data[offset + 4:offset + 8] + chunk_data = data[offset + 8:offset + 8 + length] + chunks.append((chunk_type, chunk_data)) + offset += length + 12 + if chunk_type == b"IEND": + break + return chunks + + +def paeth(left: int, above: int, upper_left: int) -> int: + prediction = left + above - upper_left + left_distance = abs(prediction - left) + above_distance = abs(prediction - above) + upper_left_distance = abs(prediction - upper_left) + if left_distance <= above_distance and left_distance <= upper_left_distance: + return left + if above_distance <= upper_left_distance: + return above + return upper_left + + +def sampled_png_colors(chunks: list[tuple[bytes, bytes]]) -> set[tuple[int, int, int]]: + ihdr = next(chunk for chunk_type, chunk in chunks if chunk_type == b"IHDR") + width = int.from_bytes(ihdr[0:4], "big") + height = int.from_bytes(ihdr[4:8], "big") + if ihdr[8:13] != bytes((8, 2, 0, 0, 0)): + raise SystemExit("Schedule PNG must be non-interlaced 8-bit RGB") + encoded = b"".join(chunk for chunk_type, chunk in chunks if chunk_type == b"IDAT") + decoded = zlib.decompress(encoded) + bytes_per_pixel = 3 + stride = width * bytes_per_pixel + previous = bytearray(stride) + offset = 0 + colors: set[tuple[int, int, int]] = set() + sample_x = max(1, width // 240) + sample_y = max(1, height // 160) + + for row_index in range(height): + filter_type = decoded[offset] + offset += 1 + row = bytearray(decoded[offset:offset + stride]) + offset += stride + for byte_index in range(stride): + left = row[byte_index - bytes_per_pixel] if byte_index >= bytes_per_pixel else 0 + above = previous[byte_index] + upper_left = previous[byte_index - bytes_per_pixel] if byte_index >= bytes_per_pixel else 0 + if filter_type == 1: + row[byte_index] = (row[byte_index] + left) & 0xFF + elif filter_type == 2: + row[byte_index] = (row[byte_index] + above) & 0xFF + elif filter_type == 3: + row[byte_index] = (row[byte_index] + ((left + above) // 2)) & 0xFF + elif filter_type == 4: + row[byte_index] = (row[byte_index] + paeth(left, above, upper_left)) & 0xFF + elif filter_type != 0: + raise SystemExit(f"unsupported PNG filter: {filter_type}") + if row_index % sample_y == 0: + for column in range(0, width, sample_x): + start = column * bytes_per_pixel + colors.add(tuple(row[start:start + bytes_per_pixel])) + previous = row + + return colors + + +def verify_png( + path: Path, + expected_size: tuple[int, int], + expected_sha256: str, + expected_source_sha256: str, + expected_renderer_sha256: str, +) -> None: + data = path.read_bytes() + if not data.startswith(b"\x89PNG\r\n\x1a\n"): + raise SystemExit(f"not a PNG file: {path.name}") + actual_size = ( + int.from_bytes(data[16:20], "big"), + int.from_bytes(data[20:24], "big"), + ) + if actual_size != expected_size: + raise SystemExit( + f"{path.name} size mismatch: expected {expected_size}, got {actual_size}" + ) + actual_sha256 = hashlib.sha256(data).hexdigest() + if actual_sha256 != expected_sha256: + raise SystemExit( + f"{path.name} SHA-256 mismatch: expected {expected_sha256}, got {actual_sha256}" + ) + chunks = png_chunks(data) + metadata = { + value.split(b"\0", 1)[0].decode("latin-1"): value.split(b"\0", 1)[1].decode("latin-1") + for chunk_type, value in chunks + if chunk_type == b"tEXt" and b"\0" in value + } + if metadata.get("Source-SHA256") != expected_source_sha256: + raise SystemExit(f"{path.name} is not linked to the current Schedule Excalidraw") + if metadata.get("Renderer-SHA256") != expected_renderer_sha256: + raise SystemExit(f"{path.name} is not linked to the current PNG renderer") + colors = sampled_png_colors(chunks) + if len(colors) < 16: + raise SystemExit(f"{path.name} does not contain a non-blank rendered design") + + +def main() -> None: + board_path = BASELINE_DIR / BOARD_NAME + schedule_board_path = BASELINE_DIR / SCHEDULE_BOARD_NAME + generator_path = BASELINE_DIR / GENERATOR_NAME + schedule_generator_path = BASELINE_DIR / SCHEDULE_GENERATOR_NAME + schedule_renderer_path = BASELINE_DIR / SCHEDULE_RENDERER_NAME + prototype_path = BASELINE_DIR / PROTOTYPE_NAME + schedule_prototype_path = BASELINE_DIR / SCHEDULE_PROTOTYPE_NAME + board_bytes = board_path.read_bytes() + schedule_board_bytes = schedule_board_path.read_bytes() + + for obsolete_png in OBSOLETE_SCHEDULE_PNGS: + if (BASELINE_DIR / obsolete_png).exists(): + raise SystemExit(f"obsolete combined Schedule PNG must be removed: {obsolete_png}") + + actual_sha256 = hashlib.sha256(board_bytes).hexdigest() + if actual_sha256 != EXPECTED_SHA256: + raise SystemExit( + f"design SHA-256 mismatch: expected {EXPECTED_SHA256}, got {actual_sha256}" + ) + + actual_schedule_sha256 = hashlib.sha256(schedule_board_bytes).hexdigest() + if actual_schedule_sha256 != EXPECTED_SCHEDULE_SHA256: + raise SystemExit( + "schedule design SHA-256 mismatch: " + f"expected {EXPECTED_SCHEDULE_SHA256}, got {actual_schedule_sha256}" + ) + actual_renderer_sha256 = hashlib.sha256(schedule_renderer_path.read_bytes()).hexdigest() + + document = json.loads(board_bytes) + schedule_document = json.loads(schedule_board_bytes) + schedule_visible_text = "\n".join( + element["text"] + for element in schedule_document["elements"] + if element.get("type") == "text" + ) + schedule_visible_text_casefolded = schedule_visible_text.casefold() + if "Schedule" not in schedule_visible_text: + raise SystemExit("schedule entry point is missing from the schedule design board") + for required in ("Workflow Schedule", "write it as cron instead", "Time zone", + "NEXT FIVE FIRE TIMES", "Review schedule", "Create schedule", + "202 Accepted", "Run now", "Pause", "Delete"): + if required.casefold() not in schedule_visible_text_casefolded: + raise SystemExit(f"schedule frame is missing required copy: {required}") + if "run input (optional)" not in schedule_visible_text_casefolded: + raise SystemExit("schedule frame incorrectly hides optional recurring prompt semantics") + for required_state in ("enabled after creation",): + if required_state not in schedule_visible_text_casefolded: + raise SystemExit(f"schedule frames are missing honest Schedule state: {required_state}") + if "trigger" in schedule_visible_text_casefolded: + raise SystemExit("schedule board still contains unsupported trigger terminology") + for forbidden in ( + "team member", + "team automation", + "teamid", + "memberid", + "publishedserviceid", + "dedicated agent key", + "node ids", + "owner llm", + "permission digest", + "permissiondigest", + "policy version", + "policyversion", + "review and reauthorize", + "/api/schedules", + "/automations/preflight", + ): + if forbidden in schedule_visible_text_casefolded: + raise SystemExit(f"Schedule design leaks the wrong resource model: {forbidden}") + schedule_frame_names = tuple( + element["name"] + for element in schedule_document["elements"] + if element.get("type") == "frame" + ) + if schedule_frame_names != EXPECTED_SCHEDULE_FRAMES: + raise SystemExit( + "schedule frame inventory mismatch:\n" + f"expected {EXPECTED_SCHEDULE_FRAMES!r}\n" + f"got {schedule_frame_names!r}" + ) + if len(schedule_frame_names) != len(EXPECTED_SCHEDULE_FRAMES): + raise SystemExit("schedule board must contain exactly seven standalone review scenes") + + schedule_frames_by_name = { + element["name"]: element["id"] + for element in schedule_document["elements"] + if element.get("type") == "frame" + } + + def schedule_frame_text(frame_name: str) -> str: + frame_id = schedule_frames_by_name.get(frame_name) + return "\n".join( + element["text"] + for element in schedule_document["elements"] + if element.get("type") == "text" and element.get("frameId") == frame_id + ) + + quick_modal_text = schedule_frame_text("01 · Workflows — schedule management modal").casefold() + for required in ("schedules for weekly feedback report", "new schedule", "open"): + if required not in quick_modal_text: + raise SystemExit(f"Workflow catalogue Schedule management modal is missing: {required}") + if "recurring runs owned by weekly feedback report" in quick_modal_text: + raise SystemExit("Workflow catalogue Schedule modal repeats its ownership as helper copy") + quick_modal_lines = {line.strip() for line in quick_modal_text.splitlines()} + for forbidden in ("edit", "pause", "run now", "delete"): + if forbidden in quick_modal_lines: + raise SystemExit(f"Workflow catalogue repeats selected-Schedule actions in every row: {forbidden}") + configure_frame_name = "02 · Workflow — schedule setup panel" + configure_text = schedule_frame_text(configure_frame_name).casefold() + for required in ( + "schedule name", + "weekly feedback report recurring work", + "repeat", + "every weekday at 09:00", + "write it as cron instead", + "post /api/scopes/{scopeid}/workflows/{workflowid}/schedules/preview", + "no prompt", + ): + if required not in configure_text: + raise SystemExit(f"{configure_frame_name} is missing Schedule configuration content: {required}") + if "cron expression" in configure_text: + raise SystemExit(f"{configure_frame_name} exposes raw cron as a default primary field") + + schedule_edit_text = schedule_frame_text("07 · Workflow — change schedule").casefold() + for required in ( + "schedule name", + "weekly review", + "repeat", + "every monday at 10:00", + "asia/shanghai", + "0 10 * * 1", + "write it as cron instead", + ): + if required not in schedule_edit_text: + raise SystemExit(f"Workflow Schedule edit is missing repeat-builder semantics: {required}") + if "cron expression" in schedule_edit_text: + raise SystemExit("Workflow Schedule edit exposes raw cron as a default primary field") + + review_text = schedule_frame_text("03 · Schedule — review before creation").casefold() + for required in ( + "review schedule", + "weekly feedback report", + "weekly feedback report recurring work", + "every weekday at 09:00", + "asia/shanghai", + "no prompt", + "enabled after creation", + "next five fire times", + "create schedule", + "post /api/scopes/{scopeid}/workflows/{workflowid}/schedules", + ): + if required not in review_text: + raise SystemExit(f"Schedule creation review is missing API-backed fact: {required}") + + pending_text = schedule_frame_text("04 · Schedule — creation pending").casefold() + for required in ( + "202 accepted", + "schedule request accepted", + "appear in this workflow's schedule list shortly", + ): + if required not in pending_text: + raise SystemExit(f"Schedule pending frame is missing honest accepted state: {required}") + + for workflow_frame_name in ( + "05 · Workflow — schedule overview", + "06 · Workflow — schedule history", + "07 · Workflow — change schedule", + ): + workflow_frame_text = schedule_frame_text(workflow_frame_name).casefold() + if "workflow canvas remains visible" not in workflow_frame_text: + raise SystemExit(f"{workflow_frame_name} is not visibly owned by Workflow") + if "weekly feedback report" not in workflow_frame_text: + raise SystemExit(f"{workflow_frame_name} does not identify its owning Workflow") + + schedule_overview_text = schedule_frame_text("05 · Workflow — schedule overview").casefold() + for required in ( + "morning digest", + "overview", + "history", + "active", + "every weekday at 09:00", + "asia/shanghai", + "next scheduled", + "last attempt", + "total attempts", + "failed attempts", + "summarize new feedback", + "advanced details", + "runs", + "technical format", + "0 9 * * 1-5", + "run now", + "edit schedule", + "more", + ): + if required not in schedule_overview_text: + raise SystemExit(f"Workflow Schedule Overview is missing: {required}") + for forbidden in ("cron expression", "recent fires", "observed schedule state only"): + if forbidden in schedule_overview_text: + raise SystemExit(f"Workflow Schedule Overview exposes secondary implementation content: {forbidden}") + + schedule_history_text = schedule_frame_text("06 · Workflow — schedule history").casefold() + for required in ( + "morning digest", + "recent attempts", + "scheduled", + "manual", + "schedule outcome", + "run created", + "failed to start", + "accepted", + "completed", + "technical details", + "the scheduled attempt could not start the workflow", + "view related runs in activity", + ): + if required not in schedule_history_text: + raise SystemExit(f"Workflow Schedule History is missing: {required}") + schedule_history_lines = {line.strip() for line in schedule_history_text.splitlines()} + for forbidden in ("result", "run started", "action"): + if forbidden in schedule_history_lines: + raise SystemExit(f"Workflow Schedule History retains ambiguous or redundant copy: {forbidden}") + for forbidden in ("run id", "actor id", "command id", "correlation id", "idempotency key"): + if forbidden in schedule_history_text: + raise SystemExit(f"Workflow Schedule History leaks a runtime identifier: {forbidden}") + if "what will run" in schedule_visible_text_casefolded: + raise SystemExit("Schedule board still presents the removed collection model") + + prototype_text = prototype_path.read_text(encoding="utf-8") + modal_list_start = prototype_text.index("function renderScheduleModalList") + modal_list_end = prototype_text.index("function openScheduleQuickModal", modal_list_start) + prototype_modal_list_text = prototype_text[modal_list_start:modal_list_end] + for required in ( + 'textContent = `Schedules for ${workflow.name}`', + 'id="quick-schedule-refresh"', + 'id="quick-schedule-new"', + ): + if required not in prototype_modal_list_text: + raise SystemExit(f"prototype Schedule collection is missing meaningful hierarchy: {required}") + for forbidden in ("Recurring runs owned by", "

Schedules

", "schedule-quick-context"): + if forbidden in prototype_modal_list_text: + raise SystemExit(f"prototype Schedule collection retains redundant title content: {forbidden}") + overview_start = prototype_text.index("function scheduleOverviewMarkup") + overview_end = prototype_text.index("function scheduleHistoryMarkup", overview_start) + prototype_overview_text = prototype_text[overview_start:overview_end] + for required in ( + 'Runs${escapeHtml(editModel.humanSummary)}', + 'Technical format${escapeHtml(schedule.cronExpression)}', + ): + if required not in prototype_overview_text: + raise SystemExit(f"prototype Schedule Overview is missing readable technical hierarchy: {required}") + creation_start = prototype_text.index("function resetScheduleCreation") + creation_end = prototype_text.index("function openSchedulePrototype", creation_start) + creation_text = prototype_text[creation_start:creation_end] + configure_start = creation_text.index('if (quickScheduleStep === "configure")') + configure_end = creation_text.index('if (quickScheduleStep === "previewing")', configure_start) + configure_creation_text = creation_text[configure_start:configure_end] + if 'id="editor-schedule"' not in prototype_text: + raise SystemExit("prototype schedule action is missing from the editor") + if 'data-schedule-workflow="${item.id}"' not in prototype_text: + raise SystemExit("prototype does not expose Schedule from published Workflow rows") + if 'button.onclick = () => openScheduleQuickModal(button.dataset.scheduleWorkflow)' not in prototype_text: + raise SystemExit("Workflow list Schedule action does not open the management modal") + for required in ( + 'id="schedule-quick-modal"', + "function openScheduleQuickModal", + "function renderScheduleModalList", + "function openSchedulePanelCreation", + "function renderScheduleCreation", + "function requestQuickSchedulePreview", + "function acceptQuickScheduleCreation", + "Review schedule", + "Create schedule", + 'textContent = `Schedules for ${workflow.name}`', + 'id="quick-schedule-new"', + "without leaving Workflows", + "Next five fire times", + "POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/preview", + "POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules", + "Repeat", + "Every weekday at 09:00", + "write it as cron instead", + 'id="quick-schedule-cron-editor" hidden', + "updateQuickScheduleRepeatPresentation", + '"Every hour": "0 * * * *"', + '"Write cron yourself": "15 14 * * 2,4"', + "prototypeSchedulePreviewByCron", + "const presetCron = quickScheduleCronByRepeat[repeat]", + "browserTimeZone()", + "Schedule request accepted. It will appear in the Workflow schedule list shortly.", + "exitScheduleCreation();", + "Save and publish the latest changes before scheduling.", + ): + if required not in prototype_text: + raise SystemExit(f"prototype quick-create Schedule modal is missing: {required}") + for required in ( + 'scheduleCreationSurface === "panel"', + 'schedulePanelMode = "new"', + "prototypeSchedulePreviewByCron[quickScheduleDraft.cronExpression]", + 'modal.id === "schedule-quick-modal"', + ): + if required not in prototype_text: + raise SystemExit(f"prototype shared Schedule creation flow is missing: {required}") + for forbidden in ( + "function createQuickSchedule()", + "Schedule created for", + "Mon 24 Aug · 09:00", + "Summarize new feedback and post one concise update.", + 'LarkAlready granted', + "prototypeSchedulePreflightByService", + "prototypeSchedulePreviewByRequest", + "prototypeSchedulePreflightByOwner", + "requestQuickSchedulePreflight", + "preflightMatchesWorkflow", + "confirmedPermissionDigest", + "confirmedPolicyVersion", + "Dedicated Agent Key", + "Review and reauthorize", + "/automations/preflight", + 'quickScheduleStep === "accepted"', + "quick-schedule-close-accepted", + ): + if forbidden in prototype_text: + raise SystemExit(f"prototype quick-create Schedule modal still contains optimistic or shared sample state: {forbidden}") + if 'id="quick-schedule-cron-editor" hidden' not in configure_creation_text: + raise SystemExit("prototype quick-create Schedule exposes raw cron as a default primary field") + for required in ( + 'id="quick-schedule-name"', + 'name: content.querySelector("#quick-schedule-name").value.trim()', + ): + if required not in configure_creation_text and required not in creation_text: + raise SystemExit(f"prototype Schedule creation does not preserve its editable name: {required}") + for required in ( + "function scheduleEditModel(schedule)", + 'id="schedule-edit-name"', + 'id="schedule-edit-repeat"', + 'id="schedule-edit-repeat-time"', + 'id="schedule-edit-time-zone"', + 'id="schedule-edit-cron"', + 'id="schedule-edit-prompt"', + 'displayName: root.querySelector("#schedule-edit-name").value.trim()', + 'cronExpression: root.querySelector("#schedule-edit-cron").value.trim()', + 'timezone: root.querySelector("#schedule-edit-time-zone").value.trim()', + "enabled: schedule.enabled", + 'prompt: root.querySelector("#schedule-edit-prompt").value.trim()', + ): + if required not in prototype_text: + raise SystemExit(f"prototype Schedule edit does not round-trip observed state: {required}") + for forbidden in ("const grants = workflow.steps.map", "schedules.unshift("): + if forbidden in creation_text: + raise SystemExit(f"prototype Schedule creation derives or invents observed state: {forbidden}") + if 'window.location.hash === "#schedule"' not in prototype_text: + raise SystemExit("prototype does not expose a directly addressable Schedule state") + if 'class="studio-schedule-panel"' not in prototype_text: + raise SystemExit("prototype schedule panel is missing from the editor") + if "Publish this workflow before scheduling it." not in prototype_text: + raise SystemExit("prototype schedule draft-state copy is missing") + if "schedulePanelMode" not in prototype_text or "data-schedule-id" not in prototype_text: + raise SystemExit("prototype does not model Schedule list and detail states") + if "const schedule = schedules[0]" in prototype_text: + raise SystemExit("prototype only renders the first Schedule") + if "graphLayout(workflowSteps, schedulePanelOpen)" not in prototype_text: + raise SystemExit("prototype does not reserve canvas layout for the Schedule panel") + if "flex: 0 0 400px;" not in prototype_text: + raise SystemExit("prototype Schedule panel does not reserve desktop width") + if "What will run" in prototype_text: + raise SystemExit("prototype still presents Schedule definitions inside Activity") + for forbidden in ( + "function openScheduledRuns", + 'id="schedule-activity"', + "View scheduled runs", + "watch Activity", + "next fire and Activity", + "rereads Team Automation and Activity", + "It will appear in Activity when available.", + ): + if forbidden in prototype_text: + raise SystemExit(f"prototype Schedule surface uses the obsolete Activity handoff: {forbidden}") + for required in ( + "function renderScheduleModalSelected", + "function scheduleAttemptOutcome", + "function scheduleOverviewMarkup", + "function scheduleHistoryMarkup", + "function openRelatedRunsInActivity", + "View related runs in Activity", + "Recent attempts", + "Schedule outcome", + "Failed to start", + "Run created", + "Accepted", + "Technical details", + "The ${source.toLowerCase()} attempt could not start the Workflow.", + 'class="schedule-attempt-row-link"', + 'target="_blank" rel="noopener noreferrer"', + "data-production-href", + "prototypeRun", + "activityScheduleId", + "run.scheduleId === activityScheduleId", + "?workflowId=${workflow.id}&schedule=${schedule.scheduleId}&origin=schedule", + ): + if required not in prototype_text: + raise SystemExit(f"prototype Schedule history flow is missing: {required}") + if "scheduleMutation" not in prototype_text: + raise SystemExit("prototype does not model accepted Schedule mutations") + if 'data-step-type="schedule"' in prototype_text: + raise SystemExit("prototype still exposes Schedule as a workflow graph node") + if "schedule.enabled = event.target.checked" in prototype_text: + raise SystemExit("prototype treats an accepted Schedule update as authoritative") + if "prototypeSchedules[currentWorkflow.id] = []" in prototype_text: + raise SystemExit("prototype treats an accepted Schedule delete as authoritative") + for required in ( + "prototypeWorkflowSchedules[currentWorkflow.scopeId]?.[currentWorkflow.id]", + "GET /api/scopes/{scopeId}/workflows/{workflowId}/schedules", + "GET /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}", + "PUT /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}", + "POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}:enable", + "POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}:disable", + "POST /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}:run-now", + "DELETE /api/scopes/{scopeId}/workflows/{workflowId}/schedules/{scheduleId}", + "displayName: quickScheduleDraft.name", + "cronExpression: quickScheduleDraft.cronExpression", + "timezone: quickScheduleDraft.timeZone", + "enabled: quickScheduleDraft.enabled", + "prompt: quickScheduleDraft.prompt", + "schedule.scheduleId", + "enabled: schedule.enabled", + "refreshWorkflowSchedules", + ): + if required not in prototype_text: + raise SystemExit(f"prototype is missing workflow-scoped Schedule behavior: {required}") + schedule_surface_text = prototype_text[ + prototype_text.index("function scheduleAvailability"): + prototype_text.index("function renderActivity") + ] + for forbidden in ( + "schedule.id", + ".teamId", + ".memberId", + "prototypeTeamAutomations", + "Team member automation", + "Team Automation", + "/api/schedules", + ): + if forbidden in schedule_surface_text: + raise SystemExit(f"prototype Schedule flow uses the wrong product owner: {forbidden}") + if "teamId" in prototype_text or "memberId" in prototype_text: + raise SystemExit("pure Workflow prototype fixtures still require Team or Member identity") + if "Run input (optional)" not in prototype_text: + raise SystemExit("prototype does not expose prompt as optional") + if "Schedule update accepted." not in prototype_text or "Schedule deletion accepted." not in prototype_text: + raise SystemExit("prototype does not model accepted Workflow Schedule mutations") + if "function schedulePreview(schedule)" not in prototype_text: + raise SystemExit("prototype does not distinguish paused Schedule previews") + if 'schedule.enabled && schedule.nextFireAt ? [schedule.nextFireAt] : ["No upcoming attempts"]' not in prototype_text: + raise SystemExit("prototype promises upcoming attempts for a paused Schedule") + + schedule_prototype_text = schedule_prototype_path.read_text(encoding="utf-8") + if "prototype.html#schedule" not in schedule_prototype_text: + raise SystemExit("dedicated Schedule prototype does not open the visible Schedule state") + for png_name, expected_sha256 in SCHEDULE_PNG_SHA256.items(): + verify_png( + BASELINE_DIR / png_name, + (1440, 900), + expected_sha256, + actual_schedule_sha256, + actual_renderer_sha256, + ) + + frame_names = tuple( + element["name"] + for element in document["elements"] + if element.get("type") == "frame" + ) + if frame_names != EXPECTED_FRAMES: + raise SystemExit( + "frame inventory mismatch:\n" + f"expected {EXPECTED_FRAMES!r}\n" + f"got {frame_names!r}" + ) + + with tempfile.TemporaryDirectory(prefix="aevatar-vnext-baseline-") as temp_dir: + generated_dir = Path(temp_dir) + generated_script = generated_dir / GENERATOR_NAME + shutil.copyfile(generator_path, generated_script) + subprocess.run(["python3", str(generated_script)], check=True, capture_output=True) + generated_bytes = (generated_dir / BOARD_NAME).read_bytes() + generated_schedule_script = generated_dir / SCHEDULE_GENERATOR_NAME + shutil.copyfile(schedule_generator_path, generated_schedule_script) + subprocess.run(["python3", str(generated_schedule_script)], check=True, capture_output=True) + generated_schedule_bytes = (generated_dir / SCHEDULE_BOARD_NAME).read_bytes() + + if importlib.util.find_spec("PIL") is not None: + subprocess.run( + [sys.executable, str(schedule_renderer_path), "--output-dir", str(generated_dir)], + check=True, + capture_output=True, + ) + for png_name in SCHEDULE_PNG_SHA256: + if (generated_dir / png_name).read_bytes() != (BASELINE_DIR / png_name).read_bytes(): + raise SystemExit(f"schedule renderer output does not match {png_name}") + + if generated_bytes != board_bytes: + raise SystemExit("generator output does not match the committed Excalidraw") + if generated_schedule_bytes != schedule_board_bytes: + raise SystemExit("schedule generator output does not match the committed Excalidraw") + + print(f"design SHA-256: {actual_sha256}") + print(f"frames: {len(frame_names)}/{len(EXPECTED_FRAMES)}") + print(f"schedule design SHA-256: {actual_schedule_sha256}") + print(f"schedule frames: {len(schedule_frame_names)}/{len(EXPECTED_SCHEDULE_FRAMES)}") + print(f"schedule PNGs: {len(SCHEDULE_PNG_SHA256)} standalone 1440x900 scenes") + print("schedule PNG pixels: non-blank and source-linked") + print("schedule HTML: direct entry available") + print("generators output: byte-identical") + print("workflow activity vNext baseline: PASS") + + +if __name__ == "__main__": + main() diff --git a/apps/aevatar-console-web/docs/features/2026-09-14-channel-pages.md b/apps/aevatar-console-web/docs/features/2026-09-14-channel-pages.md new file mode 100644 index 0000000000..88413c1d43 --- /dev/null +++ b/apps/aevatar-console-web/docs/features/2026-09-14-channel-pages.md @@ -0,0 +1,292 @@ +# Channels in the Console + +> Superseded by [Channel Bot Adoption](../superpowers/specs/2026-09-17-channel-bot-adoption.md). +> Channels now lists bound and unbound NyxID bots with a static illustrated guide +> and a Bind action. The Telegram credential form and runtime-config API described +> below are historical. + +Channels is a first-level destination in the Workflow Activity vNext sidebar. +It lets the signed-in owner view their connected bots and inspect a connection. + +The three pages follow the latest simplified [Figma design](https://www.figma.com/design/FaVJx5IZeQX9jHcUi55ndB?node-id=7-226) +(list frame `7:2`, detail frame `6:131`, Telegram form `7:226`). The initial detail +design used Remove as its sole resource action. The current detail page also +links to the editor documented in +[Channel Runtime Editor](../2026-09-15-channel-runtime-editor.md); its edit form +now exposes only Label and Skill name, preserving existing service authorization. + +Channel refresh is explicitly user driven. Do not add background polling or +refresh on focus/reconnection to these pages. + +Manual Refresh keeps the connected table mounted and displays the shared +loading overlay over that table while the registration list, bot names, and +active status refreshes settle. Table actions are inert during the refresh; +the button blocks duplicate submissions. Completion or failure removes the +overlay and restores interaction, with the existing error toast and manual +retry behavior retained. + +The page header and content are horizontally centered within the area beside +the navigation rail, using the same maximum width and responsive side padding. +The connection form and details share this alignment; the form keeps its +narrower maximum width. On small screens the containers fill the available +width while retaining the shell's side padding. + +Refresh and Manage use outlined button styling with visible hover/focus states +and larger touch targets on mobile. Manage retains navigation-link semantics. +Details omit Scope. Bot ID and Agent key ID are blue underlined external links +with an external-link icon, opening the corresponding NyxID record in a new tab. +The website origin is the design's `https://nyx.chrono-ai.fun`, separate from +the configured NyxID API/OIDC authority. Bot links use `/channel-bots/{botId}`; +Agent key links use the verified NyxID `/keys/api-key/{agentKeyId}` route. +The Figma `/keys/xxx` placeholder refers to NyxID service details, so it is not +used for Agent keys. Each complete source ID is encoded as one URL segment; +missing IDs remain unlinked placeholders. + +The compact identifier in each connected-channel row opens the shared Tooltip +with the exact full bot ID (or registration ID when no bot ID exists). Mouse +hover, keyboard focus and click/tap reveal the full value, which wraps within +the Tooltip instead of being shortened again. The control has a visible focus +ring. + +## Routes and existing setup + +- `/scopes/:scopeId/workflow-activity-vnext/channels`: platform directory and + owner connection list. +- `/scopes/:scopeId/workflow-activity-vnext/channels/:registrationId`: exact + connection details. Registration IDs are opaque and encoded as one segment. +- `/scopes/:scopeId/workflow-activity-vnext/channels/connect/telegram`: the + single-page Telegram connection form. Connect Telegram navigates here. + The channel directory shows Telegram and WhatsApp only. WhatsApp replaces + the Lark/Feishu placeholders and is marked Soon without a connection action; + Discord and Slack placeholders are omitted. Existing connected records still + render the platform returned by the API. + The older backend `/channels` onboarding page remains independently available. + +`AEVATAR_CHANNEL_WEBHOOK_BASE_URL` optionally sets the public backend callback +base URL at build time. The default is +`https://aevatar-console-backend-api.aevatar.ai`. It must be HTTPS without +credentials, query, or fragment. An invalid value disables registration with +an inline deployment-configuration message. It is never inferred from the +separate Console frontend origin or shown as an editable form field. + +## Telegram connection form + +The form requires a masked bot token and shows independent optional Channel name +(「Channel 名字」 in Chinese) and Skill name inputs. They share a row on desktop +and stack on narrow screens. The service selection may be empty. The token +reveal control is keyboard accessible. Unsaved form navigation asks whether to discard; form data +is never persisted. The token is used only for Telegram's official name lookup +and the authenticated registration POST. It stays in component memory for a +manual retry after failure and clears after successful admission. No registration +mutation cache stores it. + +Services use the current NyxID session's complete `GET /api/v1/user-services` +inventory and its exact bearer service grants. The account inventory includes +HTTP tools and LLM services; personal ownership alone does not establish that +the current Aevatar session can grant a service to a bot. + +The existing session helper refreshes an expired session before selection. +The auth adapter reads `allow_all_services` and `allowed_service_ids` from that +access token. Explicit `true` permits all active, account-accessible UserServices; +explicit `false` permits only exact IDs in the list, including an empty grant. +Inactive services, disallowed organization memberships and unknown credential +sources remain excluded. Names, slugs, catalog IDs and credential IDs never +substitute for `UserService.id`. No service type is excluded: an authorized LLM +service such as Chrono Public remains selectable even without MCP operations. + +These claims are used only for display filtering, not as client-side signature +verification or proof that registration will succeed. The inventory request is +pinned to the exact bearer used for filtering; NyxID authenticates it and the +registration backend enforces delegation limits. Unsupported/malformed claims, +a mismatched account subject, an expired JWT or a failed inventory read leave +the picker in a retryable error state. There is no allow-all fallback when +claims are absent. Token/parser errors are sanitized, and token/claim payloads +never enter the query cache. Only the filtered safe display fields are retained. + +Do not substitute `/api/v1/mcp/config` for this authorization list: its documented +contract describes executable tool operations and omits LLM services and some +services with unavailable runtime routes. `/api/v1/llm/status` is also not an +exact current-bearer grant inventory, and account consent records may differ +from the current token's resource restrictions. The NyxID access-token producer +in `backend/src/crypto/jwt.rs` emits explicit service grants for OAuth clients; +`backend/src/mw/auth.rs` consumes the same fields for service authorization. + +The inventory read omits browser cookies and bypasses HTTP caching. It runs on +entry and explicit recovery only; no polling, window-focus or reconnect refresh +is added. A bearer with only some account services authorized sees only that +subset, across HTTP and LLM service types. + +Options use label, then catalog service name, then slug. Search matches label +or slug and preserves selections outside the current search. A Select all +checkbox selects or clears every available service in the current results, +with a partial-selection state. While searching, it is labeled Select all +results and preserves selections outside the search. Inactive or disallowed +services are excluded; no selectable results or a locked form disables it. +Each selection uses the exact `services[].id`; no default selection is made. +The registration POST always supplies `authorization_mode: explicit_service_allowlist` and +`service_ids`, including `[]` for no service access. It never substitutes a +slug, endpoint ID, API key ID, or omitted field. If a selected service becomes +unavailable after an explicit recovery read, it is removed from the selection. +Submission waits while access is being rechecked, preventing stale hidden IDs +from entering a retry. Load failure has inline retry; an empty authorized list +can connect with an explicit empty service allowlist even if the account owns +other services. + +Registration uses existing `POST /api/channels/registrations` with +`platform`, `bot_token`, `label`, `default_skill_name`, `webhook_base_url`, and +the explicit selection above. A `202`/`status: accepted` response must contain +the registration ID. After admission, the form clears its token, retains only +the safe returned ID, and explicitly refreshes registrations once. A successful +fresh read must contain that exact ID, route scope and Telegram platform before +the success toast and navigation to the newly created channel's existing detail +page. The form does not return to the collection automatically or infer success +from cached rows after a failed read. Until confirmation, it preserves the +submitted choices and shows a pending state with Check again. This action only +repeats the GET, never the create POST; failed confirmation reads show a safe +error toast and remain retryable. No polling, window-focus refresh, or reconnect +refresh runs. Inbound activity continues to use its real status, independently +of registration creation. +Registration failures, including +504 and network errors, show a shared error toast and restore editable fields and Connect +Telegram. Inputs and still-authorized selections are preserved for an explicit manual +retry; no automatic registration retry runs. An in-flight request still blocks +duplicate clicks. An accepted submission cannot be sent again while navigation +is completing; late responses after unmount cannot show a toast or navigate. + +### Channel name, Skill name and Telegram bot-name defaults + +The registration adapter trims the two inputs independently: Channel name maps +to `label`, and Skill name maps to `default_skill_name`. If both are nonblank, +Telegram name lookup is skipped. Otherwise, the adapter calls Telegram's +official `getMe` endpoint once and uses the bot's trimmed `first_name`, never +its `username`, to resolve missing names. + +A blank Channel name defaults to the bot name plus a hyphen and six random +digits (for example, `My Bot-482731`). The suffix is generated in the frontend +once per submission, in the range 100000–999999. A blank Skill name defaults +to the bot name without the suffix, restoring the original independent field +behavior. Custom names receive no suffix and never overwrite the other input. +The form locks during lookup/submission and preserves its input after failure; +a manual retry resolves the current token/name again. + +This uses the same official API flow as NyxID's existing Telegram onboarding, +because the reviewed Aevatar/NyxID backend has no separate pre-registration +name endpoint. The plain fetch targets only `https://api.telegram.org`, with +credentials omitted, no cache, no referrer, redirects rejected and a 15-second +timeout. Telegram's protocol requires the token in the API request path; it +never enters browser navigation, logs, toast text, persistent state, or the +authenticated fetch helper. Raw fetch errors and response bodies are discarded. +A rejected token, unavailable lookup or absent bot name prevents registration, +shows a safe toast and leaves the form available for retry. + +## Connected names, channels and skills + +The connected table separates Channel name from Channel (platform). The current +Aevatar registration summary does not return the submitted label: provisioning +stores it on the NyxID bot. For a nonempty list with bot references, the page +therefore reads `GET /api/v1/channel-bots` once through existing NyxID auth/config, +without an organization selector. This endpoint returns the caller's active +personal bots as `{ bots, total }`. Only `id`, `platform` and `label` enter the +query cache. Registration `nyx_channel_bot_id` must exactly match `bots[].id`, +and platforms must agree; registration IDs, platform bot IDs, usernames and +skill names never substitute for that join or for the Channel name. + +Names load independently of registrations and statuses. Missing/deactivated +bots, empty labels and failed reads show Name unavailable beside the existing +identifier; loading is shown explicitly. A name-read failure preserves the +connected rows and actions, shows a safe error toast and can be retried with +Refresh. Refresh reads the names once with the list/status reads. No per-row +name request, automatic retry, polling, focus or reconnect refresh is added. + +Channel details use the same bot-identity query and exact join for their Channel +name heading. Missing or failed name reads keep the detail facts and actions +available with a local Reload channel name action. The title never substitutes +a compact bot ID, registration ID or Skill name for the label. + +Channel details include Skill using the same name, optional version and Ornn +link as the connected list. Missing skills show Not set. Reading names/skills +does not request full runtime configuration or alter bot resources. + +### Authorized services in channel details + +The detail page displays the registration's saved `authorization_mode` and +`service_ids` from `GET /api/channels/registrations`. For an explicit allowlist, +only those exact UserService IDs are shown. One account inventory read resolves +their labels and slugs; the current session's selectable grants and service +activity do not hide saved channel authorizations or add other services. +Only safe ID, label and slug fields enter the service-name query cache. + +Services appear as compact labels arranged horizontally, wrapping when the +available width is filled. Each service shows its resolved display name once; +the slug is not repeated on a second line. Long names wrap within their label. + +Missing service names retain their saved IDs. A failed name lookup preserves +other details and the saved authorization list, shows a safe toast, and offers +a manual retry of the names alone. Explicit empty authorization shows no +services authorized; NyxID default authorization and unavailable or legacy +authorization details have distinct messages and do not query the inventory. +No automatic refresh or registration change is introduced by this display. + +## API and ownership + +Contracts were checked against `origin/feature/integrate` and the backend +API comment in [issue #3617](https://github.com/aevatarAI/aevatar/issues/3617). + +- `GET /api/channels/registrations` supplies the current owner's summaries. + The frontend never requests the administrative `scope=all` view and excludes + records explicitly marked as foreign. The route scope partitions query + state and navigation; authentication remains the server's owner authority. +- Each visible connection reads + `GET /api/channels/registrations/{registrationId}/status` independently. + Pending, active, error, and unknown states remain distinct. A status failure + does not hide the connection or claim it is active. Visible status queries + load on entry and refresh only through the explicit Refresh action. Neither + the list nor status queries poll, refresh on window focus, or refresh on + network reconnection. +- Skill uses `default_skill.name` and optional `version` from PR #3620. + The deployed name-only `default_skill_name` contract is also supported. + An absent name displays Not set; an absent version is omitted. No skill + examples are embedded in runtime code. Ornn links use its published + `/skills/:idOrName` route and the existing `ORNN_BASE_URL` configuration. +- Detail uses the exact owned summary and its status. It does not request or + cache the full runtime configuration because this design has no editor. + Unknown or inaccessible registrations share one unavailable state. +- The API adapter selects safe fields before returning to the query cache. + Webhook URLs, credentials, runtime instructions, arbitrary extra fields, and + raw error/cleanup bodies are not retained. Agent key ID is an identifier, + never the raw key. + +## Removal and recovery + +Remove first confirms the specific bot. DELETE uses the registration ID, +never the bot ID, scope ID, or key ID. A failed operation keeps the detail and +confirmation available for retry. No real connection is removed during QA. + +A `status: deleted` response starts list reconciliation. The UI keeps Remove +disabled and waits for the registration to disappear from a fresh owner list +before reporting completion and returning to Channels. Removal triggers one +list read; if the row is still present, Check again performs one GET and never +repeats DELETE. No background polling runs while waiting. +Cleanup warnings produce a safe NyxID follow-up message without displaying +raw diagnostic values. + +## Design baseline and validation + +The existing shell continues to follow: + +- `docs/design-baselines/workflow-activity-vnext/aevatar-workflow-activity-vnext.excalidraw` +- SHA-256: `30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de` +- `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-design.md` +- `docs/superpowers/specs/2026-08-04-workflow-activity-vnext-user-paths.md` + +The supplied simplified Figma frames extend that shell with Channels. Existing +login, callback, session, returnTo, and Umi localization remain shared. All +production records and statuses come from real APIs; no mock fallback exists. + +Focused coverage exercises API field selection and encoding, deployed/new +skill contracts, unknown status, loading/error/empty recovery, query isolation, +first-level navigation, detail ownership, confirmation cancellation, delayed +removal, failure retry, and safe cleanup warnings. Mobile table rows retain +labels and Manage; long IDs wrap or shorten for display while full identifiers +remain in detail. Full frontend tests, typecheck, and production build belong +to GitHub CI under the personal incremental validation policy. diff --git a/apps/aevatar-console-web/docs/features/2026-09-14-console-home-scope.md b/apps/aevatar-console-web/docs/features/2026-09-14-console-home-scope.md new file mode 100644 index 0000000000..3744f14bbe --- /dev/null +++ b/apps/aevatar-console-web/docs/features/2026-09-14-console-home-scope.md @@ -0,0 +1,19 @@ +# Console home scope resolution + +The default home, login fallback, overview redirect and 404 return action use +`/scopes`. This is a technical entry that reads the existing authenticated +`GET /api/auth/me` contract and opens +`/scopes/{scopeId}/workflow-activity-vnext/workflows` using the returned scope. + +Never embed a personal scope in the default route or infer it from user +`subject`, browser storage, or a previously cached account. A fresh successful +session response with `authenticated: true` and a nonempty `scopeId` is required +before navigation. Loading does not open a workspace; failed or incomplete +authentication offers manual retry without a fallback scope. No background +polling, focus refresh, or reconnect refresh is introduced. + +Existing explicit deep links and server authorization remain authoritative for +resource access. This change fixes the default destination; a URL or scope ID +is not an authorization grant. Tests cover different accounts, cached previous +identity, missing/expired authentication and manual recovery. Full frontend +validation is delegated to GitHub CI. diff --git a/apps/aevatar-console-web/docs/superpowers/plans/2026-08-04-workflow-activity-vnext-implementation.md b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-04-workflow-activity-vnext-implementation.md new file mode 100644 index 0000000000..627f4ae6ab --- /dev/null +++ b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-04-workflow-activity-vnext-implementation.md @@ -0,0 +1,99 @@ +# Workflow Activity vNext Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Deliver every approved Workflow Activity vNext user path under the isolated scoped route namespace using only authoritative backend data and existing authentication/localization behavior. + +**Architecture:** The route package owns page composition and transient interaction state. Existing Studio, scope, runtime, auth, and Settings adapters remain authoritative; one new typed adapter owns observatory and fork transport decoding. TanStack Query keys include the route scope and normalized filters, while accepted-to-readable and accepted-to-observed transitions use explicit receipt-bound state machines. + +**Tech Stack:** React 19, TypeScript, Umi Max, Ant Design, TanStack Query, XYFlow/GraphCanvas, Jest, Testing Library, Biome. + +--- + +### Task 1: Isolated routes and typed transport boundary + +**Files:** +- Modify: `config/routes.ts` +- Modify: `src/routesConfig.test.ts` +- Create: `src/shared/models/workflowActivity.ts` +- Create: `src/shared/api/workflowActivityApi.ts` +- Create: `src/shared/api/workflowActivityApi.test.ts` + +- [ ] Write route assertions for all seven hidden vNext routes, literal `workflows/new` ordering, namespace-only redirect, and unchanged legacy redirects; run the single route test and confirm RED. +- [ ] Add precise observatory summary/detail/graph, filter, and fork receipt models plus decoders that preserve unknown status values and reject malformed required identity/version fields. +- [ ] Write adapter tests for encoded scope/filter queries, independent detail/graph requests, 401/403/404 propagation, fork request identity, and receipt decoding; run and confirm RED before implementation. +- [ ] Implement the seven route records and typed adapter, then rerun only `src/routesConfig.test.ts` and `src/shared/api/workflowActivityApi.test.ts` to GREEN. + +### Task 2: Scoped shell, catalogue, and direct creation + +**Files:** +- Create: `src/pages/workflow-activity-vnext/index.tsx` +- Create: `src/pages/workflow-activity-vnext/WorkflowActivityVNextShell.tsx` +- Create: `src/pages/workflow-activity-vnext/navigation.ts` +- Create: `src/pages/workflow-activity-vnext/workflows/WorkflowsPage.tsx` +- Create: `src/pages/workflow-activity-vnext/workflows/NewWorkflowPage.tsx` +- Create: `src/pages/workflow-activity-vnext/workflows/workflowCreation.ts` +- Create: `src/pages/workflow-activity-vnext/hooks/useDraftMaterialization.ts` +- Create: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [ ] Write route integration tests for authoritative catalogue loading, successful empty data, partial-source failure, search, and real-ID navigation; run the new page test and confirm RED. +- [ ] Write creation tests for Describe, blank, YAML import, and bundled versioned template paths. Cover materialized and `202 projection_pending` responses, bounded `404`, preserved receipt/input, retrying the same GET, and duplicate-submit prevention; confirm RED. +- [ ] Implement the local rail/mobile navigation with existing `ConsoleLanguageSwitch` and `ConsoleAuthActions`, two-source catalogue, four direct creation forms, and receipt-bound materialization hook. +- [ ] Rerun only the new route test after each user-path slice until UP-00 through UP-05 are GREEN. + +### Task 3: Common editor, first save, and draft execution + +**Files:** +- Create: `src/pages/workflow-activity-vnext/workflows/WorkflowEditorPage.tsx` +- Create: `src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts` +- Create: `src/pages/workflow-activity-vnext/hooks/useDraftRun.ts` +- Reuse: `src/pages/team-member-workflow-studio/components/WorkflowStudioCanvas.tsx` +- Reuse: `src/pages/team-member-workflow-studio/components/WorkflowStudioNodeLibrary.tsx` +- Reuse: `src/pages/team-member-workflow-studio/components/WorkflowStudioNodeDetailPanel.tsx` +- Reuse: `src/pages/team-member-workflow-studio/components/WorkflowStudioYamlPanel.tsx` +- Reuse: `src/pages/team-member-workflow-studio/components/WorkflowStudioDraftRunPanel.tsx` + +- [ ] Write editor tests for exact draft loading, committed fallback, dirty state, YAML/canvas shared state, validation findings, existing-draft PUT, and committed-only first-save POST with returned-ID route replacement; confirm RED. +- [ ] Implement the editor hook and page using existing Studio graph/document helpers without member APIs or member identity. +- [ ] Write draft-run tests for real serialized YAML, stable submission, accepted/running state, disconnected/error state, no Activity completion claim, and general Open Activity when no trustworthy run ID exists; confirm RED. +- [ ] Implement `runtimeRunsApi.streamDraftRun` integration and authoritative stream presentation, then rerun the route test to GREEN for UP-06 and UP-07. + +### Task 4: Activity observation, ledger, detail, and recovery + +**Files:** +- Create: `src/pages/workflow-activity-vnext/activity/ActivityPage.tsx` +- Create: `src/pages/workflow-activity-vnext/activity/RunDetailPage.tsx` +- Create: `src/pages/workflow-activity-vnext/activity/runRecovery.ts` +- Create: `src/pages/workflow-activity-vnext/hooks/useRunObservation.ts` + +- [ ] Write tests for URL-backed server filters, workflow definition resolution, filter-unavailable fallback, loading/empty/error/unknown statuses, and recent-window wording; confirm RED. +- [ ] Implement the Activity query and ledger without name joins, local totals, revisions, duration, usage, outcome, or Needs-you filtering. +- [ ] Write tests for independent detail/graph loading, safe not-found, partial running detail, graph-only failure, failed-step eligibility, first-executable-step eligibility, immutable source, fork receipt display, and no `newRunActorId` detail navigation; confirm RED. +- [ ] Implement detail, graph, Retry, Run again, and bounded observation, then rerun the route test to GREEN for UP-08 through UP-12. + +### Task 5: Settings, identity, responsive behavior, and locale + +**Files:** +- Create: `src/pages/workflow-activity-vnext/settings/SettingsPage.tsx` +- Create: `src/pages/workflow-activity-vnext/styles.ts` +- Modify: `src/locales/en-US.ts` +- Modify: `src/locales/zh-CN.ts` +- Modify: `src/locales/projectMessages.en-US.ts` +- Modify: `src/locales/projectMessages.zh-CN.ts` +- Modify: `src/locales/catalog.test.ts` + +- [ ] Write tests for real LLM loading/dirty/accepted/observed/catalogue-unavailable/save-failure states, auth-me identity/expiry, existing auth actions, runtime loading/unavailable, and no localStorage authority; confirm RED. +- [ ] Implement AI Defaults by reusing `userLlmSelection.ts` and `observeUserLlmSave`, Account through existing session/actions, and Advanced through `getUserConfigRuntime`. +- [ ] Add every new message to both locale catalogues and verify catalogue parity with the single locale test. +- [ ] Add responsive Operational Automation Ledger styles and test keyboard-visible controls, semantic status, dialogs, long identities, and mobile section navigation; rerun only the new page and locale tests to GREEN for UP-13 through UP-16. + +### Task 6: Focused verification and delivery + +**Files:** +- Review all files changed relative to `origin/feat/2026-08-04_workflow-activity-vnext` + +- [ ] Run `frontend_change_scope.py --base origin/feat/2026-08-04_workflow-activity-vnext`, explicitly execute every changed/new Jest file and dependency-related tests, then run Biome only on reported static-check files. +- [ ] Because the user explicitly requested full TypeScript and production-build validation, run the package `tsc` and `build` with `CODEX_ALLOW_FULL_FRONTEND_VALIDATION=1`; do not run the complete Jest suite. +- [ ] Run the design baseline verifier and confirm the declared SHA, byte-identical generator output, and 17/17 frames. +- [ ] After the environment synchronizer succeeds, verify real authenticated desktop/tablet/mobile routes in-browser and capture screenshots. If the synchronizer/backend/OAuth environment remains unavailable, record the exact gap without mocks. +- [ ] Review the complete frontend-only diff, stage only this task's files, commit with an imperative message, push, and create a Draft implementation PR without modifying PR #3187 or enabling auto-merge. diff --git a/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-activity-vnext-nyxid-visual-alignment.md b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-activity-vnext-nyxid-visual-alignment.md new file mode 100644 index 0000000000..a9e153c316 --- /dev/null +++ b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-activity-vnext-nyxid-visual-alignment.md @@ -0,0 +1,131 @@ +# Workflow Activity vNext NyxID Visual Alignment Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Align every Workflow Activity vNext page with NyxID's measured layout, typography, density, table, form, and responsive patterns while preserving Aevatar colors and all existing product behavior. + +**Architecture:** Keep the current route and component ownership. Centralize the measured visual contract in `styles.ts`, make `WorkflowActivityVNextShell.tsx` own the 52px top bar and responsive navigation, and limit page edits to semantic class hooks or removal of conflicting inline styles. No API, identity, query, routing, locale, or workflow behavior changes are allowed. + +**Tech Stack:** React 19, TypeScript, Ant Design 6, CSS variables in the existing vNext style module, Jest/Testing Library for existing behavior coverage, Biome, and real-browser responsive verification. + +--- + +## Design baseline declaration + +```text +Design baseline: + apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/ +Primary design: + aevatar-workflow-activity-vnext.excalidraw +Design SHA-256: + 30e74d7b410ae72c4c91432355436679033679c54c10b1702908435b001577de +Contract specification: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-04-workflow-activity-vnext-design.md +User paths: + apps/aevatar-console-web/docs/superpowers/specs/ + 2026-08-04-workflow-activity-vnext-user-paths.md +Authentication and localization: + Existing Aevatar login, callback, session, returnTo, and Umi locale logic; + presentation may change, behavior may not. +Production data source: + Real APIs and API-acknowledged user actions only; no mock fallback. +Baseline integrity: + python3 apps/aevatar-console-web/docs/design-baselines/ + workflow-activity-vnext/verify-baseline.py +``` + +### Task 1: Lock the measured design contract + +**Files:** +- Modify: `docs/canon/frontend-design.md` +- Create: `apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-activity-vnext-nyxid-visual-alignment.md` + +- [x] Record the measured shell, typography, spacing, control, table, responsive, and accessibility rules. +- [x] Record the permitted Aevatar deviations: existing colors, AlibabaSans delivery, and the repository's 8px radius cap. +- [x] Update issue `#3194` with the measurement table, page inventory, and acceptance evidence. +- [x] Run `bash tools/docs/lint.sh` and `git diff --check`. +- [x] Commit the documentation as `Document NyxID visual alignment`. + +### Task 2: Align the shared shell and navigation + +**Files:** +- Modify: `src/pages/workflow-activity-vnext/WorkflowActivityVNextShell.tsx` +- Modify: `src/pages/workflow-activity-vnext/styles.ts` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [x] Preserve the existing semantic navigation and account/language components while moving their presentation into a 52px top bar. +- [x] Place the Aevatar brand and current breadcrumb in the top bar, start the 200px local rail below it, and render the page title inside the main content surface. +- [x] Replace the permanent mobile navigation strip with an accessible menu button and drawer using the same route builders. +- [x] Define shared spacing, type, radius, shadow, control, and table tokens in `.wa-vnext`. +- [x] Run the existing route integration test before and after the shell change to prove navigation, auth action reuse, and page behavior remain intact: + +```bash +pnpm exec jest --runInBand --runTestsByPath \ + src/pages/workflow-activity-vnext/index.test.tsx +``` + +### Task 3: Align Workflows and New workflow + +**Files:** +- Modify: `src/pages/workflow-activity-vnext/workflows/WorkflowsPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/workflows/NewWorkflowPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/styles.ts` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [x] Keep Workflow search and source filter in one responsive toolbar. +- [x] Render the Workflow table with a 32px header, 53-60px rows, one clear Open action, and the branch's existing accessible secondary actions. +- [x] Remove the mobile card transformation and use a named local horizontal scroll region. +- [x] Replace New workflow inline presentation styles with shared classes: four equal-level creation choices, then one form container for the selected method. +- [x] Verify Describe, blank, import, and template retain their current authoritative creation behavior through the existing focused test file. + +### Task 4: Align the Workflow editor + +**Files:** +- Modify: `src/pages/workflow-activity-vnext/workflows/WorkflowEditorPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/styles.ts` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [x] Keep Canvas and YAML as a compact segmented mode control and preserve the existing shared editor state. +- [x] Keep the canvas unframed/full-width inside the work surface; remove conflicting fixed layout values where shared responsive tokens can own sizing. +- [x] Preserve visible Save, Run, Publish availability and the current node library/detail/YAML behavior. +- [x] At mobile width, keep editor actions reachable, allow horizontal action scrolling only inside the toolbar, and preserve the existing accessible node panel behavior. + +### Task 5: Align Activity and Run detail + +**Files:** +- Modify: `src/pages/workflow-activity-vnext/activity/ActivityPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/activity/RunDetailPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/styles.ts` +- Test: `src/pages/workflow-activity-vnext/activity/ActivityPage.test.tsx` +- Test: `src/pages/workflow-activity-vnext/activity/RunDetailPage.test.tsx` + +- [x] Apply the NyxID ledger density to Activity while preserving status, source, updated time, server filters, and the single detail target. +- [x] Keep mobile Activity as a semantic table in a bounded horizontal scroller rather than a card layout. +- [x] Move Run status and recovery actions close to the page title; use a 32px underline tab strip and single-layer detail sections. +- [x] Keep Steps and Diagnostics tables semantic and locally scrollable; preserve independent graph failure and immutable source behavior. +- [x] Run both focused behavior tests after the visual-only edits. + +### Task 6: Align Settings + +**Files:** +- Modify: `src/pages/workflow-activity-vnext/settings/SettingsPage.tsx` +- Modify: `src/pages/workflow-activity-vnext/styles.ts` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [x] Replace the desktop secondary side navigation with a 32px underline tab strip that remains horizontally scrollable on mobile. +- [x] Render each section in one bordered 8px container with a compact section header and 32-36px controls. +- [x] Preserve authoritative LLM clean/dirty/accepted/observed states, current account actions, and read-only advanced values. +- [x] Keep dirty actions at the bottom of the owning container and sticky only when needed; ensure they do not cover mobile inputs. + +### Task 7: Focused verification and delivery + +**Files:** +- Review every file changed by Tasks 1-6. + +- [x] Run the frontend scope analyzer with the task start commit as base and use only its changed source/test/static-check files. +- [x] Run directly changed tests and dependency-related Jest tests only. Do not run the full frontend suite. +- [x] Run Biome with explicit changed frontend file paths. Skip package-wide typecheck because no repository-native affected typecheck target exists; GitHub CI owns full type verification. +- [x] Run `bash tools/ci/test_stability_guards.sh`, `bash tools/docs/lint.sh`, baseline verification, and `git diff --check`. +- [x] Verify real pages at `1440x900`, `834x1112`, and `390x844`, including local table scroll and page-level overflow checks. +- [x] Review `git diff`, stage only this task's files, commit `Align Workflow Activity with NyxID`, push the existing feature branch, update issue `#3194`, and update PR `#3189` with exact focused commands and the GitHub CI delegation statement. diff --git a/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-list-filter-semantics.md b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-list-filter-semantics.md new file mode 100644 index 0000000000..8d6575dd76 --- /dev/null +++ b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-05-workflow-list-filter-semantics.md @@ -0,0 +1,408 @@ +# Workflow List Filter Semantics Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Align Workflow and Activity list filtering without inventing unsupported Workflow states. + +**Architecture:** Keep resource-specific filter semantics while sharing one toolbar interaction model. Workflows derives Draft membership only from the real scoped draft API; Activity keeps its real Run API filters, and both pages synchronize list state with the URL. + +**Tech Stack:** React 19, TypeScript, TanStack Query, Ant Design, Umi locale, Jest, Testing Library, Biome. + +--- + +## Task 1: Specify Workflow filter behavior in tests + +**Files:** + +- Modify: `src/pages/workflow-activity-vnext/index.test.tsx` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` + +- [ ] Replace the pathname-only test location with a pathname-plus-search snapshot so `useConsoleLocation()` sees copied Workflow URLs: + +```tsx +let mockLocation = '/scopes/scope-alpha/workflow-activity-vnext/workflows'; + +const readMockUrl = () => new URL(mockLocation, 'http://console.local'); + +useLocation: () => ({ + hash: '', + pathname: readMockUrl().pathname, + search: readMockUrl().search, +}), + +getLocationSnapshot: () => + `${readMockUrl().pathname}${readMockUrl().search}`, +``` + +- [ ] Add focused tests with distinct identities (`wf-draft-alpha`, `wf-committed-beta`) proving: + +```tsx +mockLocation = + '/scopes/scope-alpha/workflow-activity-vnext/workflows?q=support&view=drafts'; + +expect(await screen.findByText('Support triage')).toBeInTheDocument(); +expect(screen.queryByText('Invoice review')).not.toBeInTheDocument(); +expect(screen.getByRole('searchbox', { name: 'Search workflows' })).toHaveValue( + 'support', +); +expect(screen.getByRole('combobox', { name: 'Workflow view' })).toHaveTextContent( + 'Drafts', +); +``` + +```tsx +fireEvent.mouseDown(screen.getByRole('combobox', { name: 'Workflow view' })); +expect(await screen.findByRole('option', { name: 'All workflows' })).toBeVisible(); +expect(screen.getByRole('option', { name: 'Drafts' })).toBeVisible(); +expect(screen.queryByRole('option', { name: 'Committed' })).not.toBeInTheDocument(); +expect(screen.queryByRole('option', { name: 'Published' })).not.toBeInTheDocument(); +expect(screen.queryByRole('option', { name: 'Failing' })).not.toBeInTheDocument(); +``` + +```tsx +fireEvent.change(screen.getByRole('searchbox', { name: 'Search workflows' }), { + target: { value: 'invoice' }, +}); +await waitFor(() => + expect(history.replace).toHaveBeenLastCalledWith( + '/scopes/scope-alpha/workflow-activity-vnext/workflows?q=invoice', + ), +); +``` + +```tsx +mockStudioApi.listWorkflowDrafts.mockRejectedValue(new Error('draft source down')); +mockLocation = + '/scopes/scope-alpha/workflow-activity-vnext/workflows?view=drafts'; +expect(await screen.findByText('Draft workflows unavailable')).toBeInTheDocument(); +expect(screen.getByRole('button', { name: 'Retry workflows' })).toBeEnabled(); +expect(screen.queryByText('No workflows yet')).not.toBeInTheDocument(); +``` + +- [ ] Run the Workflow test and confirm RED because the view select, URL-backed search/view, clear action, and draft-unavailable state do not exist yet: + +```bash +pnpm exec jest src/pages/workflow-activity-vnext/index.test.tsx --runInBand +``` + +Expected: the newly added assertions fail for missing `Workflow view`, missing URL restoration, or missing draft-unavailable state; unrelated existing tests remain runnable. + +## Task 2: Implement the Workflow view filter and honest draft failure + +**Files:** + +- Modify: `src/pages/workflow-activity-vnext/workflows/WorkflowsPage.tsx` +- Modify: `src/locales/workflowActivityVNextMessages.en-US.ts` +- Modify: `src/locales/workflowActivityVNextMessages.zh-CN.ts` +- Test: `src/pages/workflow-activity-vnext/index.test.tsx` +- Test: `src/locales/catalog.test.ts` + +- [ ] Import `Select`, `useConsoleLocation`, and move Refresh into the shell header next to New workflow: + +```tsx +headerActions={ + + + + +} +``` + +- [ ] Restore `query` and `view` from `location.search`, synchronize browser navigation into state, and serialize only non-default values: + +```tsx +type WorkflowView = 'all' | 'drafts'; + +function readWorkflowView(params: URLSearchParams): WorkflowView { + return params.get('view') === 'drafts' ? 'drafts' : 'all'; +} + +const location = useConsoleLocation(); +const initialParams = React.useMemo( + () => new URLSearchParams(location.search), + [location.search], +); +const [query, setQuery] = React.useState(initialParams.get('q') ?? ''); +const [view, setView] = React.useState( + readWorkflowView(initialParams), +); + +React.useEffect(() => { + const params = new URLSearchParams(location.search); + setQuery(params.get('q') ?? ''); + setView(readWorkflowView(params)); +}, [location.search]); + +React.useEffect(() => { + const params = new URLSearchParams(); + if (query.trim()) params.set('q', query.trim()); + if (view === 'drafts') params.set('view', 'drafts'); + const suffix = params.toString(); + history.replace(`${location.pathname}${suffix ? `?${suffix}` : ''}`); +}, [location.pathname, query, view]); +``` + +- [ ] Build draft membership exclusively from exact API-returned Workflow IDs and apply it before text search: + +```tsx +const draftWorkflowIds = React.useMemo( + () => new Set((drafts.data ?? []).map((item) => item.workflowId)), + [drafts.data], +); + +return [...merged.values()] + .filter((item) => view !== 'drafts' || draftWorkflowIds.has(item.workflowId)) + .filter((item) => { + const normalized = query.trim().toLowerCase(); + return ( + !normalized || + [item.name, item.description, item.workflowId].some((value) => + value.toLowerCase().includes(normalized), + ) + ); + }) + .sort(/* retain current updated-at ordering */); +``` + +- [ ] Add the two-option view Select. Disable only Drafts when the draft source failed; do not add Committed, Published, Failing, Ready, or inferred lifecycle values: + +```tsx + + + {/* page-specific Select controls */} + +``` + +- [ ] Add stable dimensions and mobile full-width behavior without changing other vNext tables or the shell: + +```css +.wa-vnext__toolbar-search { flex: 0 1 360px; max-width: 100%; width: 360px; } +.wa-vnext__toolbar-filters { justify-content: flex-end; } +.wa-vnext__toolbar-filters .ant-select { min-width: 160px; } + +@media (max-width: 600px) { + .wa-vnext__toolbar-search { flex-basis: auto; width: 100%; } + .wa-vnext__toolbar-filters { display: grid; grid-template-columns: 1fr; width: 100%; } + .wa-vnext__toolbar-filters .ant-select, + .wa-vnext__toolbar-filters .ant-space-item, + .wa-vnext__toolbar-filters .ant-btn { width: 100%; } +} +``` + +- [ ] Run the two page tests after the markup/style refactor: + +```bash +pnpm exec jest \ + src/pages/workflow-activity-vnext/index.test.tsx \ + src/pages/workflow-activity-vnext/activity/ActivityPage.test.tsx \ + --runInBand +``` + +Expected: both page test files pass. + +## Task 5: Focused verification, browser evidence, and delivery + +**Files:** + +- Verify only the files changed by Tasks 1-4 and this plan. + +- [ ] Run the exact selected test set: + +```bash +pnpm exec jest \ + src/pages/workflow-activity-vnext/index.test.tsx \ + src/pages/workflow-activity-vnext/activity/ActivityPage.test.tsx \ + src/locales/catalog.test.ts \ + --runInBand +``` + +- [ ] Run dependency-selected tests: + +```bash +pnpm exec jest --findRelatedTests \ + src/pages/workflow-activity-vnext/workflows/WorkflowsPage.tsx \ + src/pages/workflow-activity-vnext/activity/ActivityPage.tsx \ + src/pages/workflow-activity-vnext/styles.ts \ + src/locales/workflowActivityVNextMessages.en-US.ts \ + src/locales/workflowActivityVNextMessages.zh-CN.ts \ + --runInBand +``` + +- [ ] Compute the frontend-only change scope: + +```bash +python3 /Users/abigaildeng/.codex/skills/frontend-incremental-pr/scripts/frontend_change_scope.py \ + --repo . --base HEAD +``` + +- [ ] Run Biome only on the analyzer's exact changed frontend files, for example: + +```bash +pnpm exec biome check \ + src/pages/workflow-activity-vnext/workflows/WorkflowsPage.tsx \ + src/pages/workflow-activity-vnext/activity/ActivityPage.tsx \ + src/pages/workflow-activity-vnext/index.test.tsx \ + src/pages/workflow-activity-vnext/activity/ActivityPage.test.tsx \ + src/pages/workflow-activity-vnext/styles.ts \ + src/locales/workflowActivityVNextMessages.en-US.ts \ + src/locales/workflowActivityVNextMessages.zh-CN.ts +``` + +- [ ] Run whitespace validation: + +```bash +git diff --check +``` + +- [ ] Do not run the full frontend test suite, package-wide lint, package-wide typecheck, or production build locally. Record that GitHub CI owns full verification under the machine-wide `frontend-incremental-pr` policy. + +- [ ] Verify the already-running real frontend at `http://localhost:5173` without mock data at desktop `1440x900`, tablet `834x1112`, and mobile `390x844`. Capture screenshots proving the resource-specific filters, header Refresh placement, URL restoration, responsive full-width controls, and lack of horizontal overflow. Record any real remote API or authentication gap instead of synthesizing success. + +- [ ] Review `git diff --stat`, `git diff`, and `git status --short`. Confirm every changed path is inside `apps/aevatar-console-web/`, no legacy route/auth/menu/API adapter changed, and no unsupported Workflow state or identity conversion was introduced. + +- [ ] Stage only this task's files, commit with: + +```bash +git commit -m "Align Workflow and Activity filters" +``` + +- [ ] Push `feat/2026-08-04_workflow-activity-vnext-implementation` and update Draft PR #3189 with exact focused commands/results plus the CI-delegated full checks. Keep PR #3189 Draft. Do not change PR #3187, enable auto-merge, or merge either PR. diff --git a/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md new file mode 100644 index 0000000000..19e9b8dc97 --- /dev/null +++ b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md @@ -0,0 +1,400 @@ +# Add Node Sequential Link Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Make Workflow Activity vNext Add node extend the current flow with explicit sequential transitions instead of appending a disconnected step that triggers `implicit_next` warnings. + +**Architecture:** Add one pure document-normalization helper beside the existing insertion helpers, then compose it into only the Workflow Activity vNext `addNode` callback. The helper materializes runtime-defined adjacent ordering without changing explicit or branched transitions; `insertStepByType` remains responsible for rewiring the chosen predecessor and preserving its former successor. + +**Tech Stack:** React, TypeScript, Jest, Testing Library, pnpm. + +--- + +## File Map + +- Create `apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md`: executable TDD and delivery plan. +- Modify `apps/aevatar-console-web/src/shared/studio/document.ts`: export a pure helper that turns eligible adjacent implicit transitions into explicit `next` values. +- Modify `apps/aevatar-console-web/src/shared/studio/document.test.ts`: cover chain materialization, explicit and branched preservation, terminal behavior, and immutability. +- Modify `apps/aevatar-console-web/src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts`: normalize the document, resolve the insertion predecessor, and pass it to `insertStepByType`. +- Modify `apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx`: exercise Add node through the page UI for append and selected-middle insertion. +- Existing `apps/aevatar-console-web/docs/superpowers/specs/2026-08-06-add-node-sequential-link-design.md`: approved behavior contract; no implementation edits expected. + +### Task 1: Specify The Pure Transition Materializer + +**Files:** + +- Modify: `apps/aevatar-console-web/src/shared/studio/document.test.ts` +- Test: `apps/aevatar-console-web/src/shared/studio/document.test.ts` + +- [ ] **Step 1: Import the new helper and write the failing chain test** + +Add `materializeImplicitSequentialTransitions` to the import from `./document`, then add a test with three ordered steps: an implicit first step, a second step with an explicit successor, and a terminal third step. Assert that the first gains `next: 'review_step'`, the explicit second successor remains unchanged, and the input object still equals a deep snapshot. + +```ts +it('materializes only eligible implicit sequential transitions without mutating the document', () => { + const document: StudioWorkflowDocument = { + name: 'workspace-demo', + roles: [], + steps: [ + { id: 'draft_step', type: 'llm_call', next: null, branches: {} }, + { + id: 'review_step', + type: 'human_approval', + next: 'publish_step', + branches: {}, + }, + { id: 'publish_step', type: 'emit', next: null, branches: {} }, + ], + }; + const snapshot = structuredClone(document); + + const result = materializeImplicitSequentialTransitions(document); + + expect(result.steps?.map((step) => step.next)).toEqual([ + 'review_step', + 'publish_step', + null, + ]); + expect(document).toEqual(snapshot); + expect(result).not.toBe(document); +}); +``` + +- [ ] **Step 2: Write the failing branched and terminal test** + +Add a case where the first step has `branches: { approved: 'publish_step' }` and no `next`, followed by a second step. Assert the first step still has no linear successor and its branch remains byte-for-byte equivalent. In the same test group, assert empty and single-step documents keep no synthesized transition. + +```ts +it('preserves branched transitions and terminal documents', () => { + const branched = materializeImplicitSequentialTransitions({ + name: 'branched', + roles: [], + steps: [ + { + id: 'approval_step', + type: 'human_approval', + next: null, + branches: { approved: 'publish_step' }, + }, + { id: 'publish_step', type: 'emit', next: null, branches: {} }, + ], + }); + + expect(branched.steps?.[0]).toEqual( + expect.objectContaining({ + next: null, + branches: { approved: 'publish_step' }, + }), + ); + expect(materializeImplicitSequentialTransitions({ steps: [] }).steps).toEqual([]); + expect( + materializeImplicitSequentialTransitions({ + steps: [{ id: 'only_step', type: 'llm_call', next: null, branches: {} }], + }).steps?.[0]?.next, + ).toBeNull(); + + const firstInsertion = insertStepByType( + materializeImplicitSequentialTransitions({ steps: [] }), + 'assign', + ); + expect(firstInsertion.document.steps).toEqual([ + expect.objectContaining({ id: 'assign_step', next: null }), + ]); +}); +``` + +- [ ] **Step 3: Run the exact helper tests and verify RED** + +Run: + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/shared/studio/document.test.ts --testNamePattern 'materializes only eligible implicit sequential transitions|preserves branched transitions and terminal documents' +``` + +Expected: FAIL because `materializeImplicitSequentialTransitions` is not exported or defined. + +- [ ] **Step 4: Commit the failing tests only** + +```bash +git add apps/aevatar-console-web/src/shared/studio/document.test.ts +git commit -m "Test implicit workflow transition materialization" +``` + +### Task 2: Implement The Pure Transition Materializer + +**Files:** + +- Modify: `apps/aevatar-console-web/src/shared/studio/document.ts` +- Test: `apps/aevatar-console-web/src/shared/studio/document.test.ts` + +- [ ] **Step 1: Implement the minimal pure helper** + +Place the exported helper before `insertStepByType`. Clone every step, inspect every non-final step, and only set `next` when the current `next` normalizes empty, the branch map has no entries, and the following sibling has a normalized ID. + +```ts +export function materializeImplicitSequentialTransitions( + document: StudioWorkflowDocument, +): StudioWorkflowDocument { + const steps = Array.isArray(document.steps) ? document.steps : []; + const nextSteps = steps.map((entry, index) => { + const step = { ...entry } as StudioWorkflowStepDocument; + const followingStepId = normalizeString(steps[index + 1]?.id); + const hasBranches = Object.keys(step.branches ?? {}).length > 0; + + if ( + index < steps.length - 1 && + !normalizeString(step.next) && + !hasBranches && + followingStepId + ) { + return { ...step, next: followingStepId } satisfies StudioWorkflowStepDocument; + } + + return step; + }); + + return { ...document, steps: nextSteps }; +} +``` + +- [ ] **Step 2: Run the exact helper tests and verify GREEN** + +Run the command from Task 1 Step 3. + +Expected: PASS for both focused tests. + +- [ ] **Step 3: Run all shared document helper tests** + +Run: + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/shared/studio/document.test.ts +``` + +Expected: all tests in `document.test.ts` pass. + +- [ ] **Step 4: Commit the helper implementation** + +```bash +git add apps/aevatar-console-web/src/shared/studio/document.ts +git commit -m "Materialize implicit workflow transitions" +``` + +### Task 3: Specify Add Node Placement Through The Page + +**Files:** + +- Modify: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx` +- Test: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx` + +- [ ] **Step 1: Write the failing no-selection append test** + +Arrange `getWorkflow` with two implicit steps, make `serializeYaml` return its submitted document, click `Add node`, then `Insert Assign node`. Assert the serialized steps are `draft_step -> review_step -> assign_step`, with the inserted step terminal. + +```ts +it('adds a node after the final step and materializes the existing implicit chain', async () => { + const document = { + name: 'committed_source', + roles: [], + steps: [ + { id: 'draft_step', type: 'llm_call', next: null, branches: {} }, + { id: 'review_step', type: 'human_approval', next: null, branches: {} }, + ], + }; + mockStudioApi.getWorkflow.mockResolvedValue({ + workflowId: 'wf-committed-source', + name: 'Committed source', + fileName: 'committed-source.yaml', + filePath: '', + directoryId: '', + directoryLabel: '', + yaml: 'name: committed_source\nroles: []\nsteps: []\n', + updatedAtUtc: '2026-08-04T10:00:00Z', + document, + draftExists: false, + findings: [], + }); + mockStudioApi.serializeYaml.mockImplementation(async ({ document: submitted }) => ({ + yaml: 'serialized', + document: submitted, + findings: [], + })); + + renderWithQueryClient(); + fireEvent.click(await screen.findByRole('button', { name: 'Add node' })); + fireEvent.click(await screen.findByRole('button', { name: 'Insert Assign node' })); + + await waitFor(() => expect(mockStudioApi.serializeYaml).toHaveBeenCalledTimes(1)); + expect(mockStudioApi.serializeYaml.mock.calls[0][0].document.steps).toEqual([ + expect.objectContaining({ id: 'draft_step', next: 'review_step' }), + expect.objectContaining({ id: 'review_step', next: 'assign_step' }), + expect.objectContaining({ id: 'assign_step', next: null }), + ]); +}); +``` + +- [ ] **Step 2: Write the failing selected-middle insertion test** + +Arrange an explicit three-step chain, click `Select step:review_step`, then use Add node to insert Assign. Assert serialization receives `draft_step -> review_step -> assign_step -> publish_step` and all unaffected transitions remain intact. + +```ts +expect(mockStudioApi.serializeYaml.mock.calls[0][0].document.steps).toEqual([ + expect.objectContaining({ id: 'draft_step', next: 'review_step' }), + expect.objectContaining({ id: 'review_step', next: 'assign_step' }), + expect.objectContaining({ id: 'assign_step', next: 'publish_step' }), + expect.objectContaining({ id: 'publish_step', next: null }), +]); +``` + +- [ ] **Step 3: Run the exact page tests and verify RED** + +Run: + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/pages/workflow-activity-vnext/index.test.tsx --testNamePattern 'adds a node after the final step and materializes the existing implicit chain|inserts a node after the selected middle step and preserves its successor' +``` + +Expected: FAIL because the current callback appends without `afterStepId` and does not materialize existing adjacency. + +- [ ] **Step 4: Commit the failing page tests only** + +```bash +git add apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx +git commit -m "Test Add node sequential placement" +``` + +### Task 4: Wire Explicit Placement Into Workflow Activity vNext + +**Files:** + +- Modify: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts` +- Test: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx` + +- [ ] **Step 1: Import the materializer** + +```ts +import { + applyStepInspectorDraft, + createStepInspectorDraft, + insertStepByType, + materializeImplicitSequentialTransitions, +} from '@/shared/studio/document'; +``` + +- [ ] **Step 2: Normalize the document and resolve the predecessor** + +Inside `addNode`, after obtaining `current`, materialize its implicit adjacency. Resolve a selected step only when `selectedNodeId` has the `step:` prefix; otherwise use the last step with a non-empty ID. + +```ts +const explicitDocument = materializeImplicitSequentialTransitions(current); +const selectedStepId = selectedNodeId.startsWith('step:') + ? selectedNodeId.slice('step:'.length).trim() + : ''; +const finalStepId = [...(explicitDocument.steps ?? [])] + .reverse() + .map((step) => String(step.id ?? '').trim()) + .find(Boolean); +const inserted = insertStepByType(explicitDocument, stepType, { + afterStepId: selectedStepId || finalStepId || null, +}); +``` + +Do not add warning filtering. Keep the existing serialization request, generation guard, selection update, retry state, and local-edit marking unchanged. + +- [ ] **Step 3: Add the selection dependency** + +```ts +[document, markLocalEdit, parseCurrentYaml, selectedNodeId] +``` + +- [ ] **Step 4: Run the exact page tests and verify GREEN** + +Run the command from Task 3 Step 3. + +Expected: both new tests pass. + +- [ ] **Step 5: Run the existing insertion regression tests** + +Run: + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/pages/workflow-activity-vnext/index.test.tsx --testNamePattern 'waits for a node insertion to finish before allowing a competing save|locks structural editing while a save is still in flight|keeps a failed node insertion visible and retryable' +``` + +Expected: all three existing insertion lifecycle tests pass. + +- [ ] **Step 6: Commit the vNext wiring** + +```bash +git add apps/aevatar-console-web/src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts +git commit -m "Fix Add node sequential placement" +``` + +### Task 5: Focused Validation And Pull Request + +**Files:** + +- Verify all task files listed above. +- Do not run package-wide test, lint, typecheck, or build commands locally. + +- [ ] **Step 1: Analyze the frontend change scope** + +```bash +python3 ~/.codex/skills/frontend-incremental-pr/scripts/frontend_change_scope.py --repo . --base origin/feat/2026-08-04_workflow-activity-vnext +``` + +Expected: frontend-only scope limited to the Workflow Activity vNext editor, shared Studio document helper, focused tests, and docs. + +- [ ] **Step 2: Read the framework command guidance selected by the analyzer** + +Read `~/.codex/skills/frontend-incremental-pr/references/framework-commands.md` and select only changed-file static checks supported by this project. If no reliable affected typecheck exists, skip local typecheck and state that GitHub CI owns full verification. + +- [ ] **Step 3: Run focused tests together** + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/shared/studio/document.test.ts src/pages/workflow-activity-vnext/index.test.tsx +``` + +Expected: both changed test files pass. + +- [ ] **Step 4: Run mandatory test and baseline guards** + +```bash +bash tools/ci/test_stability_guards.sh +python3 apps/aevatar-console-web/docs/design-baselines/workflow-activity-vnext/verify-baseline.py +git diff --check origin/feat/2026-08-04_workflow-activity-vnext...HEAD +``` + +Expected: all commands exit 0 and the baseline digest remains unchanged. + +- [ ] **Step 5: Review the complete diff and repository state** + +```bash +git status --short --branch +git diff --stat origin/feat/2026-08-04_workflow-activity-vnext...HEAD +git diff origin/feat/2026-08-04_workflow-activity-vnext...HEAD -- apps/aevatar-console-web/src/shared/studio/document.ts apps/aevatar-console-web/src/shared/studio/document.test.ts apps/aevatar-console-web/src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts apps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsx apps/aevatar-console-web/docs/superpowers/specs/2026-08-06-add-node-sequential-link-design.md apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md +``` + +Expected: no unrelated file changes, no generated artifacts, and the implementation matches the approved design. + +- [ ] **Step 6: Commit the implementation plan and any final focused corrections** + +```bash +git add apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-add-node-sequential-link.md +git commit -m "Document Add node implementation plan" +``` + +- [ ] **Step 7: Push and open the pull request against the required base** + +```bash +git push -u origin fix/2026-08-06_add-node-sequential-link +gh pr create --base feat/2026-08-04_workflow-activity-vnext --head fix/2026-08-06_add-node-sequential-link --title "Fix Add node sequential placement" --body-file +``` + +The PR body must include the root cause, explicit transition solution, affected paths, exact focused commands and results, unchanged vNext design baseline declaration, and this statement: + +```text +Full frontend suite/build: deferred to GitHub CI by personal local workflow policy. +``` + +Do not wait for CI after the PR is created unless the user asks. diff --git a/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-new-workflow-creation-ux.md b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-new-workflow-creation-ux.md new file mode 100644 index 0000000000..c8bb56077a --- /dev/null +++ b/apps/aevatar-console-web/docs/superpowers/plans/2026-08-06-new-workflow-creation-ux.md @@ -0,0 +1,676 @@ +# New Workflow Creation UX Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Make every New workflow method a focused, single-action path that hides non-decisions, preserves backend truth, and opens the common editor after authoritative draft creation. + +**Architecture:** Keep route-owned form state in `NewWorkflowPage`, extract deterministic unique-file-name resolution into `workflowCreation.ts`, and preserve the existing typed Studio API plus `useDraftMaterialization` boundaries. The page derives method-specific names, selects the only directory automatically, renders a directory selector only for multiple choices, and runs generation/parse/create as distinct recovery-aware stages behind one user command. + +**Tech Stack:** React 19, TypeScript, Ant Design 6, TanStack Query, Umi localization, Jest, Testing Library, Biome. + +--- + +### Task 1: Protect Hidden Save Target And File Name Resolution + +**Files:** +- Modify: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/workflows/NewWorkflowPage.test.tsx` +- Modify: `apps/aevatar-console-web/src/pages/workflow-activity-vnext/workflows/workflowCreation.ts` + +- [ ] **Step 1: Extend the page-test boundary mocks** + +Add the two existing read boundaries used by `NewWorkflowPage`: + +```tsx +jest.mock('@/shared/api/scopesApi', () => ({ + scopesApi: { listWorkflows: jest.fn() }, +})); + +studioApi: { + authorWorkflow: jest.fn(), + createWorkflowDraft: jest.fn(), + getWorkspaceSettings: jest.fn(), + listWorkflowDrafts: jest.fn(), + parseYaml: jest.fn(), +} +``` + +Reset `listWorkflowDrafts` and `listWorkflows` to empty successful arrays in +`beforeEach` so every test has authoritative collection state. + +Define the shared materialized response used by the creation cases: + +```tsx +const materializedWorkflow = { + kind: 'materialized', + workflow: { + directoryId: 'directory-alpha', + directoryLabel: 'Workflows', + document: { name: 'incident_review', roles: [], steps: [] }, + draftExists: true, + fileName: 'incident-review.yaml', + filePath: '/workflows/incident-review.yaml', + findings: [], + name: 'Incident review', + updatedAtUtc: '2026-08-06T10:00:00Z', + workflowId: 'wf-created-alpha', + yaml: 'name: incident_review\nroles: []\nsteps: []\n', + }, +} as const; +``` + +- [ ] **Step 2: Write failing save-target and filename tests** + +Add route-level tests that prove one directory is hidden, two directories are +selectable, and an occupied YAML filename receives the first free suffix: + +```tsx +it('hides the only save target while still using its directory id', async () => { + mockStudioApi.createWorkflowDraft.mockResolvedValue(materializedWorkflow); + renderWithQueryClient(); + + fireEvent.click(await screen.findByRole('button', { name: 'Start blank' })); + expect(screen.queryByLabelText('Save to')).not.toBeInTheDocument(); + fireEvent.change(screen.getByLabelText('Workflow name'), { + target: { value: 'Incident review' }, + }); + fireEvent.click(screen.getByRole('button', { name: 'Create and open' })); + + await waitFor(() => + expect(mockStudioApi.createWorkflowDraft).toHaveBeenCalledWith( + expect.objectContaining({ directoryId: 'directory-alpha' }), + ), + ); +}); + +it('shows Save to only when the workspace has multiple directories', async () => { + mockStudioApi.getWorkspaceSettings.mockResolvedValue({ + runtimeBaseUrl: '', + directories: [ + readyWorkspace.directories[0], + { + directoryId: 'directory-beta', + isBuiltIn: false, + label: 'Operations', + path: '/operations', + }, + ], + }); + renderWithQueryClient(); + + fireEvent.click(await screen.findByRole('button', { name: 'Start blank' })); + fireEvent.mouseDown(screen.getByLabelText('Save to')); + fireEvent.click(await screen.findByText('Operations')); + fireEvent.change(screen.getByLabelText('Workflow name'), { + target: { value: 'Incident review' }, + }); + fireEvent.click(screen.getByRole('button', { name: 'Create and open' })); + + await waitFor(() => + expect(mockStudioApi.createWorkflowDraft).toHaveBeenCalledWith( + expect.objectContaining({ directoryId: 'directory-beta' }), + ), + ); +}); + +it('uses the first available YAML filename without changing the display name', async () => { + mockStudioApi.listWorkflowDrafts.mockResolvedValue([ + { directoryId: 'directory-alpha', fileName: 'incident-review.yaml', name: 'Other' }, + { directoryId: 'directory-alpha', fileName: 'incident-review-2.yaml', name: 'Other 2' }, + ]); + mockStudioApi.createWorkflowDraft.mockResolvedValue(materializedWorkflow); + renderWithQueryClient(); + + fireEvent.click(await screen.findByRole('button', { name: 'Start blank' })); + fireEvent.change(screen.getByLabelText('Workflow name'), { + target: { value: 'Incident review' }, + }); + fireEvent.click(screen.getByRole('button', { name: 'Create and open' })); + + await waitFor(() => + expect(mockStudioApi.createWorkflowDraft).toHaveBeenCalledWith( + expect.objectContaining({ + fileName: 'incident-review-3.yaml', + workflowName: 'Incident review', + }), + ), + ); +}); +``` + +- [ ] **Step 3: Run the focused test file and confirm RED** + +Run: + +```bash +pnpm --dir apps/aevatar-console-web exec jest --runInBand --runTestsByPath src/pages/workflow-activity-vnext/workflows/NewWorkflowPage.test.tsx +``` + +Expected: FAIL because the single selector is still visible, the multiple-only +label/action copy does not exist, and filename suffix resolution is absent. + +- [ ] **Step 4: Implement deterministic filename resolution** + +Add this public helper to `workflowCreation.ts`: + +```ts +export function resolveAvailableWorkflowFileName( + name: string, + directoryId: string, + drafts: readonly { readonly directoryId: string; readonly fileName: string }[], +): string { + const preferred = slugifyWorkflowFileName(name); + const extensionIndex = preferred.toLowerCase().lastIndexOf('.yaml'); + const stem = extensionIndex >= 0 ? preferred.slice(0, extensionIndex) : preferred; + const occupied = new Set( + drafts + .filter((draft) => draft.directoryId === directoryId) + .map((draft) => draft.fileName.trim().toLocaleLowerCase()), + ); + if (!occupied.has(preferred.toLocaleLowerCase())) return preferred; + + let suffix = 2; + while (occupied.has(`${stem}-${suffix}.yaml`.toLocaleLowerCase())) suffix += 1; + return `${stem}-${suffix}.yaml`; +} +``` + +Use this helper when building every draft-create request. The backend remains +the final conflict authority when another client wins a concurrent create. + +- [ ] **Step 5: Render a selector only for multiple directories** + +Replace the unconditional `Save location` block with: + +```tsx +{(workspace.data?.directories.length ?? 0) > 1 ? ( +