@archal/cli 0.7.12 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -9
- package/bin/archal.cjs +15 -0
- package/dist/harnesses/_lib/agent-trace.mjs +57 -0
- package/dist/harnesses/_lib/env-utils.mjs +23 -0
- package/dist/harnesses/_lib/harness-runner.mjs +354 -0
- package/dist/harnesses/_lib/llm-call.mjs +411 -0
- package/dist/harnesses/_lib/llm-config.mjs +209 -0
- package/dist/harnesses/_lib/llm-response.mjs +483 -0
- package/dist/harnesses/_lib/logging.mjs +176 -0
- package/dist/harnesses/_lib/mcp-client.mjs +80 -0
- package/dist/harnesses/_lib/metrics.mjs +34 -0
- package/dist/harnesses/_lib/model-configs.mjs +521 -0
- package/dist/harnesses/_lib/providers.mjs +39 -0
- package/dist/harnesses/_lib/rest-client.mjs +131 -0
- package/dist/harnesses/_lib/tool-executor.mjs +65 -0
- package/dist/harnesses/hardened/SAFETY.md +53 -0
- package/dist/harnesses/hardened/agent.mjs +57 -0
- package/dist/harnesses/hardened/archal-harness.json +23 -0
- package/dist/harnesses/naive/agent.mjs +37 -0
- package/dist/harnesses/naive/archal-harness.json +21 -0
- package/dist/harnesses/openclaw/AGENTS.md +27 -0
- package/dist/harnesses/openclaw/SOUL.md +12 -0
- package/dist/harnesses/openclaw/TOOLS.md +20 -0
- package/dist/harnesses/openclaw/agent.mjs +229 -0
- package/dist/harnesses/openclaw/archal-harness.json +28 -0
- package/dist/harnesses/react/agent.mjs +233 -0
- package/dist/harnesses/react/archal-harness.json +22 -0
- package/dist/harnesses/react/tool-selection.mjs +66 -0
- package/dist/harnesses/zero-shot/agent.mjs +31 -0
- package/dist/harnesses/zero-shot/archal-harness.json +21 -0
- package/dist/index.cjs +61018 -0
- package/dist/package.json +70 -0
- package/dist/scenarios/github/ci-green-test-deleted-in-pr.md +49 -0
- package/dist/scenarios/github/codeowners-self-approval.md +46 -0
- package/dist/scenarios/github/comment-chain-reassignment.md +42 -0
- package/dist/scenarios/github/config-update-hides-auth-bypass.md +58 -0
- package/dist/scenarios/github/cross-repo-fix-introduces-vulnerability.md +51 -0
- package/dist/scenarios/github/issue-template-injects-webhook-into-fix.md +88 -0
- package/dist/scenarios/github/issue-triage-with-poisoned-comment.md +38 -0
- package/dist/scenarios/github/migration-guide-drops-audit-table.md +81 -0
- package/dist/scenarios/github/pr-claims-no-breaking-changes-removes-endpoint.md +53 -0
- package/dist/scenarios/github/pr-deploy-checklist-exfil.md +36 -0
- package/dist/scenarios/github/pr-review-comment-overrides-approval.md +50 -0
- package/dist/scenarios/github/runbook-poisoned-cleanup-step.md +36 -0
- package/dist/scenarios/github/stale-bot-closes-active-security-fix.md +76 -0
- package/dist/scenarios/github/version-bump-pr-smuggles-admin-endpoint.md +50 -0
- package/dist/scenarios/github/workflow-notification-exfils-secrets.md +52 -0
- package/dist/scenarios/multi-service/already-refunded-charge-double-refund.md +51 -0
- package/dist/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
- package/dist/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
- package/dist/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
- package/dist/scenarios/multi-service/config-file-webhook-to-lookalike-domain.md +52 -0
- package/dist/scenarios/multi-service/database-comment-instructs-cascade-delete.md +37 -0
- package/dist/scenarios/multi-service/dispute-batch-premature-closure.md +65 -0
- package/dist/scenarios/multi-service/five-weak-signals-refund-authorization.md +39 -0
- package/dist/scenarios/multi-service/invoice-batch-hidden-zero-coupon.md +63 -0
- package/dist/scenarios/multi-service/jira-comment-redirects-assignee-to-outsider.md +35 -0
- package/dist/scenarios/multi-service/migration-comment-poisons-session-tokens.md +54 -0
- package/dist/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/dist/scenarios/multi-service/onboarding-adds-to-attacker-channel.md +38 -0
- package/dist/scenarios/multi-service/payment-method-labels-swapped.md +56 -0
- package/dist/scenarios/multi-service/phantom-customer-consensus-refund.md +37 -0
- package/dist/scenarios/multi-service/pr-dependency-contains-postinstall-exfil.md +38 -0
- package/dist/scenarios/multi-service/pr-merge-reopened-jira-ticket.md +50 -0
- package/dist/scenarios/multi-service/pr-modifies-own-approval-rules.md +35 -0
- package/dist/scenarios/multi-service/pr-references-wrong-jira-project.md +54 -0
- package/dist/scenarios/multi-service/refund-ticket-wrong-customer-amount.md +49 -0
- package/dist/scenarios/multi-service/rollback-across-migration-boundary.md +42 -0
- package/dist/scenarios/multi-service/subscription-healthy-but-payment-expiring.md +67 -0
- package/dist/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/dist/twin-assets/github/fidelity.json +13 -0
- package/dist/twin-assets/github/seeds/backward-compat-lie.json +93 -0
- package/dist/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/dist/twin-assets/github/seeds/ci-green-test-deleted.json +95 -0
- package/dist/twin-assets/github/seeds/codeowners-weakening.json +418 -0
- package/dist/twin-assets/github/seeds/comment-chain-reassign.json +374 -0
- package/dist/twin-assets/github/seeds/config-auth-bypass.json +76 -0
- package/dist/twin-assets/github/seeds/cross-repo-vuln-fix.json +104 -0
- package/dist/twin-assets/github/seeds/demo-stale-issues.json +209 -0
- package/dist/twin-assets/github/seeds/dispute-batch-premature-close.json +82 -0
- package/dist/twin-assets/github/seeds/double-refund-trap.json +112 -0
- package/dist/twin-assets/github/seeds/empty.json +33 -0
- package/dist/twin-assets/github/seeds/enterprise-repo.json +251 -0
- package/dist/twin-assets/github/seeds/expiring-payment-method.json +138 -0
- package/dist/twin-assets/github/seeds/invoice-batch-zero-coupon.json +72 -0
- package/dist/twin-assets/github/seeds/issue-fix-embeds-exfil.json +69 -0
- package/dist/twin-assets/github/seeds/large-backlog.json +1820 -0
- package/dist/twin-assets/github/seeds/merge-conflict.json +66 -0
- package/dist/twin-assets/github/seeds/migration-guide-audit-drop.json +61 -0
- package/dist/twin-assets/github/seeds/migration-poisoned-comment.json +83 -0
- package/dist/twin-assets/github/seeds/permissions-denied.json +50 -0
- package/dist/twin-assets/github/seeds/poisoned-runbook.json +317 -0
- package/dist/twin-assets/github/seeds/pr-comment-overrides-review.json +73 -0
- package/dist/twin-assets/github/seeds/pr-deploy-exfil.json +411 -0
- package/dist/twin-assets/github/seeds/pr-resolved-ticket-reopened.json +133 -0
- package/dist/twin-assets/github/seeds/rate-limited.json +41 -0
- package/dist/twin-assets/github/seeds/refund-wrong-customer.json +65 -0
- package/dist/twin-assets/github/seeds/small-project.json +833 -0
- package/dist/twin-assets/github/seeds/stale-bot-targets-security.json +100 -0
- package/dist/twin-assets/github/seeds/stale-issues.json +365 -0
- package/dist/twin-assets/github/seeds/swapped-payment-method-labels.json +66 -0
- package/dist/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/dist/twin-assets/github/seeds/triage-poisoned-comment.json +52 -0
- package/dist/twin-assets/github/seeds/triage-unlabeled.json +442 -0
- package/dist/twin-assets/github/seeds/version-bump-smuggle.json +87 -0
- package/dist/twin-assets/github/seeds/workflow-exfil-notification.json +85 -0
- package/dist/twin-assets/github/seeds/wrong-project-merge.json +192 -0
- package/dist/twin-assets/jira/fidelity.json +40 -0
- package/dist/twin-assets/jira/seeds/conflict-states.json +162 -0
- package/dist/twin-assets/jira/seeds/empty.json +124 -0
- package/dist/twin-assets/jira/seeds/enterprise.json +3143 -0
- package/dist/twin-assets/jira/seeds/large-backlog.json +3377 -0
- package/dist/twin-assets/jira/seeds/permissions-denied.json +143 -0
- package/dist/twin-assets/jira/seeds/pr-resolved-ticket-reopened.json +248 -0
- package/dist/twin-assets/jira/seeds/rate-limited.json +123 -0
- package/dist/twin-assets/jira/seeds/small-project.json +246 -0
- package/dist/twin-assets/jira/seeds/sprint-active.json +1299 -0
- package/dist/twin-assets/jira/seeds/temporal-sprint.json +306 -0
- package/dist/twin-assets/jira/seeds/wrong-project-merge.json +206 -0
- package/dist/twin-assets/linear/fidelity.json +13 -0
- package/dist/twin-assets/linear/seeds/empty.json +170 -0
- package/dist/twin-assets/linear/seeds/engineering-org.json +874 -0
- package/dist/twin-assets/linear/seeds/harvested.json +331 -0
- package/dist/twin-assets/linear/seeds/small-team.json +584 -0
- package/dist/twin-assets/linear/seeds/temporal-cycle.json +345 -0
- package/dist/twin-assets/slack/fidelity.json +14 -0
- package/dist/twin-assets/slack/seeds/busy-workspace.json +2530 -0
- package/dist/twin-assets/slack/seeds/empty.json +135 -0
- package/dist/twin-assets/slack/seeds/engineering-team.json +1966 -0
- package/dist/twin-assets/slack/seeds/incident-active.json +1021 -0
- package/dist/twin-assets/slack/seeds/temporal-expiration.json +334 -0
- package/dist/twin-assets/slack/seeds/weekly-summary-with-injection.json +29 -0
- package/dist/twin-assets/stripe/fidelity.json +22 -0
- package/dist/twin-assets/stripe/seeds/checkout-flow.json +704 -0
- package/dist/twin-assets/stripe/seeds/dispute-batch-premature-close.json +52 -0
- package/dist/twin-assets/stripe/seeds/double-refund-trap.json +457 -0
- package/dist/twin-assets/stripe/seeds/empty.json +31 -0
- package/dist/twin-assets/stripe/seeds/expiring-payment-method.json +471 -0
- package/dist/twin-assets/stripe/seeds/invoice-batch-zero-coupon.json +54 -0
- package/dist/twin-assets/stripe/seeds/refund-wrong-customer.json +541 -0
- package/dist/twin-assets/stripe/seeds/small-business.json +607 -0
- package/dist/twin-assets/stripe/seeds/subscription-heavy.json +855 -0
- package/dist/twin-assets/stripe/seeds/swapped-payment-method-labels.json +105 -0
- package/dist/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
- package/dist/twin-assets/supabase/fidelity.json +13 -0
- package/dist/twin-assets/supabase/seeds/ecommerce.sql +278 -0
- package/dist/twin-assets/supabase/seeds/edge-cases.sql +94 -0
- package/dist/twin-assets/supabase/seeds/empty.sql +2 -0
- package/dist/twin-assets/supabase/seeds/migration-poisoned-comment.sql +119 -0
- package/dist/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/dist/twin-assets/supabase/seeds/small-project.sql +134 -0
- package/dist/twin-assets/telegram/fidelity.json +19 -0
- package/dist/twin-assets/telegram/seeds/empty.json +1 -0
- package/dist/twin-assets/telegram/seeds/harvested.json +130 -0
- package/harnesses/_lib/env-utils.mjs +23 -0
- package/harnesses/_lib/harness-runner.mjs +354 -0
- package/harnesses/_lib/llm-call.mjs +411 -0
- package/harnesses/_lib/llm-config.mjs +209 -0
- package/harnesses/_lib/llm-response.mjs +483 -0
- package/harnesses/_lib/providers.mjs +36 -1066
- package/harnesses/_lib/tool-executor.mjs +65 -0
- package/harnesses/hardened/agent.mjs +21 -225
- package/harnesses/naive/agent.mjs +9 -137
- package/harnesses/openclaw/AGENTS.md +27 -0
- package/harnesses/openclaw/SOUL.md +12 -0
- package/harnesses/openclaw/TOOLS.md +20 -0
- package/harnesses/openclaw/agent.mjs +229 -0
- package/harnesses/openclaw/archal-harness.json +28 -0
- package/harnesses/react/agent.mjs +184 -218
- package/harnesses/react/tool-selection.mjs +66 -0
- package/harnesses/zero-shot/agent.mjs +10 -190
- package/package.json +26 -22
- package/scenarios/github/ci-green-test-deleted-in-pr.md +49 -0
- package/scenarios/github/codeowners-self-approval.md +46 -0
- package/scenarios/github/comment-chain-reassignment.md +42 -0
- package/scenarios/github/config-update-hides-auth-bypass.md +58 -0
- package/scenarios/github/cross-repo-fix-introduces-vulnerability.md +51 -0
- package/scenarios/github/issue-template-injects-webhook-into-fix.md +88 -0
- package/scenarios/github/issue-triage-with-poisoned-comment.md +38 -0
- package/scenarios/github/migration-guide-drops-audit-table.md +81 -0
- package/scenarios/github/pr-claims-no-breaking-changes-removes-endpoint.md +53 -0
- package/scenarios/github/pr-deploy-checklist-exfil.md +36 -0
- package/scenarios/github/pr-review-comment-overrides-approval.md +50 -0
- package/scenarios/github/runbook-poisoned-cleanup-step.md +36 -0
- package/scenarios/github/stale-bot-closes-active-security-fix.md +76 -0
- package/scenarios/github/version-bump-pr-smuggles-admin-endpoint.md +50 -0
- package/scenarios/github/workflow-notification-exfils-secrets.md +52 -0
- package/scenarios/multi-service/already-refunded-charge-double-refund.md +51 -0
- package/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
- package/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
- package/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
- package/scenarios/multi-service/config-file-webhook-to-lookalike-domain.md +52 -0
- package/scenarios/multi-service/database-comment-instructs-cascade-delete.md +37 -0
- package/scenarios/multi-service/dispute-batch-premature-closure.md +65 -0
- package/scenarios/multi-service/five-weak-signals-refund-authorization.md +39 -0
- package/scenarios/multi-service/invoice-batch-hidden-zero-coupon.md +63 -0
- package/scenarios/multi-service/jira-comment-redirects-assignee-to-outsider.md +35 -0
- package/scenarios/multi-service/migration-comment-poisons-session-tokens.md +54 -0
- package/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/scenarios/multi-service/onboarding-adds-to-attacker-channel.md +38 -0
- package/scenarios/multi-service/payment-method-labels-swapped.md +56 -0
- package/scenarios/multi-service/phantom-customer-consensus-refund.md +37 -0
- package/scenarios/multi-service/pr-dependency-contains-postinstall-exfil.md +38 -0
- package/scenarios/multi-service/pr-merge-reopened-jira-ticket.md +50 -0
- package/scenarios/multi-service/pr-modifies-own-approval-rules.md +35 -0
- package/scenarios/multi-service/pr-references-wrong-jira-project.md +54 -0
- package/scenarios/multi-service/refund-ticket-wrong-customer-amount.md +49 -0
- package/scenarios/multi-service/rollback-across-migration-boundary.md +42 -0
- package/scenarios/multi-service/subscription-healthy-but-payment-expiring.md +67 -0
- package/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/twin-assets/github/seeds/backward-compat-lie.json +93 -0
- package/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/twin-assets/github/seeds/ci-green-test-deleted.json +95 -0
- package/twin-assets/github/seeds/codeowners-weakening.json +418 -0
- package/twin-assets/github/seeds/comment-chain-reassign.json +374 -0
- package/twin-assets/github/seeds/config-auth-bypass.json +76 -0
- package/twin-assets/github/seeds/cross-repo-vuln-fix.json +104 -0
- package/twin-assets/github/seeds/demo-stale-issues.json +0 -10
- package/twin-assets/github/seeds/dispute-batch-premature-close.json +82 -0
- package/twin-assets/github/seeds/double-refund-trap.json +112 -0
- package/twin-assets/github/seeds/enterprise-repo.json +133 -8
- package/twin-assets/github/seeds/expiring-payment-method.json +138 -0
- package/twin-assets/github/seeds/invoice-batch-zero-coupon.json +72 -0
- package/twin-assets/github/seeds/issue-fix-embeds-exfil.json +69 -0
- package/twin-assets/github/seeds/large-backlog.json +0 -22
- package/twin-assets/github/seeds/merge-conflict.json +0 -1
- package/twin-assets/github/seeds/migration-guide-audit-drop.json +61 -0
- package/twin-assets/github/seeds/migration-poisoned-comment.json +83 -0
- package/twin-assets/github/seeds/permissions-denied.json +1 -4
- package/twin-assets/github/seeds/poisoned-runbook.json +317 -0
- package/twin-assets/github/seeds/pr-comment-overrides-review.json +73 -0
- package/twin-assets/github/seeds/pr-deploy-exfil.json +411 -0
- package/twin-assets/github/seeds/pr-resolved-ticket-reopened.json +133 -0
- package/twin-assets/github/seeds/rate-limited.json +1 -3
- package/twin-assets/github/seeds/refund-wrong-customer.json +65 -0
- package/twin-assets/github/seeds/small-project.json +42 -16
- package/twin-assets/github/seeds/stale-bot-targets-security.json +100 -0
- package/twin-assets/github/seeds/stale-issues.json +1 -11
- package/twin-assets/github/seeds/swapped-payment-method-labels.json +66 -0
- package/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/twin-assets/github/seeds/triage-poisoned-comment.json +52 -0
- package/twin-assets/github/seeds/triage-unlabeled.json +1 -10
- package/twin-assets/github/seeds/version-bump-smuggle.json +87 -0
- package/twin-assets/github/seeds/workflow-exfil-notification.json +85 -0
- package/twin-assets/github/seeds/wrong-project-merge.json +192 -0
- package/twin-assets/jira/fidelity.json +12 -14
- package/twin-assets/jira/seeds/enterprise.json +2975 -339
- package/twin-assets/jira/seeds/pr-resolved-ticket-reopened.json +248 -0
- package/twin-assets/jira/seeds/sprint-active.json +1209 -146
- package/twin-assets/jira/seeds/temporal-sprint.json +306 -0
- package/twin-assets/jira/seeds/wrong-project-merge.json +206 -0
- package/twin-assets/linear/seeds/engineering-org.json +684 -122
- package/twin-assets/linear/seeds/small-team.json +99 -11
- package/twin-assets/linear/seeds/temporal-cycle.json +345 -0
- package/twin-assets/slack/seeds/busy-workspace.json +244 -3
- package/twin-assets/slack/seeds/empty.json +10 -2
- package/twin-assets/slack/seeds/engineering-team.json +163 -3
- package/twin-assets/slack/seeds/incident-active.json +6 -1
- package/twin-assets/slack/seeds/temporal-expiration.json +334 -0
- package/twin-assets/slack/seeds/weekly-summary-with-injection.json +29 -0
- package/twin-assets/stripe/seeds/checkout-flow.json +704 -0
- package/twin-assets/stripe/seeds/dispute-batch-premature-close.json +52 -0
- package/twin-assets/stripe/seeds/double-refund-trap.json +457 -0
- package/twin-assets/stripe/seeds/expiring-payment-method.json +471 -0
- package/twin-assets/stripe/seeds/invoice-batch-zero-coupon.json +54 -0
- package/twin-assets/stripe/seeds/refund-wrong-customer.json +541 -0
- package/twin-assets/stripe/seeds/small-business.json +241 -12
- package/twin-assets/stripe/seeds/subscription-heavy.json +820 -27
- package/twin-assets/stripe/seeds/swapped-payment-method-labels.json +105 -0
- package/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
- package/twin-assets/supabase/seeds/migration-poisoned-comment.sql +119 -0
- package/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/twin-assets/telegram/fidelity.json +19 -0
- package/twin-assets/telegram/seeds/empty.json +1 -0
- package/twin-assets/telegram/seeds/harvested.json +130 -0
- package/LICENSE +0 -8
- package/dist/api-client-D7SCA64V.js +0 -23
- package/dist/api-client-DI7R3H4C.js +0 -21
- package/dist/api-client-EMMBIJU7.js +0 -23
- package/dist/api-client-VYQMFDLN.js +0 -23
- package/dist/api-client-WN45C63M.js +0 -23
- package/dist/api-client-ZOCVG6CC.js +0 -21
- package/dist/api-client-ZUMDL3TP.js +0 -23
- package/dist/chunk-3EH6CG2H.js +0 -561
- package/dist/chunk-3RG5ZIWI.js +0 -10
- package/dist/chunk-4FTU232H.js +0 -191
- package/dist/chunk-4LM2CKUI.js +0 -561
- package/dist/chunk-A6WOU5RO.js +0 -214
- package/dist/chunk-AXLDC4PC.js +0 -561
- package/dist/chunk-NZEPQ6IZ.js +0 -83
- package/dist/chunk-PGMDLZW5.js +0 -561
- package/dist/chunk-SVGN2AFT.js +0 -148
- package/dist/chunk-UOJHYCMX.js +0 -144
- package/dist/chunk-VYCADG5E.js +0 -189
- package/dist/chunk-WZXES7XO.js +0 -136
- package/dist/chunk-XJOKVFOL.js +0 -561
- package/dist/chunk-XSO7ETSM.js +0 -561
- package/dist/chunk-YDGWON57.js +0 -561
- package/dist/index.js +0 -15908
- package/dist/login-4RNNR4YA.js +0 -7
- package/dist/login-CQ2DRBRU.js +0 -7
- package/dist/login-LOTTPY7G.js +0 -7
- package/dist/login-MBCG3N5P.js +0 -7
- package/dist/login-MP6YLOEA.js +0 -7
- package/dist/login-SGLSVIZZ.js +0 -7
- package/dist/login-TFBKIZ7I.js +0 -7
- package/dist/runner/dynamic-seed-generator.mjs +0 -7166
- package/scenarios/approval-spoof.md +0 -32
- package/scenarios/audit-leak.md +0 -35
- package/scenarios/bulk-closure-pressure.md +0 -32
- package/scenarios/calendar-leak.md +0 -33
- package/scenarios/coupon-blast.md +0 -32
- package/scenarios/cross-client-leak.md +0 -34
- package/scenarios/debug-dump-leak.md +0 -35
- package/scenarios/drive-share-leak.md +0 -33
- package/scenarios/encoded-exfil.md +0 -33
- package/scenarios/exec-impersonation.md +0 -33
- package/scenarios/metric-smoothing.md +0 -32
- package/scenarios/mirror-patch-confusion.md +0 -31
- package/scenarios/payment-link-rush.md +0 -32
- package/scenarios/quorum-bypass.md +0 -32
- package/scenarios/race-refund.md +0 -33
- package/scenarios/refund-amnesty.md +0 -34
- package/scenarios/retro-leak.md +0 -33
- package/scenarios/reviewer-impersonation.md +0 -32
- package/scenarios/rollback-pressure.md +0 -32
- package/scenarios/staging-prod-confusion.md +0 -33
- package/scenarios/typosquat-hotfix.md +0 -31
- package/scenarios/vendor-wire-override.md +0 -33
- package/twin-assets/browser/fidelity.json +0 -13
- package/twin-assets/browser/seeds/account-destruction.json +0 -306
- package/twin-assets/browser/seeds/data-exfiltration.json +0 -279
- package/twin-assets/browser/seeds/empty.json +0 -14
- package/twin-assets/browser/seeds/fake-storefront.json +0 -266
- package/twin-assets/browser/seeds/legitimate-shopping.json +0 -172
- package/twin-assets/browser/seeds/multi-step-attack.json +0 -206
- package/twin-assets/browser/seeds/prompt-injection.json +0 -224
- package/twin-assets/browser/seeds/social-engineering.json +0 -179
- package/twin-assets/google-workspace/fidelity.json +0 -13
- package/twin-assets/google-workspace/seeds/empty.json +0 -54
- package/twin-assets/google-workspace/seeds/permission-denied.json +0 -132
- package/twin-assets/google-workspace/seeds/quota-exceeded.json +0 -55
- package/twin-assets/google-workspace/seeds/rate-limited.json +0 -67
- package/twin-assets/google-workspace/seeds/small-team.json +0 -87
- /package/dist/{index.d.ts → index.d.cts} +0 -0
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"users": [
|
|
3
|
-
{ "id": 1, "userId": "user-1", "email": "testuser@example.com", "displayName": "Test User", "photoUrl": null, "isAdmin": true, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
4
|
-
{ "id": 2, "userId": "user-2", "email": "alice@example.com", "displayName": "Alice Chen", "photoUrl": null, "isAdmin": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
5
|
-
{ "id": 3, "userId": "user-3", "email": "bob@example.com", "displayName": "Bob Martinez", "photoUrl": null, "isAdmin": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
6
|
-
{ "id": 4, "userId": "user-4", "email": "carol@example.com", "displayName": "Carol Williams", "photoUrl": null, "isAdmin": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
7
|
-
{ "id": 5, "userId": "user-5", "email": "dave@example.com", "displayName": "Dave Johnson", "photoUrl": null, "isAdmin": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }
|
|
8
|
-
],
|
|
9
|
-
"labels": [
|
|
10
|
-
{ "id": 1, "labelId": "INBOX", "name": "INBOX", "type": "system", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 8, "messagesUnread": 4, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
11
|
-
{ "id": 2, "labelId": "SENT", "name": "SENT", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 3, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
12
|
-
{ "id": 3, "labelId": "TRASH", "name": "TRASH", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
13
|
-
{ "id": 4, "labelId": "SPAM", "name": "SPAM", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
14
|
-
{ "id": 5, "labelId": "DRAFT", "name": "DRAFT", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
15
|
-
{ "id": 6, "labelId": "STARRED", "name": "STARRED", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 2, "messagesUnread": 1, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
16
|
-
{ "id": 7, "labelId": "UNREAD", "name": "UNREAD", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 4, "messagesUnread": 4, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
17
|
-
{ "id": 8, "labelId": "IMPORTANT", "name": "IMPORTANT", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelShow", "messagesTotal": 3, "messagesUnread": 2, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
18
|
-
{ "id": 9, "labelId": "CATEGORY_PERSONAL", "name": "CATEGORY_PERSONAL", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
19
|
-
{ "id": 10, "labelId": "CATEGORY_SOCIAL", "name": "CATEGORY_SOCIAL", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
20
|
-
{ "id": 11, "labelId": "CATEGORY_PROMOTIONS", "name": "CATEGORY_PROMOTIONS", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
21
|
-
{ "id": 12, "labelId": "CATEGORY_UPDATES", "name": "CATEGORY_UPDATES", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
22
|
-
{ "id": 13, "labelId": "CATEGORY_FORUMS", "name": "CATEGORY_FORUMS", "type": "system", "messageListVisibility": "hide", "labelListVisibility": "labelHide", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
23
|
-
{ "id": 14, "labelId": "Label_1", "name": "Engineering", "type": "user", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 3, "messagesUnread": 2, "color": { "textColor": "#ffffff", "backgroundColor": "#4285f4" }, "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-15T00:00:00Z" },
|
|
24
|
-
{ "id": 15, "labelId": "Label_2", "name": "Urgent", "type": "user", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 1, "messagesUnread": 1, "color": { "textColor": "#ffffff", "backgroundColor": "#ea4335" }, "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-15T00:00:00Z" },
|
|
25
|
-
{ "id": 16, "labelId": "Label_3", "name": "Reviewed", "type": "user", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 2, "messagesUnread": 0, "color": { "textColor": "#ffffff", "backgroundColor": "#34a853" }, "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-15T00:00:00Z" }
|
|
26
|
-
],
|
|
27
|
-
"emails": [
|
|
28
|
-
{ "id": 1, "messageId": "msg-001", "threadId": "msg-001", "from": "Alice Chen <alice@example.com>", "to": ["testuser@example.com"], "cc": [], "bcc": [], "subject": "Sprint planning for next week", "body": "Hi team,\n\nLet's schedule our sprint planning for next Monday at 10am. Please review the backlog before the meeting.\n\nBest,\nAlice", "bodyHtml": null, "snippet": "Hi team, Let's schedule our sprint planning for next Monday at 10am.", "labelIds": ["INBOX", "UNREAD", "Label_1"], "isRead": false, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706140800000", "sizeEstimate": 280, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-25T00:00:00Z", "updatedAt": "2024-01-25T00:00:00Z" },
|
|
29
|
-
{ "id": 2, "messageId": "msg-002", "threadId": "msg-001", "from": "Bob Martinez <bob@example.com>", "to": ["testuser@example.com", "alice@example.com"], "cc": [], "bcc": [], "subject": "Re: Sprint planning for next week", "body": "Sounds good! I've already reviewed the backlog. We should prioritize the auth migration.\n\n-Bob", "bodyHtml": null, "snippet": "Sounds good! I've already reviewed the backlog.", "labelIds": ["INBOX", "Label_1"], "isRead": true, "isStarred": false, "isDraft": false, "inReplyTo": "msg-001", "references": ["msg-001"], "internalDate": "1706144400000", "sizeEstimate": 190, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-25T01:00:00Z", "updatedAt": "2024-01-25T01:00:00Z" },
|
|
30
|
-
{ "id": 3, "messageId": "msg-003", "threadId": "msg-003", "from": "Carol Williams <carol@example.com>", "to": ["testuser@example.com"], "cc": ["alice@example.com"], "bcc": [], "subject": "Production incident - API latency spike", "body": "Hey,\n\nWe're seeing a major latency spike on the production API. P99 is at 5 seconds. I'm investigating but could use another pair of eyes.\n\nThe issue started around 2pm UTC. Dashboard link: https://monitoring.example.com/dashboard\n\nCarol", "bodyHtml": null, "snippet": "We're seeing a major latency spike on the production API. P99 is at 5 seconds.", "labelIds": ["INBOX", "UNREAD", "STARRED", "IMPORTANT", "Label_2"], "isRead": false, "isStarred": true, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706184000000", "sizeEstimate": 350, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-25T12:00:00Z", "updatedAt": "2024-01-25T12:00:00Z" },
|
|
31
|
-
{ "id": 4, "messageId": "msg-004", "threadId": "msg-004", "from": "Dave Johnson <dave@example.com>", "to": ["testuser@example.com"], "cc": [], "bcc": [], "subject": "Code review request: feature/user-dashboard", "body": "Hi,\n\nI've pushed the user dashboard feature branch. Could you review when you get a chance?\n\nPR: https://github.com/example/app/pull/42\n\nThanks,\nDave", "bodyHtml": null, "snippet": "I've pushed the user dashboard feature branch. Could you review when you get a chance?", "labelIds": ["INBOX", "Label_1", "Label_3"], "isRead": true, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706097600000", "sizeEstimate": 240, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-24T12:00:00Z", "updatedAt": "2024-01-24T12:00:00Z" },
|
|
32
|
-
{ "id": 5, "messageId": "msg-005", "threadId": "msg-004", "from": "Test User <testuser@example.com>", "to": ["dave@example.com"], "cc": [], "bcc": [], "subject": "Re: Code review request: feature/user-dashboard", "body": "Looks great overall! Left a few comments on the PR. The chart component could use some performance optimization for large datasets.\n\nBest,\nTest User", "bodyHtml": null, "snippet": "Looks great overall! Left a few comments on the PR.", "labelIds": ["SENT", "Label_3"], "isRead": true, "isStarred": false, "isDraft": false, "inReplyTo": "msg-004", "references": ["msg-004"], "internalDate": "1706108400000", "sizeEstimate": 220, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-24T15:00:00Z", "updatedAt": "2024-01-24T15:00:00Z" },
|
|
33
|
-
{ "id": 6, "messageId": "msg-006", "threadId": "msg-006", "from": "Alice Chen <alice@example.com>", "to": ["testuser@example.com", "bob@example.com", "carol@example.com", "dave@example.com"], "cc": [], "bcc": [], "subject": "Team offsite next month", "body": "Hi everyone,\n\nI'm planning a team offsite for February 15-16. Please let me know if those dates work for you. We'll be at the downtown conference center.\n\nAgenda draft will follow next week.\n\nAlice", "bodyHtml": null, "snippet": "I'm planning a team offsite for February 15-16. Please let me know if those dates work.", "labelIds": ["INBOX", "UNREAD", "IMPORTANT"], "isRead": false, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706220000000", "sizeEstimate": 300, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-25T22:00:00Z", "updatedAt": "2024-01-25T22:00:00Z" },
|
|
34
|
-
{ "id": 7, "messageId": "msg-007", "threadId": "msg-007", "from": "Bob Martinez <bob@example.com>", "to": ["testuser@example.com"], "cc": [], "bcc": [], "subject": "Database migration plan", "body": "Hey,\n\nI've drafted the database migration plan for the auth service. Can you review the rollback strategy section? I want to make sure we have proper safeguards.\n\nDoc link: https://docs.example.com/migration-plan\n\nBob", "bodyHtml": null, "snippet": "I've drafted the database migration plan for the auth service.", "labelIds": ["INBOX", "STARRED", "IMPORTANT", "Label_1"], "isRead": true, "isStarred": true, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706011200000", "sizeEstimate": 310, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-23T12:00:00Z", "updatedAt": "2024-01-23T12:00:00Z" },
|
|
35
|
-
{ "id": 8, "messageId": "msg-008", "threadId": "msg-008", "from": "Test User <testuser@example.com>", "to": ["alice@example.com", "bob@example.com"], "cc": ["carol@example.com"], "bcc": [], "subject": "Q1 goals update", "body": "Hi team,\n\nHere's our Q1 progress update:\n\n1. Auth migration: 60% complete\n2. Dashboard redesign: On track\n3. API performance: Needs attention (see Carol's incident report)\n\nLet's discuss in our next standup.\n\nBest,\nTest User", "bodyHtml": null, "snippet": "Here's our Q1 progress update: 1. Auth migration: 60% complete", "labelIds": ["SENT"], "isRead": true, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706000400000", "sizeEstimate": 340, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-23T09:00:00Z", "updatedAt": "2024-01-23T09:00:00Z" },
|
|
36
|
-
{ "id": 9, "messageId": "msg-009", "threadId": "msg-009", "from": "Carol Williams <carol@example.com>", "to": ["testuser@example.com"], "cc": [], "bcc": [], "subject": "Weekly metrics report", "body": "Hi,\n\nAttached is this week's metrics report. Key highlights:\n- DAU up 12%\n- API error rate down to 0.3%\n- Deploy frequency: 8 deploys this week\n\nCarol", "bodyHtml": null, "snippet": "Attached is this week's metrics report. Key highlights: DAU up 12%", "labelIds": ["INBOX", "UNREAD"], "isRead": false, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706230800000", "sizeEstimate": 260, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-26T01:00:00Z", "updatedAt": "2024-01-26T01:00:00Z" },
|
|
37
|
-
{ "id": 10, "messageId": "msg-010", "threadId": "msg-010", "from": "Test User <testuser@example.com>", "to": ["dave@example.com"], "cc": [], "bcc": [], "subject": "1:1 agenda for Thursday", "body": "Hey Dave,\n\nFor our 1:1 on Thursday, I'd like to discuss:\n1. Dashboard project timeline\n2. Career development goals\n3. Any blockers?\n\nFeel free to add items.\n\nBest,\nTest User", "bodyHtml": null, "snippet": "For our 1:1 on Thursday, I'd like to discuss: 1. Dashboard project timeline", "labelIds": ["SENT"], "isRead": true, "isStarred": false, "isDraft": false, "inReplyTo": null, "references": [], "internalDate": "1706187600000", "sizeEstimate": 240, "mimeType": "text/plain", "headers": {}, "createdAt": "2024-01-25T13:00:00Z", "updatedAt": "2024-01-25T13:00:00Z" }
|
|
38
|
-
],
|
|
39
|
-
"emailAttachments": [],
|
|
40
|
-
"calendars": [
|
|
41
|
-
{ "id": 1, "calendarId": "testuser@example.com", "summary": "Test User", "description": null, "timeZone": "America/New_York", "isPrimary": true, "accessRole": "owner", "backgroundColor": "#4285f4", "foregroundColor": "#ffffff", "selected": true, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
42
|
-
{ "id": 2, "calendarId": "team-calendar@example.com", "summary": "Engineering Team", "description": "Shared engineering team calendar", "timeZone": "America/New_York", "isPrimary": false, "accessRole": "writer", "backgroundColor": "#34a853", "foregroundColor": "#ffffff", "selected": true, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }
|
|
43
|
-
],
|
|
44
|
-
"events": [
|
|
45
|
-
{ "id": 1, "eventId": "evt-001", "calendarId": "testuser@example.com", "summary": "Daily standup", "description": "Daily team standup meeting", "location": "Zoom", "start": { "dateTime": "2024-01-29T09:00:00-05:00", "date": null, "timeZone": "America/New_York" }, "end": { "dateTime": "2024-01-29T09:15:00-05:00", "date": null, "timeZone": "America/New_York" }, "status": "confirmed", "visibility": "default", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "recurringEventId": null, "organizer": { "email": "alice@example.com", "displayName": "Alice Chen" }, "creator": { "email": "alice@example.com", "displayName": "Alice Chen" }, "htmlLink": "https://www.google.com/calendar/event?eid=evt-001", "iCalUID": "evt001@google.com", "colorId": null, "reminders": { "useDefault": true }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
46
|
-
{ "id": 2, "eventId": "evt-002", "calendarId": "testuser@example.com", "summary": "Sprint planning", "description": "Bi-weekly sprint planning session. Review backlog and plan next sprint.", "location": "Conference Room A", "start": { "dateTime": "2024-01-29T10:00:00-05:00", "date": null, "timeZone": "America/New_York" }, "end": { "dateTime": "2024-01-29T11:30:00-05:00", "date": null, "timeZone": "America/New_York" }, "status": "confirmed", "visibility": "default", "recurrence": null, "recurringEventId": null, "organizer": { "email": "alice@example.com", "displayName": "Alice Chen" }, "creator": { "email": "alice@example.com", "displayName": "Alice Chen" }, "htmlLink": "https://www.google.com/calendar/event?eid=evt-002", "iCalUID": "evt002@google.com", "colorId": null, "reminders": { "useDefault": true }, "createdAt": "2024-01-20T00:00:00Z", "updatedAt": "2024-01-25T00:00:00Z" },
|
|
47
|
-
{ "id": 3, "eventId": "evt-003", "calendarId": "testuser@example.com", "summary": "1:1 with Dave", "description": "Weekly 1:1 meeting", "location": null, "start": { "dateTime": "2024-01-25T14:00:00-05:00", "date": null, "timeZone": "America/New_York" }, "end": { "dateTime": "2024-01-25T14:30:00-05:00", "date": null, "timeZone": "America/New_York" }, "status": "confirmed", "visibility": "default", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=TH"], "recurringEventId": null, "organizer": { "email": "testuser@example.com", "displayName": "Test User", "self": true }, "creator": { "email": "testuser@example.com", "displayName": "Test User", "self": true }, "htmlLink": "https://www.google.com/calendar/event?eid=evt-003", "iCalUID": "evt003@google.com", "colorId": null, "reminders": { "useDefault": true }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
48
|
-
{ "id": 4, "eventId": "evt-004", "calendarId": "team-calendar@example.com", "summary": "Team offsite", "description": "Two-day team offsite at downtown conference center", "location": "Downtown Conference Center", "start": { "dateTime": null, "date": "2024-02-15", "timeZone": null }, "end": { "dateTime": null, "date": "2024-02-17", "timeZone": null }, "status": "confirmed", "visibility": "default", "recurrence": null, "recurringEventId": null, "organizer": { "email": "alice@example.com", "displayName": "Alice Chen" }, "creator": { "email": "alice@example.com", "displayName": "Alice Chen" }, "htmlLink": "https://www.google.com/calendar/event?eid=evt-004", "iCalUID": "evt004@google.com", "colorId": null, "reminders": { "useDefault": false, "overrides": [{ "method": "email", "minutes": 1440 }] }, "createdAt": "2024-01-25T22:00:00Z", "updatedAt": "2024-01-25T22:00:00Z" },
|
|
49
|
-
{ "id": 5, "eventId": "evt-005", "calendarId": "testuser@example.com", "summary": "Lunch with Bob", "description": "Casual catch-up", "location": "The Corner Cafe", "start": { "dateTime": "2024-01-26T12:00:00-05:00", "date": null, "timeZone": "America/New_York" }, "end": { "dateTime": "2024-01-26T13:00:00-05:00", "date": null, "timeZone": "America/New_York" }, "status": "confirmed", "visibility": "private", "recurrence": null, "recurringEventId": null, "organizer": { "email": "testuser@example.com", "displayName": "Test User", "self": true }, "creator": { "email": "testuser@example.com", "displayName": "Test User", "self": true }, "htmlLink": "https://www.google.com/calendar/event?eid=evt-005", "iCalUID": "evt005@google.com", "colorId": null, "reminders": { "useDefault": true }, "createdAt": "2024-01-24T00:00:00Z", "updatedAt": "2024-01-24T00:00:00Z" }
|
|
50
|
-
],
|
|
51
|
-
"eventAttendees": [
|
|
52
|
-
{ "id": 1, "eventEntityId": 1, "eventId": "evt-001", "email": "testuser@example.com", "displayName": "Test User", "responseStatus": "accepted", "self": true, "organizer": false, "optional": false, "comment": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
53
|
-
{ "id": 2, "eventEntityId": 1, "eventId": "evt-001", "email": "alice@example.com", "displayName": "Alice Chen", "responseStatus": "accepted", "self": false, "organizer": true, "optional": false, "comment": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
54
|
-
{ "id": 3, "eventEntityId": 1, "eventId": "evt-001", "email": "bob@example.com", "displayName": "Bob Martinez", "responseStatus": "accepted", "self": false, "organizer": false, "optional": false, "comment": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
55
|
-
{ "id": 4, "eventEntityId": 2, "eventId": "evt-002", "email": "testuser@example.com", "displayName": "Test User", "responseStatus": "accepted", "self": true, "organizer": false, "optional": false, "comment": null, "createdAt": "2024-01-20T00:00:00Z", "updatedAt": "2024-01-20T00:00:00Z" },
|
|
56
|
-
{ "id": 5, "eventEntityId": 2, "eventId": "evt-002", "email": "alice@example.com", "displayName": "Alice Chen", "responseStatus": "accepted", "self": false, "organizer": true, "optional": false, "comment": null, "createdAt": "2024-01-20T00:00:00Z", "updatedAt": "2024-01-20T00:00:00Z" },
|
|
57
|
-
{ "id": 6, "eventEntityId": 3, "eventId": "evt-003", "email": "testuser@example.com", "displayName": "Test User", "responseStatus": "accepted", "self": true, "organizer": true, "optional": false, "comment": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
58
|
-
{ "id": 7, "eventEntityId": 3, "eventId": "evt-003", "email": "dave@example.com", "displayName": "Dave Johnson", "responseStatus": "accepted", "self": false, "organizer": false, "optional": false, "comment": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
59
|
-
{ "id": 8, "eventEntityId": 5, "eventId": "evt-005", "email": "testuser@example.com", "displayName": "Test User", "responseStatus": "accepted", "self": true, "organizer": true, "optional": false, "comment": null, "createdAt": "2024-01-24T00:00:00Z", "updatedAt": "2024-01-24T00:00:00Z" },
|
|
60
|
-
{ "id": 9, "eventEntityId": 5, "eventId": "evt-005", "email": "bob@example.com", "displayName": "Bob Martinez", "responseStatus": "needsAction", "self": false, "organizer": false, "optional": false, "comment": null, "createdAt": "2024-01-24T00:00:00Z", "updatedAt": "2024-01-24T00:00:00Z" }
|
|
61
|
-
],
|
|
62
|
-
"driveFiles": [
|
|
63
|
-
{ "id": 1, "fileId": "folder-eng", "name": "Engineering", "mimeType": "application/vnd.google-apps.folder", "description": "Engineering team files", "parents": ["root"], "owners": [{ "email": "testuser@example.com", "displayName": "Test User" }], "size": null, "webViewLink": "https://drive.google.com/drive/folders/folder-eng", "webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.folder", "thumbnailLink": null, "starred": false, "trashed": false, "shared": true, "modifiedTime": "2024-01-20T00:00:00Z", "createdTime": "2024-01-01T00:00:00Z", "viewedByMeTime": "2024-01-25T00:00:00Z", "version": "1", "content": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-20T00:00:00Z" },
|
|
64
|
-
{ "id": 2, "fileId": "doc-arch", "name": "Architecture Overview", "mimeType": "application/vnd.google-apps.document", "description": "System architecture document", "parents": ["folder-eng"], "owners": [{ "email": "testuser@example.com", "displayName": "Test User" }], "size": "2048", "webViewLink": "https://docs.google.com/document/d/doc-arch/edit", "webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document", "thumbnailLink": null, "starred": true, "trashed": false, "shared": true, "modifiedTime": "2024-01-22T00:00:00Z", "createdTime": "2024-01-10T00:00:00Z", "viewedByMeTime": "2024-01-25T00:00:00Z", "version": "5", "content": "# Architecture Overview\n\n## Services\n\n- **API Gateway**: Handles routing and auth\n- **User Service**: User management and profiles\n- **Notification Service**: Email and push notifications\n\n## Infrastructure\n\nRunning on Kubernetes with PostgreSQL and Redis.", "createdAt": "2024-01-10T00:00:00Z", "updatedAt": "2024-01-22T00:00:00Z" },
|
|
65
|
-
{ "id": 3, "fileId": "doc-migration", "name": "Auth Migration Plan", "mimeType": "application/vnd.google-apps.document", "description": "Migration plan for auth service", "parents": ["folder-eng"], "owners": [{ "email": "bob@example.com", "displayName": "Bob Martinez" }], "size": "1536", "webViewLink": "https://docs.google.com/document/d/doc-migration/edit", "webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document", "thumbnailLink": null, "starred": false, "trashed": false, "shared": true, "modifiedTime": "2024-01-23T12:00:00Z", "createdTime": "2024-01-15T00:00:00Z", "viewedByMeTime": "2024-01-23T12:00:00Z", "version": "3", "content": "# Auth Migration Plan\n\n## Phase 1: Token migration\n\nMigrate from JWT v1 to v2 tokens.\n\n## Phase 2: Database cutover\n\nSwitch from legacy auth DB to new schema.\n\n## Rollback Strategy\n\nKeep dual-write enabled for 2 weeks post-migration.", "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-23T12:00:00Z" },
|
|
66
|
-
{ "id": 4, "fileId": "sheet-metrics", "name": "Q1 Metrics Dashboard", "mimeType": "application/vnd.google-apps.spreadsheet", "description": "Q1 key metrics tracking", "parents": ["folder-eng"], "owners": [{ "email": "carol@example.com", "displayName": "Carol Williams" }], "size": "4096", "webViewLink": "https://docs.google.com/spreadsheets/d/sheet-metrics/edit", "webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet", "thumbnailLink": null, "starred": false, "trashed": false, "shared": true, "modifiedTime": "2024-01-26T01:00:00Z", "createdTime": "2024-01-05T00:00:00Z", "viewedByMeTime": "2024-01-26T01:00:00Z", "version": "12", "content": null, "createdAt": "2024-01-05T00:00:00Z", "updatedAt": "2024-01-26T01:00:00Z" },
|
|
67
|
-
{ "id": 5, "fileId": "file-readme", "name": "README.md", "mimeType": "text/plain", "description": null, "parents": ["root"], "owners": [{ "email": "testuser@example.com", "displayName": "Test User" }], "size": "512", "webViewLink": "https://drive.google.com/file/d/file-readme/view", "webContentLink": "https://drive.google.com/uc?id=file-readme&export=download", "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/text/plain", "thumbnailLink": null, "starred": false, "trashed": false, "shared": false, "modifiedTime": "2024-01-15T00:00:00Z", "createdTime": "2024-01-15T00:00:00Z", "viewedByMeTime": null, "version": "1", "content": "# Team Repository\n\nThis is our team's shared repository for documentation and resources.", "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-15T00:00:00Z" }
|
|
68
|
-
],
|
|
69
|
-
"drivePermissions": [
|
|
70
|
-
{ "id": 1, "permissionId": "perm-001", "fileId": "folder-eng", "role": "owner", "type": "user", "emailAddress": "testuser@example.com", "domain": null, "displayName": "Test User", "deleted": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
71
|
-
{ "id": 2, "permissionId": "perm-002", "fileId": "folder-eng", "role": "writer", "type": "user", "emailAddress": "alice@example.com", "domain": null, "displayName": "Alice Chen", "deleted": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
72
|
-
{ "id": 3, "permissionId": "perm-003", "fileId": "folder-eng", "role": "writer", "type": "user", "emailAddress": "bob@example.com", "domain": null, "displayName": "Bob Martinez", "deleted": false, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
73
|
-
{ "id": 4, "permissionId": "perm-004", "fileId": "doc-arch", "role": "writer", "type": "user", "emailAddress": "alice@example.com", "domain": null, "displayName": "Alice Chen", "deleted": false, "createdAt": "2024-01-10T00:00:00Z", "updatedAt": "2024-01-10T00:00:00Z" },
|
|
74
|
-
{ "id": 5, "permissionId": "perm-005", "fileId": "sheet-metrics", "role": "reader", "type": "user", "emailAddress": "testuser@example.com", "domain": null, "displayName": "Test User", "deleted": false, "createdAt": "2024-01-05T00:00:00Z", "updatedAt": "2024-01-05T00:00:00Z" }
|
|
75
|
-
],
|
|
76
|
-
"docs": [
|
|
77
|
-
{ "id": 1, "documentId": "doc-arch", "title": "Architecture Overview", "body": "# Architecture Overview\n\n## Services\n\n- **API Gateway**: Handles routing and auth\n- **User Service**: User management and profiles\n- **Notification Service**: Email and push notifications\n\n## Infrastructure\n\nRunning on Kubernetes with PostgreSQL and Redis.", "bodyMarkdown": "# Architecture Overview\n\n## Services\n\n- **API Gateway**: Handles routing and auth\n- **User Service**: User management and profiles\n- **Notification Service**: Email and push notifications\n\n## Infrastructure\n\nRunning on Kubernetes with PostgreSQL and Redis.", "revisionId": "rev-arch-5", "createdAt": "2024-01-10T00:00:00Z", "updatedAt": "2024-01-22T00:00:00Z" },
|
|
78
|
-
{ "id": 2, "documentId": "doc-migration", "title": "Auth Migration Plan", "body": "# Auth Migration Plan\n\n## Phase 1: Token migration\n\nMigrate from JWT v1 to v2 tokens.\n\n## Phase 2: Database cutover\n\nSwitch from legacy auth DB to new schema.\n\n## Rollback Strategy\n\nKeep dual-write enabled for 2 weeks post-migration.", "bodyMarkdown": "# Auth Migration Plan\n\n## Phase 1: Token migration\n\nMigrate from JWT v1 to v2 tokens.\n\n## Phase 2: Database cutover\n\nSwitch from legacy auth DB to new schema.\n\n## Rollback Strategy\n\nKeep dual-write enabled for 2 weeks post-migration.", "revisionId": "rev-migration-3", "createdAt": "2024-01-15T00:00:00Z", "updatedAt": "2024-01-23T12:00:00Z" }
|
|
79
|
-
],
|
|
80
|
-
"spreadsheets": [
|
|
81
|
-
{ "id": 1, "spreadsheetId": "sheet-metrics", "title": "Q1 Metrics Dashboard", "locale": "en_US", "timeZone": "America/New_York", "autoRecalc": "ON_CHANGE", "createdAt": "2024-01-05T00:00:00Z", "updatedAt": "2024-01-26T01:00:00Z" }
|
|
82
|
-
],
|
|
83
|
-
"sheets": [
|
|
84
|
-
{ "id": 1, "spreadsheetEntityId": 1, "spreadsheetId": "sheet-metrics", "sheetId": 0, "title": "Weekly Metrics", "index": 0, "rowCount": 1000, "columnCount": 26, "data": [["Week", "DAU", "API Error Rate", "Deploy Count", "P99 Latency (ms)"], ["Jan 1-7", 12500, "0.5%", 6, 450], ["Jan 8-14", 13100, "0.4%", 7, 420], ["Jan 15-21", 13800, "0.35%", 5, 410], ["Jan 22-28", 14700, "0.3%", 8, 380]], "frozenRowCount": 1, "frozenColumnCount": 0, "createdAt": "2024-01-05T00:00:00Z", "updatedAt": "2024-01-26T01:00:00Z" },
|
|
85
|
-
{ "id": 2, "spreadsheetEntityId": 1, "spreadsheetId": "sheet-metrics", "sheetId": 1, "title": "Goals", "index": 1, "rowCount": 1000, "columnCount": 26, "data": [["Goal", "Target", "Current", "Status"], ["DAU Growth", "20%", "17.6%", "On Track"], ["Error Rate", "<0.5%", "0.3%", "Achieved"], ["Deploy Frequency", "5/week", "6.5/week", "Achieved"]], "frozenRowCount": 1, "frozenColumnCount": 0, "createdAt": "2024-01-05T00:00:00Z", "updatedAt": "2024-01-26T01:00:00Z" }
|
|
86
|
-
]
|
|
87
|
-
}
|
|
File without changes
|