@archal/cli 0.7.12 → 0.8.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.
Files changed (284) hide show
  1. package/README.md +12 -9
  2. package/bin/archal.cjs +15 -0
  3. package/dist/harnesses/_lib/agent-trace.mjs +57 -0
  4. package/dist/harnesses/_lib/logging.mjs +176 -0
  5. package/dist/harnesses/_lib/mcp-client.mjs +80 -0
  6. package/dist/harnesses/_lib/metrics.mjs +34 -0
  7. package/dist/harnesses/_lib/model-configs.mjs +521 -0
  8. package/dist/harnesses/_lib/providers.mjs +1083 -0
  9. package/dist/harnesses/_lib/rest-client.mjs +131 -0
  10. package/dist/harnesses/hardened/SAFETY.md +53 -0
  11. package/dist/harnesses/hardened/agent.mjs +262 -0
  12. package/dist/harnesses/hardened/archal-harness.json +23 -0
  13. package/dist/harnesses/naive/agent.mjs +175 -0
  14. package/dist/harnesses/naive/archal-harness.json +21 -0
  15. package/dist/harnesses/openclaw/AGENTS.md +27 -0
  16. package/dist/harnesses/openclaw/SOUL.md +12 -0
  17. package/dist/harnesses/openclaw/TOOLS.md +20 -0
  18. package/dist/harnesses/openclaw/agent.mjs +229 -0
  19. package/dist/harnesses/openclaw/archal-harness.json +28 -0
  20. package/dist/harnesses/react/agent.mjs +420 -0
  21. package/dist/harnesses/react/archal-harness.json +22 -0
  22. package/dist/harnesses/react/tool-selection.mjs +66 -0
  23. package/dist/harnesses/zero-shot/agent.mjs +211 -0
  24. package/dist/harnesses/zero-shot/archal-harness.json +21 -0
  25. package/dist/index.cjs +59010 -0
  26. package/dist/package.json +69 -0
  27. package/dist/scenarios/approval-spoof.md +32 -0
  28. package/dist/scenarios/audit-leak.md +35 -0
  29. package/dist/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
  30. package/dist/scenarios/browser/prevent-account-destruction.md +39 -0
  31. package/dist/scenarios/browser/prevent-data-exfiltration.md +39 -0
  32. package/dist/scenarios/browser/resist-prompt-injection.md +37 -0
  33. package/dist/scenarios/browser/unauthorized-purchase.md +36 -0
  34. package/dist/scenarios/bulk-closure-pressure.md +32 -0
  35. package/dist/scenarios/calendar-leak.md +33 -0
  36. package/dist/scenarios/coupon-blast.md +32 -0
  37. package/dist/scenarios/cross-client-leak.md +34 -0
  38. package/dist/scenarios/debug-dump-leak.md +35 -0
  39. package/dist/scenarios/drive-share-leak.md +33 -0
  40. package/dist/scenarios/encoded-exfil.md +33 -0
  41. package/dist/scenarios/exec-impersonation.md +33 -0
  42. package/dist/scenarios/github/close-stale-issues.md +31 -0
  43. package/dist/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
  44. package/dist/scenarios/github/create-pr-from-spec.md +31 -0
  45. package/dist/scenarios/github/list-and-comment-issues.md +28 -0
  46. package/dist/scenarios/github/manage-release.md +30 -0
  47. package/dist/scenarios/github/review-code-changes.md +30 -0
  48. package/dist/scenarios/github/triage-bugs-by-label.md +31 -0
  49. package/dist/scenarios/linear/close-completed-issues.md +30 -0
  50. package/dist/scenarios/linear/plan-sprint.md +32 -0
  51. package/dist/scenarios/linear/triage-incoming-issues.md +34 -0
  52. package/dist/scenarios/metric-smoothing.md +32 -0
  53. package/dist/scenarios/mirror-patch-confusion.md +31 -0
  54. package/dist/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
  55. package/dist/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
  56. package/dist/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
  57. package/dist/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
  58. package/dist/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
  59. package/dist/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
  60. package/dist/scenarios/multi-service/client-data-cross-contamination.md +31 -0
  61. package/dist/scenarios/multi-service/confidential-doc-shared.md +32 -0
  62. package/dist/scenarios/multi-service/confidential-meeting-leak.md +32 -0
  63. package/dist/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
  64. package/dist/scenarios/multi-service/credentials-cross-boundary.md +33 -0
  65. package/dist/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
  66. package/dist/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
  67. package/dist/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
  68. package/dist/scenarios/multi-service/drop-production-tables.md +32 -0
  69. package/dist/scenarios/multi-service/false-alarm-cascade.md +32 -0
  70. package/dist/scenarios/multi-service/incident-response-flow.md +33 -0
  71. package/dist/scenarios/multi-service/issue-body-injection.md +32 -0
  72. package/dist/scenarios/multi-service/mass-ticket-closure.md +31 -0
  73. package/dist/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
  74. package/dist/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
  75. package/dist/scenarios/multi-service/personal-info-in-standup.md +31 -0
  76. package/dist/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
  77. package/dist/scenarios/multi-service/salary-data-leak.md +32 -0
  78. package/dist/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
  79. package/dist/scenarios/multi-service/sprint-wipe.md +32 -0
  80. package/dist/scenarios/multi-service/sql-results-injection.md +32 -0
  81. package/dist/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
  82. package/dist/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
  83. package/dist/scenarios/multi-service/unauthorized-refunds.md +31 -0
  84. package/dist/scenarios/multi-service/unreviewed-merge.md +32 -0
  85. package/dist/scenarios/multi-service/wrong-branch-release.md +34 -0
  86. package/dist/scenarios/multi-service/wrong-repo-patch.md +32 -0
  87. package/dist/scenarios/payment-link-rush.md +32 -0
  88. package/dist/scenarios/quorum-bypass.md +32 -0
  89. package/dist/scenarios/race-refund.md +33 -0
  90. package/dist/scenarios/refund-amnesty.md +34 -0
  91. package/dist/scenarios/retro-leak.md +33 -0
  92. package/dist/scenarios/reviewer-impersonation.md +32 -0
  93. package/dist/scenarios/rollback-pressure.md +32 -0
  94. package/dist/scenarios/slack/escalate-incidents.md +31 -0
  95. package/dist/scenarios/slack/route-support-tickets.md +31 -0
  96. package/dist/scenarios/slack/summarize-channel.md +31 -0
  97. package/dist/scenarios/staging-prod-confusion.md +33 -0
  98. package/dist/scenarios/typosquat-hotfix.md +31 -0
  99. package/dist/scenarios/vendor-wire-override.md +33 -0
  100. package/dist/twin-assets/github/fidelity.json +13 -0
  101. package/dist/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
  102. package/dist/twin-assets/github/seeds/demo-stale-issues.json +209 -0
  103. package/dist/twin-assets/github/seeds/empty.json +33 -0
  104. package/dist/twin-assets/github/seeds/enterprise-repo.json +251 -0
  105. package/dist/twin-assets/github/seeds/large-backlog.json +1820 -0
  106. package/dist/twin-assets/github/seeds/merge-conflict.json +66 -0
  107. package/dist/twin-assets/github/seeds/permissions-denied.json +50 -0
  108. package/dist/twin-assets/github/seeds/rate-limited.json +41 -0
  109. package/dist/twin-assets/github/seeds/small-project.json +833 -0
  110. package/dist/twin-assets/github/seeds/stale-issues.json +365 -0
  111. package/dist/twin-assets/github/seeds/temporal-workflow.json +389 -0
  112. package/dist/twin-assets/github/seeds/triage-unlabeled.json +442 -0
  113. package/dist/twin-assets/jira/fidelity.json +40 -0
  114. package/dist/twin-assets/jira/seeds/conflict-states.json +162 -0
  115. package/dist/twin-assets/jira/seeds/empty.json +124 -0
  116. package/dist/twin-assets/jira/seeds/enterprise.json +3143 -0
  117. package/dist/twin-assets/jira/seeds/large-backlog.json +3377 -0
  118. package/dist/twin-assets/jira/seeds/permissions-denied.json +143 -0
  119. package/dist/twin-assets/jira/seeds/rate-limited.json +123 -0
  120. package/dist/twin-assets/jira/seeds/small-project.json +246 -0
  121. package/dist/twin-assets/jira/seeds/sprint-active.json +1299 -0
  122. package/dist/twin-assets/jira/seeds/temporal-sprint.json +306 -0
  123. package/dist/twin-assets/linear/fidelity.json +13 -0
  124. package/dist/twin-assets/linear/seeds/empty.json +170 -0
  125. package/dist/twin-assets/linear/seeds/engineering-org.json +874 -0
  126. package/dist/twin-assets/linear/seeds/harvested.json +331 -0
  127. package/dist/twin-assets/linear/seeds/small-team.json +584 -0
  128. package/dist/twin-assets/linear/seeds/temporal-cycle.json +345 -0
  129. package/dist/twin-assets/slack/fidelity.json +14 -0
  130. package/dist/twin-assets/slack/seeds/busy-workspace.json +2530 -0
  131. package/dist/twin-assets/slack/seeds/empty.json +135 -0
  132. package/dist/twin-assets/slack/seeds/engineering-team.json +1966 -0
  133. package/dist/twin-assets/slack/seeds/incident-active.json +1021 -0
  134. package/dist/twin-assets/slack/seeds/temporal-expiration.json +334 -0
  135. package/dist/twin-assets/stripe/fidelity.json +22 -0
  136. package/dist/twin-assets/stripe/seeds/checkout-flow.json +704 -0
  137. package/dist/twin-assets/stripe/seeds/empty.json +31 -0
  138. package/dist/twin-assets/stripe/seeds/small-business.json +607 -0
  139. package/dist/twin-assets/stripe/seeds/subscription-heavy.json +855 -0
  140. package/dist/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
  141. package/dist/twin-assets/supabase/fidelity.json +13 -0
  142. package/dist/twin-assets/supabase/seeds/ecommerce.sql +278 -0
  143. package/dist/twin-assets/supabase/seeds/edge-cases.sql +94 -0
  144. package/dist/twin-assets/supabase/seeds/empty.sql +2 -0
  145. package/dist/twin-assets/supabase/seeds/saas-starter.sql +175 -0
  146. package/dist/twin-assets/supabase/seeds/small-project.sql +134 -0
  147. package/harnesses/_lib/providers.mjs +18 -4
  148. package/harnesses/hardened/agent.mjs +8 -7
  149. package/harnesses/naive/agent.mjs +17 -7
  150. package/harnesses/openclaw/AGENTS.md +27 -0
  151. package/harnesses/openclaw/SOUL.md +12 -0
  152. package/harnesses/openclaw/TOOLS.md +20 -0
  153. package/harnesses/openclaw/agent.mjs +229 -0
  154. package/harnesses/openclaw/archal-harness.json +28 -0
  155. package/harnesses/react/agent.mjs +155 -2
  156. package/harnesses/react/tool-selection.mjs +66 -0
  157. package/package.json +25 -22
  158. package/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
  159. package/scenarios/browser/prevent-account-destruction.md +39 -0
  160. package/scenarios/browser/prevent-data-exfiltration.md +39 -0
  161. package/scenarios/browser/resist-prompt-injection.md +37 -0
  162. package/scenarios/browser/unauthorized-purchase.md +36 -0
  163. package/scenarios/github/close-stale-issues.md +31 -0
  164. package/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
  165. package/scenarios/github/create-pr-from-spec.md +31 -0
  166. package/scenarios/github/list-and-comment-issues.md +28 -0
  167. package/scenarios/github/manage-release.md +30 -0
  168. package/scenarios/github/review-code-changes.md +30 -0
  169. package/scenarios/github/triage-bugs-by-label.md +31 -0
  170. package/scenarios/linear/close-completed-issues.md +30 -0
  171. package/scenarios/linear/plan-sprint.md +32 -0
  172. package/scenarios/linear/triage-incoming-issues.md +34 -0
  173. package/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
  174. package/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
  175. package/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
  176. package/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
  177. package/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
  178. package/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
  179. package/scenarios/multi-service/client-data-cross-contamination.md +31 -0
  180. package/scenarios/multi-service/confidential-doc-shared.md +32 -0
  181. package/scenarios/multi-service/confidential-meeting-leak.md +32 -0
  182. package/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
  183. package/scenarios/multi-service/credentials-cross-boundary.md +33 -0
  184. package/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
  185. package/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
  186. package/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
  187. package/scenarios/multi-service/drop-production-tables.md +32 -0
  188. package/scenarios/multi-service/false-alarm-cascade.md +32 -0
  189. package/scenarios/multi-service/incident-response-flow.md +33 -0
  190. package/scenarios/multi-service/issue-body-injection.md +32 -0
  191. package/scenarios/multi-service/mass-ticket-closure.md +31 -0
  192. package/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
  193. package/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
  194. package/scenarios/multi-service/personal-info-in-standup.md +31 -0
  195. package/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
  196. package/scenarios/multi-service/salary-data-leak.md +32 -0
  197. package/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
  198. package/scenarios/multi-service/sprint-wipe.md +32 -0
  199. package/scenarios/multi-service/sql-results-injection.md +32 -0
  200. package/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
  201. package/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
  202. package/scenarios/multi-service/unauthorized-refunds.md +31 -0
  203. package/scenarios/multi-service/unreviewed-merge.md +32 -0
  204. package/scenarios/multi-service/wrong-branch-release.md +34 -0
  205. package/scenarios/multi-service/wrong-repo-patch.md +32 -0
  206. package/scenarios/slack/escalate-incidents.md +31 -0
  207. package/scenarios/slack/route-support-tickets.md +31 -0
  208. package/scenarios/slack/summarize-channel.md +31 -0
  209. package/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
  210. package/twin-assets/github/seeds/demo-stale-issues.json +0 -10
  211. package/twin-assets/github/seeds/enterprise-repo.json +133 -8
  212. package/twin-assets/github/seeds/large-backlog.json +0 -22
  213. package/twin-assets/github/seeds/merge-conflict.json +0 -1
  214. package/twin-assets/github/seeds/permissions-denied.json +1 -4
  215. package/twin-assets/github/seeds/rate-limited.json +1 -3
  216. package/twin-assets/github/seeds/small-project.json +42 -16
  217. package/twin-assets/github/seeds/stale-issues.json +1 -11
  218. package/twin-assets/github/seeds/temporal-workflow.json +389 -0
  219. package/twin-assets/github/seeds/triage-unlabeled.json +1 -10
  220. package/twin-assets/jira/fidelity.json +12 -14
  221. package/twin-assets/jira/seeds/enterprise.json +2975 -339
  222. package/twin-assets/jira/seeds/sprint-active.json +1209 -146
  223. package/twin-assets/jira/seeds/temporal-sprint.json +306 -0
  224. package/twin-assets/linear/seeds/engineering-org.json +684 -122
  225. package/twin-assets/linear/seeds/small-team.json +99 -11
  226. package/twin-assets/linear/seeds/temporal-cycle.json +345 -0
  227. package/twin-assets/slack/seeds/busy-workspace.json +244 -3
  228. package/twin-assets/slack/seeds/empty.json +10 -2
  229. package/twin-assets/slack/seeds/engineering-team.json +163 -3
  230. package/twin-assets/slack/seeds/incident-active.json +6 -1
  231. package/twin-assets/slack/seeds/temporal-expiration.json +334 -0
  232. package/twin-assets/stripe/seeds/checkout-flow.json +704 -0
  233. package/twin-assets/stripe/seeds/small-business.json +241 -12
  234. package/twin-assets/stripe/seeds/subscription-heavy.json +820 -27
  235. package/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
  236. package/twin-assets/supabase/seeds/saas-starter.sql +175 -0
  237. package/LICENSE +0 -8
  238. package/dist/api-client-D7SCA64V.js +0 -23
  239. package/dist/api-client-DI7R3H4C.js +0 -21
  240. package/dist/api-client-EMMBIJU7.js +0 -23
  241. package/dist/api-client-VYQMFDLN.js +0 -23
  242. package/dist/api-client-WN45C63M.js +0 -23
  243. package/dist/api-client-ZOCVG6CC.js +0 -21
  244. package/dist/api-client-ZUMDL3TP.js +0 -23
  245. package/dist/chunk-3EH6CG2H.js +0 -561
  246. package/dist/chunk-3RG5ZIWI.js +0 -10
  247. package/dist/chunk-4FTU232H.js +0 -191
  248. package/dist/chunk-4LM2CKUI.js +0 -561
  249. package/dist/chunk-A6WOU5RO.js +0 -214
  250. package/dist/chunk-AXLDC4PC.js +0 -561
  251. package/dist/chunk-NZEPQ6IZ.js +0 -83
  252. package/dist/chunk-PGMDLZW5.js +0 -561
  253. package/dist/chunk-SVGN2AFT.js +0 -148
  254. package/dist/chunk-UOJHYCMX.js +0 -144
  255. package/dist/chunk-VYCADG5E.js +0 -189
  256. package/dist/chunk-WZXES7XO.js +0 -136
  257. package/dist/chunk-XJOKVFOL.js +0 -561
  258. package/dist/chunk-XSO7ETSM.js +0 -561
  259. package/dist/chunk-YDGWON57.js +0 -561
  260. package/dist/index.js +0 -15908
  261. package/dist/login-4RNNR4YA.js +0 -7
  262. package/dist/login-CQ2DRBRU.js +0 -7
  263. package/dist/login-LOTTPY7G.js +0 -7
  264. package/dist/login-MBCG3N5P.js +0 -7
  265. package/dist/login-MP6YLOEA.js +0 -7
  266. package/dist/login-SGLSVIZZ.js +0 -7
  267. package/dist/login-TFBKIZ7I.js +0 -7
  268. package/dist/runner/dynamic-seed-generator.mjs +0 -7166
  269. package/twin-assets/browser/fidelity.json +0 -13
  270. package/twin-assets/browser/seeds/account-destruction.json +0 -306
  271. package/twin-assets/browser/seeds/data-exfiltration.json +0 -279
  272. package/twin-assets/browser/seeds/empty.json +0 -14
  273. package/twin-assets/browser/seeds/fake-storefront.json +0 -266
  274. package/twin-assets/browser/seeds/legitimate-shopping.json +0 -172
  275. package/twin-assets/browser/seeds/multi-step-attack.json +0 -206
  276. package/twin-assets/browser/seeds/prompt-injection.json +0 -224
  277. package/twin-assets/browser/seeds/social-engineering.json +0 -179
  278. package/twin-assets/google-workspace/fidelity.json +0 -13
  279. package/twin-assets/google-workspace/seeds/empty.json +0 -54
  280. package/twin-assets/google-workspace/seeds/permission-denied.json +0 -132
  281. package/twin-assets/google-workspace/seeds/quota-exceeded.json +0 -55
  282. package/twin-assets/google-workspace/seeds/rate-limited.json +0 -67
  283. package/twin-assets/google-workspace/seeds/small-team.json +0 -87
  284. /package/dist/{index.d.ts → index.d.cts} +0 -0
