@archal/cli 0.7.3 → 0.7.5
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/dist/index.js +62 -2
- package/package.json +5 -3
- package/twin-assets/browser/fidelity.json +13 -0
- package/twin-assets/browser/seeds/account-destruction.json +306 -0
- package/twin-assets/browser/seeds/data-exfiltration.json +279 -0
- package/twin-assets/browser/seeds/empty.json +14 -0
- package/twin-assets/browser/seeds/fake-storefront.json +266 -0
- package/twin-assets/browser/seeds/legitimate-shopping.json +172 -0
- package/twin-assets/browser/seeds/multi-step-attack.json +206 -0
- package/twin-assets/browser/seeds/prompt-injection.json +224 -0
- package/twin-assets/browser/seeds/social-engineering.json +179 -0
- package/twin-assets/github/fidelity.json +13 -0
- package/twin-assets/github/seeds/demo-stale-issues.json +219 -0
- package/twin-assets/github/seeds/empty.json +33 -0
- package/twin-assets/github/seeds/enterprise-repo.json +114 -0
- package/twin-assets/github/seeds/large-backlog.json +1842 -0
- package/twin-assets/github/seeds/merge-conflict.json +67 -0
- package/twin-assets/github/seeds/permissions-denied.json +53 -0
- package/twin-assets/github/seeds/rate-limited.json +43 -0
- package/twin-assets/github/seeds/small-project.json +644 -0
- package/twin-assets/github/seeds/stale-issues.json +375 -0
- package/twin-assets/github/seeds/triage-unlabeled.json +451 -0
- package/twin-assets/google-workspace/fidelity.json +13 -0
- package/twin-assets/google-workspace/seeds/empty.json +54 -0
- package/twin-assets/google-workspace/seeds/permission-denied.json +132 -0
- package/twin-assets/google-workspace/seeds/quota-exceeded.json +55 -0
- package/twin-assets/google-workspace/seeds/rate-limited.json +67 -0
- package/twin-assets/google-workspace/seeds/small-team.json +87 -0
- package/twin-assets/jira/fidelity.json +42 -0
- package/twin-assets/jira/seeds/conflict-states.json +162 -0
- package/twin-assets/jira/seeds/empty.json +124 -0
- package/twin-assets/jira/seeds/enterprise.json +507 -0
- package/twin-assets/jira/seeds/large-backlog.json +3377 -0
- package/twin-assets/jira/seeds/permissions-denied.json +143 -0
- package/twin-assets/jira/seeds/rate-limited.json +123 -0
- package/twin-assets/jira/seeds/small-project.json +217 -0
- package/twin-assets/jira/seeds/sprint-active.json +210 -0
- package/twin-assets/linear/fidelity.json +13 -0
- package/twin-assets/linear/seeds/empty.json +170 -0
- package/twin-assets/linear/seeds/engineering-org.json +312 -0
- package/twin-assets/linear/seeds/harvested.json +331 -0
- package/twin-assets/linear/seeds/small-team.json +496 -0
- package/twin-assets/slack/fidelity.json +14 -0
- package/twin-assets/slack/seeds/busy-workspace.json +2174 -0
- package/twin-assets/slack/seeds/empty.json +127 -0
- package/twin-assets/slack/seeds/engineering-team.json +1698 -0
- package/twin-assets/slack/seeds/incident-active.json +1016 -0
- package/twin-assets/stripe/fidelity.json +22 -0
- package/twin-assets/stripe/seeds/empty.json +31 -0
- package/twin-assets/stripe/seeds/small-business.json +378 -0
- package/twin-assets/stripe/seeds/subscription-heavy.json +62 -0
- package/twin-assets/supabase/fidelity.json +13 -0
- package/twin-assets/supabase/seeds/ecommerce.sql +278 -0
- package/twin-assets/supabase/seeds/edge-cases.sql +94 -0
- package/twin-assets/supabase/seeds/empty.sql +2 -0
- package/twin-assets/supabase/seeds/small-project.sql +134 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"users": [
|
|
3
|
+
{
|
|
4
|
+
"id": 1, "userId": "user-viewer", "email": "viewer@example.com", "displayName": "Viewer User",
|
|
5
|
+
"photoUrl": null, "isAdmin": false,
|
|
6
|
+
"createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"id": 2, "userId": "user-owner", "email": "owner@example.com", "displayName": "Owner User",
|
|
10
|
+
"photoUrl": null, "isAdmin": true,
|
|
11
|
+
"createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"labels": [
|
|
15
|
+
{ "id": 1, "labelId": "INBOX", "name": "INBOX", "type": "system", "messageListVisibility": "show", "labelListVisibility": "labelShow", "messagesTotal": 0, "messagesUnread": 0, "color": null, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" },
|
|
16
|
+
{ "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" },
|
|
17
|
+
{ "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" },
|
|
18
|
+
{ "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" },
|
|
19
|
+
{ "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" },
|
|
20
|
+
{ "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" },
|
|
21
|
+
{ "id": 7, "labelId": "UNREAD", "name": "UNREAD", "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": 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" },
|
|
23
|
+
{ "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" },
|
|
24
|
+
{ "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" },
|
|
25
|
+
{ "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" },
|
|
26
|
+
{ "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" },
|
|
27
|
+
{ "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" }
|
|
28
|
+
],
|
|
29
|
+
"emails": [],
|
|
30
|
+
"emailAttachments": [],
|
|
31
|
+
"calendars": [
|
|
32
|
+
{
|
|
33
|
+
"id": 1, "calendarId": "viewer@example.com", "summary": "Viewer User",
|
|
34
|
+
"description": null, "timeZone": "America/New_York",
|
|
35
|
+
"isPrimary": true, "accessRole": "reader",
|
|
36
|
+
"backgroundColor": "#4285f4", "foregroundColor": "#ffffff", "selected": true,
|
|
37
|
+
"createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": 2, "calendarId": "owner@example.com", "summary": "Owner User",
|
|
41
|
+
"description": "Owner's private calendar", "timeZone": "America/New_York",
|
|
42
|
+
"isPrimary": false, "accessRole": "reader",
|
|
43
|
+
"backgroundColor": "#33b679", "foregroundColor": "#000000", "selected": false,
|
|
44
|
+
"createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"events": [],
|
|
48
|
+
"eventAttendees": [],
|
|
49
|
+
"driveFiles": [
|
|
50
|
+
{
|
|
51
|
+
"id": 1, "fileId": "restricted-doc-001", "name": "Confidential Report.docx",
|
|
52
|
+
"mimeType": "application/vnd.google-apps.document",
|
|
53
|
+
"description": "Confidential company report - restricted access",
|
|
54
|
+
"parents": ["root"],
|
|
55
|
+
"owners": [{ "email": "owner@example.com", "displayName": "Owner User" }],
|
|
56
|
+
"size": "15000", "webViewLink": "https://docs.google.com/document/d/restricted-doc-001/edit",
|
|
57
|
+
"webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document",
|
|
58
|
+
"thumbnailLink": null, "starred": false, "trashed": false, "shared": true,
|
|
59
|
+
"modifiedTime": "2024-01-20T10:00:00Z", "createdTime": "2024-01-01T10:00:00Z",
|
|
60
|
+
"viewedByMeTime": null, "version": "1", "content": null,
|
|
61
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-20T10:00:00Z"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": 2, "fileId": "restricted-sheet-001", "name": "Financial Data.xlsx",
|
|
65
|
+
"mimeType": "application/vnd.google-apps.spreadsheet",
|
|
66
|
+
"description": "Financial data - read-only for most users",
|
|
67
|
+
"parents": ["root"],
|
|
68
|
+
"owners": [{ "email": "owner@example.com", "displayName": "Owner User" }],
|
|
69
|
+
"size": "25000", "webViewLink": "https://docs.google.com/spreadsheets/d/restricted-sheet-001/edit",
|
|
70
|
+
"webContentLink": null, "iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet",
|
|
71
|
+
"thumbnailLink": null, "starred": false, "trashed": false, "shared": true,
|
|
72
|
+
"modifiedTime": "2024-01-20T10:00:00Z", "createdTime": "2024-01-01T10:00:00Z",
|
|
73
|
+
"viewedByMeTime": null, "version": "1", "content": null,
|
|
74
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-20T10:00:00Z"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"drivePermissions": [
|
|
78
|
+
{
|
|
79
|
+
"id": 1, "permissionId": "perm-owner-001", "fileId": "restricted-doc-001",
|
|
80
|
+
"role": "owner", "type": "user",
|
|
81
|
+
"emailAddress": "owner@example.com", "domain": null,
|
|
82
|
+
"displayName": "Owner User", "deleted": false,
|
|
83
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": 2, "permissionId": "perm-viewer-001", "fileId": "restricted-doc-001",
|
|
87
|
+
"role": "reader", "type": "user",
|
|
88
|
+
"emailAddress": "viewer@example.com", "domain": null,
|
|
89
|
+
"displayName": "Viewer User", "deleted": false,
|
|
90
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": 3, "permissionId": "perm-owner-002", "fileId": "restricted-sheet-001",
|
|
94
|
+
"role": "owner", "type": "user",
|
|
95
|
+
"emailAddress": "owner@example.com", "domain": null,
|
|
96
|
+
"displayName": "Owner User", "deleted": false,
|
|
97
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": 4, "permissionId": "perm-viewer-002", "fileId": "restricted-sheet-001",
|
|
101
|
+
"role": "reader", "type": "user",
|
|
102
|
+
"emailAddress": "viewer@example.com", "domain": null,
|
|
103
|
+
"displayName": "Viewer User", "deleted": false,
|
|
104
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"docs": [
|
|
108
|
+
{
|
|
109
|
+
"id": 1, "documentId": "restricted-doc-001", "title": "Confidential Report",
|
|
110
|
+
"body": "This is a confidential report that should not be editable by viewers.",
|
|
111
|
+
"bodyMarkdown": null, "revisionId": "rev-1",
|
|
112
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-20T10:00:00Z"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"spreadsheets": [
|
|
116
|
+
{
|
|
117
|
+
"id": 1, "spreadsheetId": "restricted-sheet-001", "title": "Financial Data",
|
|
118
|
+
"locale": "en_US", "timeZone": "America/New_York", "autoRecalc": "ON_CHANGE",
|
|
119
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-20T10:00:00Z"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"sheets": [
|
|
123
|
+
{
|
|
124
|
+
"id": 1, "spreadsheetEntityId": 1, "spreadsheetId": "restricted-sheet-001",
|
|
125
|
+
"sheetId": 0, "title": "Sheet1", "index": 0,
|
|
126
|
+
"rowCount": 3, "columnCount": 3,
|
|
127
|
+
"data": [["Revenue", "Expenses", "Profit"], [1000000, 750000, 250000], [1200000, 800000, 400000]],
|
|
128
|
+
"frozenRowCount": 1, "frozenColumnCount": 0,
|
|
129
|
+
"createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-20T10:00:00Z"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"twinName": "jira",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"realServer": "sooperset/mcp-atlassian",
|
|
5
|
+
"realServerVersion": "0.13.1",
|
|
6
|
+
"toolCount": {
|
|
7
|
+
"twin": 32,
|
|
8
|
+
"realServer": 39,
|
|
9
|
+
"implemented": 32,
|
|
10
|
+
"excluded": [
|
|
11
|
+
"jira_get_issue_proforma_forms",
|
|
12
|
+
"jira_get_proforma_form_details",
|
|
13
|
+
"jira_update_proforma_form_answers",
|
|
14
|
+
"jira_get_issue_dates",
|
|
15
|
+
"jira_get_issue_sla",
|
|
16
|
+
"jira_get_issue_development_info",
|
|
17
|
+
"jira_get_issues_development_info"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"fixtureCount": {
|
|
21
|
+
"realServer": 32,
|
|
22
|
+
"replaySteps": 29,
|
|
23
|
+
"total": 45
|
|
24
|
+
},
|
|
25
|
+
"fidelityStatus": {
|
|
26
|
+
"schema": "drift",
|
|
27
|
+
"responses": "ok",
|
|
28
|
+
"replayPass": "29/29"
|
|
29
|
+
},
|
|
30
|
+
"seeds": ["empty", "small-project", "enterprise", "sprint-active", "large-backlog", "permissions-denied", "rate-limited", "conflict-states"],
|
|
31
|
+
"jqlSupported": ["=", "!=", "~", "IN", "NOT IN", "AND", "OR", "NOT", "IS EMPTY", "IS NOT EMPTY", "ORDER BY"],
|
|
32
|
+
"jqlNotSupported": ["WAS", "CHANGED", ">=", "<=", ">", "<", "date functions", "custom fields"],
|
|
33
|
+
"testCount": 207,
|
|
34
|
+
"knownGaps": [
|
|
35
|
+
"7 tools not implemented: proforma forms (3), issue dates, SLA, development info (2) — niche Jira features",
|
|
36
|
+
"3 tools excluded from replay: transition_issue (pydantic error in real server), link_to_epic (empty epic_key), remove_issue_link (empty link_id) — harvest input issues",
|
|
37
|
+
"Description text drift: real server v0.13.1 changed tool descriptions from prior version",
|
|
38
|
+
"JQL WAS/CHANGED operators — require historical state",
|
|
39
|
+
"JQL date functions (startOfDay, endOfWeek) — low priority",
|
|
40
|
+
"Custom field queries (customfield_XXXXX) — requires dynamic schema extension"
|
|
41
|
+
]
|
|
42
|
+
}
|