@marcoappio/marco-config 2.0.493 → 2.0.494
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/types/Zero.d.ts +8 -0
- package/dist/types/Zero.d.ts.map +1 -1
- package/dist/zero/crud.d.ts +1024 -0
- package/dist/zero/crud.d.ts.map +1 -0
- package/dist/zero/crud.js +3 -0
- package/dist/zero/index.d.ts +98 -38
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/mutators/accountMutators/accountMutators.d.ts +27 -9
- package/dist/zero/mutators/accountMutators/accountMutators.d.ts.map +1 -1
- package/dist/zero/mutators/accountMutators/accountMutators.js +30 -29
- package/dist/zero/mutators/draftMutators/draftMutators.d.ts +27 -9
- package/dist/zero/mutators/draftMutators/draftMutators.d.ts.map +1 -1
- package/dist/zero/mutators/draftMutators/draftMutators.js +28 -27
- package/dist/zero/mutators/index.d.ts +0 -1
- package/dist/zero/mutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/index.js +0 -1
- package/dist/zero/mutators/mutators.d.ts +90 -31
- package/dist/zero/mutators/mutators.d.ts.map +1 -1
- package/dist/zero/mutators/mutators.js +0 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts +29 -12
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +41 -40
- package/dist/zero/mutators/userMutators/userMutators.d.ts +9 -3
- package/dist/zero/mutators/userMutators/userMutators.d.ts.map +1 -1
- package/dist/zero/mutators/userMutators/userMutators.js +8 -7
- package/dist/zero/queries/getAccounts.d.ts +1 -1
- package/dist/zero/queries/getContacts.d.ts +1 -1
- package/dist/zero/queries/getDrafts.d.ts +1 -1
- package/dist/zero/queries/getThread.d.ts +1 -1
- package/dist/zero/queries/getThreadList.d.ts +1 -1
- package/dist/zero/queries/getThreads.d.ts +1 -1
- package/dist/zero/queries/getUser.d.ts +1 -1
- package/dist/zero/queries/index.d.ts +1 -1
- package/dist/zero/schema.d.ts +1 -1
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +0 -1
- package/package.json +2 -2
- package/dist/zero/mutators/defineMutator.d.ts +0 -16
- package/dist/zero/mutators/defineMutator.d.ts.map +0 -1
- package/dist/zero/mutators/defineMutator.js +0 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"crud.d.ts","sourceRoot":"","sources":["../../src/zero/crud.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA4B,CAAA"}
|
package/dist/zero/index.d.ts
CHANGED
|
@@ -11,7 +11,9 @@ export declare const marcoZero: {
|
|
|
11
11
|
color: string;
|
|
12
12
|
emailAddress: string;
|
|
13
13
|
id: string;
|
|
14
|
-
},
|
|
14
|
+
}, {
|
|
15
|
+
readonly userId: string;
|
|
16
|
+
}, unknown>;
|
|
15
17
|
createAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
16
18
|
accountId: string;
|
|
17
19
|
alias: {
|
|
@@ -26,19 +28,25 @@ export declare const marcoZero: {
|
|
|
26
28
|
id: string;
|
|
27
29
|
name: string | null;
|
|
28
30
|
};
|
|
29
|
-
},
|
|
31
|
+
}, {
|
|
32
|
+
readonly userId: string;
|
|
33
|
+
}, unknown>;
|
|
30
34
|
deleteAccount: import("@rocicorp/zero").MutatorDefinition<{
|
|
31
35
|
id: string;
|
|
32
36
|
}, {
|
|
33
37
|
id: string;
|
|
34
|
-
},
|
|
38
|
+
}, {
|
|
39
|
+
readonly userId: string;
|
|
40
|
+
}, unknown>;
|
|
35
41
|
deleteAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
36
42
|
accountId: string;
|
|
37
43
|
aliasId: string;
|
|
38
44
|
}, {
|
|
39
45
|
accountId: string;
|
|
40
46
|
aliasId: string;
|
|
41
|
-
},
|
|
47
|
+
}, {
|
|
48
|
+
readonly userId: string;
|
|
49
|
+
}, unknown>;
|
|
42
50
|
setAliasName: import("@rocicorp/zero").MutatorDefinition<{
|
|
43
51
|
accountId: string;
|
|
44
52
|
aliasId: string;
|
|
@@ -47,14 +55,18 @@ export declare const marcoZero: {
|
|
|
47
55
|
accountId: string;
|
|
48
56
|
aliasId: string;
|
|
49
57
|
displayName: string | null;
|
|
50
|
-
},
|
|
58
|
+
}, {
|
|
59
|
+
readonly userId: string;
|
|
60
|
+
}, unknown>;
|
|
51
61
|
setAliasPrimary: import("@rocicorp/zero").MutatorDefinition<{
|
|
52
62
|
accountId: string;
|
|
53
63
|
aliasId: string;
|
|
54
64
|
}, {
|
|
55
65
|
accountId: string;
|
|
56
66
|
aliasId: string;
|
|
57
|
-
},
|
|
67
|
+
}, {
|
|
68
|
+
readonly userId: string;
|
|
69
|
+
}, unknown>;
|
|
58
70
|
setConnectionConfigImapRaw: import("@rocicorp/zero").MutatorDefinition<{
|
|
59
71
|
connectionConfig: {
|
|
60
72
|
imapHost: string;
|
|
@@ -83,7 +95,9 @@ export declare const marcoZero: {
|
|
|
83
95
|
smtpUser: string;
|
|
84
96
|
};
|
|
85
97
|
id: string;
|
|
86
|
-
},
|
|
98
|
+
}, {
|
|
99
|
+
readonly userId: string;
|
|
100
|
+
}, unknown>;
|
|
87
101
|
setConnectionConfigOauth: import("@rocicorp/zero").MutatorDefinition<{
|
|
88
102
|
connectionConfig: {
|
|
89
103
|
code: string;
|
|
@@ -98,7 +112,9 @@ export declare const marcoZero: {
|
|
|
98
112
|
user: string;
|
|
99
113
|
};
|
|
100
114
|
id: string;
|
|
101
|
-
},
|
|
115
|
+
}, {
|
|
116
|
+
readonly userId: string;
|
|
117
|
+
}, unknown>;
|
|
102
118
|
setSettings: import("@rocicorp/zero").MutatorDefinition<{
|
|
103
119
|
color?: string | null | undefined;
|
|
104
120
|
displayName?: string | null | undefined;
|
|
@@ -107,7 +123,9 @@ export declare const marcoZero: {
|
|
|
107
123
|
color?: string | null | undefined;
|
|
108
124
|
displayName?: string | null | undefined;
|
|
109
125
|
id: string;
|
|
110
|
-
},
|
|
126
|
+
}, {
|
|
127
|
+
readonly userId: string;
|
|
128
|
+
}, unknown>;
|
|
111
129
|
};
|
|
112
130
|
readonly draft: {
|
|
113
131
|
cancelSend: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -116,7 +134,9 @@ export declare const marcoZero: {
|
|
|
116
134
|
}, {
|
|
117
135
|
id: string;
|
|
118
136
|
updatedAt: number;
|
|
119
|
-
},
|
|
137
|
+
}, {
|
|
138
|
+
readonly userId: string;
|
|
139
|
+
}, unknown>;
|
|
120
140
|
createAttachment: import("@rocicorp/zero").MutatorDefinition<{
|
|
121
141
|
attachment: {
|
|
122
142
|
fileName: string;
|
|
@@ -137,7 +157,9 @@ export declare const marcoZero: {
|
|
|
137
157
|
};
|
|
138
158
|
id: string;
|
|
139
159
|
updatedAt: number;
|
|
140
|
-
},
|
|
160
|
+
}, {
|
|
161
|
+
readonly userId: string;
|
|
162
|
+
}, unknown>;
|
|
141
163
|
createDraft: import("@rocicorp/zero").MutatorDefinition<{
|
|
142
164
|
accountId: string;
|
|
143
165
|
attachments: {
|
|
@@ -188,7 +210,9 @@ export declare const marcoZero: {
|
|
|
188
210
|
status: "DRAFT" | "SEND_REQUESTED" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
189
211
|
type: "NEW" | "REPLY" | "FORWARD";
|
|
190
212
|
updatedAt: number;
|
|
191
|
-
},
|
|
213
|
+
}, {
|
|
214
|
+
readonly userId: string;
|
|
215
|
+
}, unknown>;
|
|
192
216
|
deleteAttachment: import("@rocicorp/zero").MutatorDefinition<{
|
|
193
217
|
attachmentId: string;
|
|
194
218
|
id: string;
|
|
@@ -197,12 +221,16 @@ export declare const marcoZero: {
|
|
|
197
221
|
attachmentId: string;
|
|
198
222
|
id: string;
|
|
199
223
|
updatedAt: number;
|
|
200
|
-
},
|
|
224
|
+
}, {
|
|
225
|
+
readonly userId: string;
|
|
226
|
+
}, unknown>;
|
|
201
227
|
deleteDraft: import("@rocicorp/zero").MutatorDefinition<{
|
|
202
228
|
id: string;
|
|
203
229
|
}, {
|
|
204
230
|
id: string;
|
|
205
|
-
},
|
|
231
|
+
}, {
|
|
232
|
+
readonly userId: string;
|
|
233
|
+
}, unknown>;
|
|
206
234
|
scheduleSend: import("@rocicorp/zero").MutatorDefinition<{
|
|
207
235
|
id: string;
|
|
208
236
|
kind: "IMMEDIATE";
|
|
@@ -223,7 +251,9 @@ export declare const marcoZero: {
|
|
|
223
251
|
kind: "SCHEDULED";
|
|
224
252
|
scheduledFor: number;
|
|
225
253
|
updatedAt: number;
|
|
226
|
-
},
|
|
254
|
+
}, {
|
|
255
|
+
readonly userId: string;
|
|
256
|
+
}, unknown>;
|
|
227
257
|
setContent: import("@rocicorp/zero").MutatorDefinition<{
|
|
228
258
|
id: string;
|
|
229
259
|
patch: {
|
|
@@ -240,7 +270,9 @@ export declare const marcoZero: {
|
|
|
240
270
|
value: string;
|
|
241
271
|
}[];
|
|
242
272
|
updatedAt: number;
|
|
243
|
-
},
|
|
273
|
+
}, {
|
|
274
|
+
readonly userId: string;
|
|
275
|
+
}, unknown>;
|
|
244
276
|
setEnvelope: import("@rocicorp/zero").MutatorDefinition<{
|
|
245
277
|
envelope: {
|
|
246
278
|
bcc: string[];
|
|
@@ -259,7 +291,9 @@ export declare const marcoZero: {
|
|
|
259
291
|
};
|
|
260
292
|
id: string;
|
|
261
293
|
updatedAt: number;
|
|
262
|
-
},
|
|
294
|
+
}, {
|
|
295
|
+
readonly userId: string;
|
|
296
|
+
}, unknown>;
|
|
263
297
|
setFrom: import("@rocicorp/zero").MutatorDefinition<{
|
|
264
298
|
accountId: string;
|
|
265
299
|
aliasId: string;
|
|
@@ -274,7 +308,9 @@ export declare const marcoZero: {
|
|
|
274
308
|
fromName: string | null;
|
|
275
309
|
id: string;
|
|
276
310
|
updatedAt: number;
|
|
277
|
-
},
|
|
311
|
+
}, {
|
|
312
|
+
readonly userId: string;
|
|
313
|
+
}, unknown>;
|
|
278
314
|
};
|
|
279
315
|
readonly thread: {
|
|
280
316
|
addLabel: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -291,7 +327,9 @@ export declare const marcoZero: {
|
|
|
291
327
|
};
|
|
292
328
|
};
|
|
293
329
|
labelPath: string;
|
|
294
|
-
},
|
|
330
|
+
}, {
|
|
331
|
+
readonly userId: string;
|
|
332
|
+
}, unknown>;
|
|
295
333
|
delete: import("@rocicorp/zero").MutatorDefinition<{
|
|
296
334
|
accounts: {
|
|
297
335
|
[x: string]: {
|
|
@@ -304,7 +342,9 @@ export declare const marcoZero: {
|
|
|
304
342
|
threadIds: string[];
|
|
305
343
|
};
|
|
306
344
|
};
|
|
307
|
-
},
|
|
345
|
+
}, {
|
|
346
|
+
readonly userId: string;
|
|
347
|
+
}, unknown>;
|
|
308
348
|
removeLabel: import("@rocicorp/zero").MutatorDefinition<{
|
|
309
349
|
accounts: {
|
|
310
350
|
[x: string]: {
|
|
@@ -319,7 +359,9 @@ export declare const marcoZero: {
|
|
|
319
359
|
};
|
|
320
360
|
};
|
|
321
361
|
labelPath: string;
|
|
322
|
-
},
|
|
362
|
+
}, {
|
|
363
|
+
readonly userId: string;
|
|
364
|
+
}, unknown>;
|
|
323
365
|
setArchive: import("@rocicorp/zero").MutatorDefinition<{
|
|
324
366
|
accounts: {
|
|
325
367
|
[x: string]: {
|
|
@@ -332,7 +374,9 @@ export declare const marcoZero: {
|
|
|
332
374
|
threadIds: string[];
|
|
333
375
|
};
|
|
334
376
|
};
|
|
335
|
-
},
|
|
377
|
+
}, {
|
|
378
|
+
readonly userId: string;
|
|
379
|
+
}, unknown>;
|
|
336
380
|
setFlagged: import("@rocicorp/zero").MutatorDefinition<{
|
|
337
381
|
accounts: {
|
|
338
382
|
[x: string]: {
|
|
@@ -347,7 +391,9 @@ export declare const marcoZero: {
|
|
|
347
391
|
};
|
|
348
392
|
};
|
|
349
393
|
flagged: boolean;
|
|
350
|
-
},
|
|
394
|
+
}, {
|
|
395
|
+
readonly userId: string;
|
|
396
|
+
}, unknown>;
|
|
351
397
|
setInbox: import("@rocicorp/zero").MutatorDefinition<{
|
|
352
398
|
accounts: {
|
|
353
399
|
[x: string]: {
|
|
@@ -360,7 +406,9 @@ export declare const marcoZero: {
|
|
|
360
406
|
threadIds: string[];
|
|
361
407
|
};
|
|
362
408
|
};
|
|
363
|
-
},
|
|
409
|
+
}, {
|
|
410
|
+
readonly userId: string;
|
|
411
|
+
}, unknown>;
|
|
364
412
|
setSeen: import("@rocicorp/zero").MutatorDefinition<{
|
|
365
413
|
accounts: {
|
|
366
414
|
[x: string]: {
|
|
@@ -375,7 +423,9 @@ export declare const marcoZero: {
|
|
|
375
423
|
};
|
|
376
424
|
};
|
|
377
425
|
seen: boolean;
|
|
378
|
-
},
|
|
426
|
+
}, {
|
|
427
|
+
readonly userId: string;
|
|
428
|
+
}, unknown>;
|
|
379
429
|
setSpam: import("@rocicorp/zero").MutatorDefinition<{
|
|
380
430
|
accounts: {
|
|
381
431
|
[x: string]: {
|
|
@@ -388,7 +438,9 @@ export declare const marcoZero: {
|
|
|
388
438
|
threadIds: string[];
|
|
389
439
|
};
|
|
390
440
|
};
|
|
391
|
-
},
|
|
441
|
+
}, {
|
|
442
|
+
readonly userId: string;
|
|
443
|
+
}, unknown>;
|
|
392
444
|
setTrash: import("@rocicorp/zero").MutatorDefinition<{
|
|
393
445
|
accounts: {
|
|
394
446
|
[x: string]: {
|
|
@@ -401,7 +453,9 @@ export declare const marcoZero: {
|
|
|
401
453
|
threadIds: string[];
|
|
402
454
|
};
|
|
403
455
|
};
|
|
404
|
-
},
|
|
456
|
+
}, {
|
|
457
|
+
readonly userId: string;
|
|
458
|
+
}, unknown>;
|
|
405
459
|
};
|
|
406
460
|
readonly user: {
|
|
407
461
|
deleteSettingsPushNotificationToken: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -410,14 +464,18 @@ export declare const marcoZero: {
|
|
|
410
464
|
}, {
|
|
411
465
|
id: string;
|
|
412
466
|
token: string;
|
|
413
|
-
},
|
|
467
|
+
}, {
|
|
468
|
+
readonly userId: string;
|
|
469
|
+
}, unknown>;
|
|
414
470
|
setSettingsName: import("@rocicorp/zero").MutatorDefinition<{
|
|
415
471
|
id: string;
|
|
416
472
|
name: string | null;
|
|
417
473
|
}, {
|
|
418
474
|
id: string;
|
|
419
475
|
name: string | null;
|
|
420
|
-
},
|
|
476
|
+
}, {
|
|
477
|
+
readonly userId: string;
|
|
478
|
+
}, unknown>;
|
|
421
479
|
setSettingsPushNotificationToken: import("@rocicorp/zero").MutatorDefinition<{
|
|
422
480
|
id: string;
|
|
423
481
|
pushNotificationToken: {
|
|
@@ -432,7 +490,9 @@ export declare const marcoZero: {
|
|
|
432
490
|
id: string;
|
|
433
491
|
token: string;
|
|
434
492
|
};
|
|
435
|
-
},
|
|
493
|
+
}, {
|
|
494
|
+
readonly userId: string;
|
|
495
|
+
}, unknown>;
|
|
436
496
|
};
|
|
437
497
|
}, import("@rocicorp/zero").Schema>;
|
|
438
498
|
readonly queries: {
|
|
@@ -1457,7 +1517,7 @@ export declare const marcoZero: {
|
|
|
1457
1517
|
};
|
|
1458
1518
|
};
|
|
1459
1519
|
enableLegacyQueries: boolean | undefined;
|
|
1460
|
-
enableLegacyMutators:
|
|
1520
|
+
enableLegacyMutators: boolean | undefined;
|
|
1461
1521
|
}, {
|
|
1462
1522
|
readonly color: string;
|
|
1463
1523
|
readonly displayName: string | null;
|
|
@@ -2523,7 +2583,7 @@ export declare const marcoZero: {
|
|
|
2523
2583
|
};
|
|
2524
2584
|
};
|
|
2525
2585
|
enableLegacyQueries: boolean | undefined;
|
|
2526
|
-
enableLegacyMutators:
|
|
2586
|
+
enableLegacyMutators: boolean | undefined;
|
|
2527
2587
|
}, {
|
|
2528
2588
|
readonly emailAddress: string;
|
|
2529
2589
|
readonly id: string;
|
|
@@ -3555,7 +3615,7 @@ export declare const marcoZero: {
|
|
|
3555
3615
|
};
|
|
3556
3616
|
};
|
|
3557
3617
|
enableLegacyQueries: boolean | undefined;
|
|
3558
|
-
enableLegacyMutators:
|
|
3618
|
+
enableLegacyMutators: boolean | undefined;
|
|
3559
3619
|
}, {
|
|
3560
3620
|
readonly accountId: string;
|
|
3561
3621
|
readonly body: {
|
|
@@ -4609,7 +4669,7 @@ export declare const marcoZero: {
|
|
|
4609
4669
|
};
|
|
4610
4670
|
};
|
|
4611
4671
|
enableLegacyQueries: boolean | undefined;
|
|
4612
|
-
enableLegacyMutators:
|
|
4672
|
+
enableLegacyMutators: boolean | undefined;
|
|
4613
4673
|
}, ({
|
|
4614
4674
|
readonly accountId: string;
|
|
4615
4675
|
readonly flagged: boolean;
|
|
@@ -5686,7 +5746,7 @@ export declare const marcoZero: {
|
|
|
5686
5746
|
};
|
|
5687
5747
|
};
|
|
5688
5748
|
enableLegacyQueries: boolean | undefined;
|
|
5689
|
-
enableLegacyMutators:
|
|
5749
|
+
enableLegacyMutators: boolean | undefined;
|
|
5690
5750
|
}, {
|
|
5691
5751
|
readonly labelId: string;
|
|
5692
5752
|
readonly latestMessageDate: number;
|
|
@@ -6742,7 +6802,7 @@ export declare const marcoZero: {
|
|
|
6742
6802
|
};
|
|
6743
6803
|
};
|
|
6744
6804
|
enableLegacyQueries: boolean | undefined;
|
|
6745
|
-
enableLegacyMutators:
|
|
6805
|
+
enableLegacyMutators: boolean | undefined;
|
|
6746
6806
|
}, {
|
|
6747
6807
|
readonly labelId: string;
|
|
6748
6808
|
readonly latestMessageDate: number;
|
|
@@ -7814,7 +7874,7 @@ export declare const marcoZero: {
|
|
|
7814
7874
|
};
|
|
7815
7875
|
};
|
|
7816
7876
|
enableLegacyQueries: boolean | undefined;
|
|
7817
|
-
enableLegacyMutators:
|
|
7877
|
+
enableLegacyMutators: boolean | undefined;
|
|
7818
7878
|
}, {
|
|
7819
7879
|
readonly id: string;
|
|
7820
7880
|
readonly name: string | null;
|
|
@@ -8887,7 +8947,7 @@ export declare const marcoZero: {
|
|
|
8887
8947
|
};
|
|
8888
8948
|
};
|
|
8889
8949
|
enableLegacyQueries: boolean | undefined;
|
|
8890
|
-
enableLegacyMutators:
|
|
8950
|
+
enableLegacyMutators: boolean | undefined;
|
|
8891
8951
|
};
|
|
8892
8952
|
readonly tables: {
|
|
8893
8953
|
readonly account: import("@rocicorp/zero").TableBuilderWithColumns<{
|
package/dist/zero/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/zero/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAQhB,CAAC;mBACA,CAAC;oBAGN,CAAF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAGK,CAAC;kBAAgB,CAAC;0BAAuB,CAAC;4BACzB,CAAC;oBAAmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBADzC,CAAC;kBAAgB,CAAC;0BAAuB,CAAC;4BACzB,CAAC;oBAAmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAH9B,CAAA;AAEV,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/zero/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAQhB,CAAC;mBACA,CAAC;oBAGN,CAAF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAGK,CAAC;kBAAgB,CAAC;0BAAuB,CAAC;4BACzB,CAAC;oBAAmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBADzC,CAAC;kBAAgB,CAAC;0BAAuB,CAAC;4BACzB,CAAC;oBAAmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAH9B,CAAA;AAEV,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA"}
|
|
@@ -9,7 +9,9 @@ export declare const accountMutators: {
|
|
|
9
9
|
color: string;
|
|
10
10
|
emailAddress: string;
|
|
11
11
|
id: string;
|
|
12
|
-
},
|
|
12
|
+
}, {
|
|
13
|
+
readonly userId: string;
|
|
14
|
+
}, unknown>;
|
|
13
15
|
createAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
14
16
|
accountId: string;
|
|
15
17
|
alias: {
|
|
@@ -24,19 +26,25 @@ export declare const accountMutators: {
|
|
|
24
26
|
id: string;
|
|
25
27
|
name: string | null;
|
|
26
28
|
};
|
|
27
|
-
},
|
|
29
|
+
}, {
|
|
30
|
+
readonly userId: string;
|
|
31
|
+
}, unknown>;
|
|
28
32
|
deleteAccount: import("@rocicorp/zero").MutatorDefinition<{
|
|
29
33
|
id: string;
|
|
30
34
|
}, {
|
|
31
35
|
id: string;
|
|
32
|
-
},
|
|
36
|
+
}, {
|
|
37
|
+
readonly userId: string;
|
|
38
|
+
}, unknown>;
|
|
33
39
|
deleteAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
34
40
|
accountId: string;
|
|
35
41
|
aliasId: string;
|
|
36
42
|
}, {
|
|
37
43
|
accountId: string;
|
|
38
44
|
aliasId: string;
|
|
39
|
-
},
|
|
45
|
+
}, {
|
|
46
|
+
readonly userId: string;
|
|
47
|
+
}, unknown>;
|
|
40
48
|
setAliasName: import("@rocicorp/zero").MutatorDefinition<{
|
|
41
49
|
accountId: string;
|
|
42
50
|
aliasId: string;
|
|
@@ -45,14 +53,18 @@ export declare const accountMutators: {
|
|
|
45
53
|
accountId: string;
|
|
46
54
|
aliasId: string;
|
|
47
55
|
displayName: string | null;
|
|
48
|
-
},
|
|
56
|
+
}, {
|
|
57
|
+
readonly userId: string;
|
|
58
|
+
}, unknown>;
|
|
49
59
|
setAliasPrimary: import("@rocicorp/zero").MutatorDefinition<{
|
|
50
60
|
accountId: string;
|
|
51
61
|
aliasId: string;
|
|
52
62
|
}, {
|
|
53
63
|
accountId: string;
|
|
54
64
|
aliasId: string;
|
|
55
|
-
},
|
|
65
|
+
}, {
|
|
66
|
+
readonly userId: string;
|
|
67
|
+
}, unknown>;
|
|
56
68
|
setConnectionConfigImapRaw: import("@rocicorp/zero").MutatorDefinition<{
|
|
57
69
|
connectionConfig: {
|
|
58
70
|
imapHost: string;
|
|
@@ -81,7 +93,9 @@ export declare const accountMutators: {
|
|
|
81
93
|
smtpUser: string;
|
|
82
94
|
};
|
|
83
95
|
id: string;
|
|
84
|
-
},
|
|
96
|
+
}, {
|
|
97
|
+
readonly userId: string;
|
|
98
|
+
}, unknown>;
|
|
85
99
|
setConnectionConfigOauth: import("@rocicorp/zero").MutatorDefinition<{
|
|
86
100
|
connectionConfig: {
|
|
87
101
|
code: string;
|
|
@@ -96,7 +110,9 @@ export declare const accountMutators: {
|
|
|
96
110
|
user: string;
|
|
97
111
|
};
|
|
98
112
|
id: string;
|
|
99
|
-
},
|
|
113
|
+
}, {
|
|
114
|
+
readonly userId: string;
|
|
115
|
+
}, unknown>;
|
|
100
116
|
setSettings: import("@rocicorp/zero").MutatorDefinition<{
|
|
101
117
|
color?: string | null | undefined;
|
|
102
118
|
displayName?: string | null | undefined;
|
|
@@ -105,6 +121,8 @@ export declare const accountMutators: {
|
|
|
105
121
|
color?: string | null | undefined;
|
|
106
122
|
displayName?: string | null | undefined;
|
|
107
123
|
id: string;
|
|
108
|
-
},
|
|
124
|
+
}, {
|
|
125
|
+
readonly userId: string;
|
|
126
|
+
}, unknown>;
|
|
109
127
|
};
|
|
110
128
|
//# sourceMappingURL=accountMutators.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountMutators.d.ts","sourceRoot":"","sources":["../../../../src/zero/mutators/accountMutators/accountMutators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"accountMutators.d.ts","sourceRoot":"","sources":["../../../../src/zero/mutators/accountMutators/accountMutators.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6L3B,CAAA"}
|