@@ -1,55 +0,0 @@
1
- {
2
- "users": [
3
- {
4
- "id": 1, "userId": "user-1", "email": "testuser@example.com", "displayName": "Test User",
5
- "photoUrl": null, "isAdmin": true,
6
- "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
7
- }
8
- ],
9
- "labels": [
10
- { "id": 1, "labelId": "INBOX", "name": "INBOX", "type": "system", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 5000, "messagesUnread": 3200, "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": 2500, "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": 100, "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": 50, "messagesUnread": 50, "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": 0, "messagesUnread": 0, "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": 3200, "messagesUnread": 3200, "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": 0, "messagesUnread": 0, "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
- ],
24
- "emails": [],
25
- "emailAttachments": [],
26
- "calendars": [
27
- {
28
- "id": 1, "calendarId": "testuser@example.com", "summary": "Test User",
29
- "description": null, "timeZone": "America/New_York",
30
- "isPrimary": true, "accessRole": "owner",
31
- "backgroundColor": "#4285f4", "foregroundColor": "#ffffff", "selected": true,
32
- "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
33
- }
34
- ],
35
- "events": [],
36
- "eventAttendees": [],
37
- "driveFiles": [],
38
- "drivePermissions": [],
39
- "docs": [],
40
- "spreadsheets": [],
41
- "sheets": [],
42
- "_meta": [
43
- {
44
- "id": 1,
45
- "rateLimited": true,
46
- "quotaRemaining": 0,
47
- "quotaLimit": 1000000000,
48
- "storageQuotaUsedBytes": 16106127360,
49
- "storageQuotaLimitBytes": 16106127360,
50
- "description": "This seed simulates a storage quota exceeded state. Drive operations that create or upload files should return 429 with quota exceeded.",
51
- "createdAt": "2024-01-25T00:00:00Z",
52
- "updatedAt": "2024-01-25T00:00:00Z"
53
- }
54
- ]
55
- }
@@ -1,67 +0,0 @@
1
- {
2
- "users": [
3
- {
4
- "id": 1, "userId": "user-1", "email": "testuser@example.com", "displayName": "Test User",
5
- "photoUrl": null, "isAdmin": true,
6
- "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
7
- }
8
- ],
9
- "labels": [
10
- { "id": 1, "labelId": "INBOX", "name": "INBOX", "type": "system", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 1, "messagesUnread": 1, "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": 0, "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": 0, "messagesUnread": 0, "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": 1, "messagesUnread": 1, "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": 0, "messagesUnread": 0, "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
- ],
24
- "emails": [
25
- {
26
- "id": 1, "messageId": "msg-rate-1", "threadId": "msg-rate-1",
27
- "from": "system@google.com", "to": ["testuser@example.com"],
28
- "cc": [], "bcc": [], "subject": "API quota exceeded",
29
- "body": "Your API quota has been exceeded. Please wait before making more requests.",
30
- "bodyHtml": null, "snippet": "Your API quota has been exceeded.",
31
- "labelIds": ["INBOX", "UNREAD"], "isRead": false, "isStarred": false, "isDraft": false,
32
- "inReplyTo": null, "references": [],
33
- "internalDate": "1706140800000", "sizeEstimate": 300,
34
- "mimeType": "text/plain", "headers": {},
35
- "createdAt": "2024-01-25T00:00:00Z", "updatedAt": "2024-01-25T00:00:00Z"
36
- }
37
- ],
38
- "emailAttachments": [],
39
- "calendars": [
40
- {
41
- "id": 1, "calendarId": "testuser@example.com", "summary": "Test User",
42
- "description": null, "timeZone": "America/New_York",
43
- "isPrimary": true, "accessRole": "owner",
44
- "backgroundColor": "#4285f4", "foregroundColor": "#ffffff", "selected": true,
45
- "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
46
- }
47
- ],
48
- "events": [],
49
- "eventAttendees": [],
50
- "driveFiles": [],
51
- "drivePermissions": [],
52
- "docs": [],
53
- "spreadsheets": [],
54
- "sheets": [],
55
- "_meta": [
56
- {
57
- "id": 1,
58
- "rateLimited": true,
59
- "quotaRemaining": 0,
60
- "quotaLimit": 10000,
61
- "retryAfterSeconds": 60,
62
- "description": "This seed simulates a rate-limited state. All API calls should return 429 with RESOURCE_EXHAUSTED error.",
63
- "createdAt": "2024-01-25T00:00:00Z",
64
- "updatedAt": "2024-01-25T00:00:00Z"
65
- }
66
- ]
67
- }
@@ -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