@marcoappio/marco-config 2.0.493 → 2.0.495
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 +322 -38
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +2 -1
- package/dist/zero/mutators/accountMutators/accountMutators.d.ts +88 -9
- package/dist/zero/mutators/accountMutators/accountMutators.d.ts.map +1 -1
- package/dist/zero/mutators/accountMutators/accountMutators.js +100 -99
- package/dist/zero/mutators/accountMutators/index.d.ts +1 -1
- package/dist/zero/mutators/accountMutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/accountMutators/index.js +1 -1
- package/dist/zero/mutators/draftMutators/draftMutators.d.ts +121 -9
- package/dist/zero/mutators/draftMutators/draftMutators.d.ts.map +1 -1
- package/dist/zero/mutators/draftMutators/draftMutators.js +97 -97
- package/dist/zero/mutators/draftMutators/index.d.ts +1 -1
- package/dist/zero/mutators/draftMutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/draftMutators/index.js +1 -1
- package/dist/zero/mutators/index.d.ts +224 -1
- package/dist/zero/mutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/index.js +10 -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/index.d.ts +1 -1
- package/dist/zero/mutators/threadMutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/index.js +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts +81 -12
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +82 -70
- package/dist/zero/mutators/userMutators/index.d.ts +1 -1
- package/dist/zero/mutators/userMutators/index.d.ts.map +1 -1
- package/dist/zero/mutators/userMutators/index.js +1 -1
- package/dist/zero/mutators/userMutators/userMutators.d.ts +28 -3
- package/dist/zero/mutators/userMutators/userMutators.d.ts.map +1 -1
- package/dist/zero/mutators/userMutators/userMutators.js +29 -29
- 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
package/dist/zero/index.d.ts
CHANGED
|
@@ -1,4 +1,228 @@
|
|
|
1
1
|
export declare const marcoZero: {
|
|
2
|
+
readonly mutatorSchemas: {
|
|
3
|
+
account: {
|
|
4
|
+
createAccount: import("valibot").ObjectSchema<{
|
|
5
|
+
readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
6
|
+
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
8
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
9
|
+
}, undefined>;
|
|
10
|
+
createAlias: import("valibot").ObjectSchema<{
|
|
11
|
+
readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
12
|
+
readonly alias: import("valibot").ObjectSchema<{
|
|
13
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
14
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
15
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
16
|
+
}, undefined>;
|
|
17
|
+
}, undefined>;
|
|
18
|
+
deleteAccount: import("valibot").ObjectSchema<{
|
|
19
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
20
|
+
}, undefined>;
|
|
21
|
+
deleteAlias: import("valibot").ObjectSchema<{
|
|
22
|
+
readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
23
|
+
readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
24
|
+
}, undefined>;
|
|
25
|
+
setAliasName: import("valibot").ObjectSchema<{
|
|
26
|
+
readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
27
|
+
readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
28
|
+
readonly displayName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
29
|
+
}, undefined>;
|
|
30
|
+
setAliasPrimary: import("valibot").ObjectSchema<{
|
|
31
|
+
readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
32
|
+
readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
33
|
+
}, undefined>;
|
|
34
|
+
setConnectionConfigImapRaw: import("valibot").ObjectSchema<{
|
|
35
|
+
readonly connectionConfig: import("valibot").ObjectSchema<{
|
|
36
|
+
readonly imapHost: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
37
|
+
readonly imapPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
38
|
+
readonly imapPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
|
|
39
|
+
readonly imapSocketType: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"STARTTLS", undefined>, import("valibot").LiteralSchema<"SSL", undefined>], undefined>;
|
|
40
|
+
readonly imapUser: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
41
|
+
readonly smtpHost: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
42
|
+
readonly smtpPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
43
|
+
readonly smtpPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
|
|
44
|
+
readonly smtpSocketType: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"STARTTLS", undefined>, import("valibot").LiteralSchema<"SSL", undefined>], undefined>;
|
|
45
|
+
readonly smtpUser: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
46
|
+
}, undefined>;
|
|
47
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
48
|
+
}, undefined>;
|
|
49
|
+
setConnectionConfigOauth: import("valibot").ObjectSchema<{
|
|
50
|
+
readonly connectionConfig: import("valibot").ObjectSchema<{
|
|
51
|
+
readonly code: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
52
|
+
readonly provider: import("valibot").PicklistSchema<readonly ["GOOGLE", "OUTLOOK"], undefined>;
|
|
53
|
+
readonly user: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
54
|
+
}, undefined>;
|
|
55
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
56
|
+
}, undefined>;
|
|
57
|
+
setSettings: import("valibot").ObjectSchema<{
|
|
58
|
+
readonly color: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
59
|
+
readonly displayName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
60
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
61
|
+
}, undefined>;
|
|
62
|
+
};
|
|
63
|
+
draft: {
|
|
64
|
+
cancelSend: import("valibot").ObjectSchema<{
|
|
65
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
66
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
67
|
+
}, undefined>;
|
|
68
|
+
createAttachment: import("valibot").ObjectSchema<{
|
|
69
|
+
readonly attachment: import("valibot").ObjectSchema<{
|
|
70
|
+
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
71
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
72
|
+
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
73
|
+
readonly status: import("valibot").PicklistSchema<readonly ["PENDING", "COMPLETE", "FAILED"], undefined>;
|
|
74
|
+
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
75
|
+
}, undefined>;
|
|
76
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
77
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
78
|
+
}, undefined>;
|
|
79
|
+
deleteAttachment: import("valibot").ObjectSchema<{
|
|
80
|
+
readonly attachmentId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
81
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
82
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
83
|
+
}, undefined>;
|
|
84
|
+
deleteDraft: import("valibot").ObjectSchema<{
|
|
85
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
86
|
+
}, undefined>;
|
|
87
|
+
setContent: import("valibot").ObjectSchema<{
|
|
88
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
89
|
+
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
90
|
+
readonly index: import("valibot").NumberSchema<undefined>;
|
|
91
|
+
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
92
|
+
readonly value: import("valibot").StringSchema<undefined>;
|
|
93
|
+
}, undefined>, undefined>;
|
|
94
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
95
|
+
}, undefined>;
|
|
96
|
+
setEnvelope: import("valibot").ObjectSchema<{
|
|
97
|
+
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
98
|
+
readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
99
|
+
readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
100
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
|
|
101
|
+
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
102
|
+
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
103
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
104
|
+
readonly entries: Omit<{
|
|
105
|
+
readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
106
|
+
readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
107
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
|
|
108
|
+
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
109
|
+
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
110
|
+
}, "content">;
|
|
111
|
+
readonly '~standard': import("valibot").StandardProps<{
|
|
112
|
+
bcc: string[];
|
|
113
|
+
cc: string[];
|
|
114
|
+
to: string[];
|
|
115
|
+
subject: string | null;
|
|
116
|
+
}, {
|
|
117
|
+
bcc: string[];
|
|
118
|
+
cc: string[];
|
|
119
|
+
to: string[];
|
|
120
|
+
subject: string | null;
|
|
121
|
+
}>;
|
|
122
|
+
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
123
|
+
bcc: string[];
|
|
124
|
+
cc: string[];
|
|
125
|
+
to: string[];
|
|
126
|
+
subject: string | null;
|
|
127
|
+
}, import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue | import("valibot").ArrayIssue | import("valibot").NonOptionalIssue>;
|
|
128
|
+
readonly '~types'?: {
|
|
129
|
+
readonly input: {
|
|
130
|
+
bcc: string[];
|
|
131
|
+
cc: string[];
|
|
132
|
+
to: string[];
|
|
133
|
+
subject: string | null;
|
|
134
|
+
};
|
|
135
|
+
readonly output: {
|
|
136
|
+
bcc: string[];
|
|
137
|
+
cc: string[];
|
|
138
|
+
to: string[];
|
|
139
|
+
subject: string | null;
|
|
140
|
+
};
|
|
141
|
+
readonly issue: import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue | import("valibot").ArrayIssue | import("valibot").NonOptionalIssue;
|
|
142
|
+
} | undefined;
|
|
143
|
+
};
|
|
144
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
145
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
146
|
+
}, undefined>;
|
|
147
|
+
setFrom: import("valibot").ObjectSchema<{
|
|
148
|
+
readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
149
|
+
readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
150
|
+
readonly from: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
151
|
+
readonly fromName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
152
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
153
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
154
|
+
}, undefined>;
|
|
155
|
+
};
|
|
156
|
+
thread: {
|
|
157
|
+
addLabel: import("valibot").ObjectSchema<{
|
|
158
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
159
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
160
|
+
}, undefined>, undefined>;
|
|
161
|
+
readonly labelPath: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
162
|
+
}, undefined>;
|
|
163
|
+
delete: import("valibot").ObjectSchema<{
|
|
164
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
165
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
166
|
+
}, undefined>, undefined>;
|
|
167
|
+
}, undefined>;
|
|
168
|
+
removeLabel: import("valibot").ObjectSchema<{
|
|
169
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
170
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
171
|
+
}, undefined>, undefined>;
|
|
172
|
+
readonly labelPath: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
173
|
+
}, undefined>;
|
|
174
|
+
setArchive: import("valibot").ObjectSchema<{
|
|
175
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
176
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
177
|
+
}, undefined>, undefined>;
|
|
178
|
+
}, undefined>;
|
|
179
|
+
setFlagged: import("valibot").ObjectSchema<{
|
|
180
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
181
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
182
|
+
}, undefined>, undefined>;
|
|
183
|
+
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
184
|
+
}, undefined>;
|
|
185
|
+
setInbox: import("valibot").ObjectSchema<{
|
|
186
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
187
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
188
|
+
}, undefined>, undefined>;
|
|
189
|
+
}, undefined>;
|
|
190
|
+
setSeen: import("valibot").ObjectSchema<{
|
|
191
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
192
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
193
|
+
}, undefined>, undefined>;
|
|
194
|
+
readonly seen: import("valibot").BooleanSchema<undefined>;
|
|
195
|
+
}, undefined>;
|
|
196
|
+
setSpam: import("valibot").ObjectSchema<{
|
|
197
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
198
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
199
|
+
}, undefined>, undefined>;
|
|
200
|
+
}, undefined>;
|
|
201
|
+
setTrash: import("valibot").ObjectSchema<{
|
|
202
|
+
readonly accounts: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
|
|
203
|
+
readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
204
|
+
}, undefined>, undefined>;
|
|
205
|
+
}, undefined>;
|
|
206
|
+
};
|
|
207
|
+
user: {
|
|
208
|
+
deleteSettingsPushNotificationToken: import("valibot").ObjectSchema<{
|
|
209
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
210
|
+
readonly token: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
211
|
+
}, undefined>;
|
|
212
|
+
setSettingsName: import("valibot").ObjectSchema<{
|
|
213
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
214
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
215
|
+
}, undefined>;
|
|
216
|
+
setSettingsPushNotificationToken: import("valibot").ObjectSchema<{
|
|
217
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
218
|
+
readonly pushNotificationToken: import("valibot").ObjectSchema<{
|
|
219
|
+
readonly createdAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
220
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
221
|
+
readonly token: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
222
|
+
}, undefined>;
|
|
223
|
+
}, undefined>;
|
|
224
|
+
};
|
|
225
|
+
};
|
|
2
226
|
readonly mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
3
227
|
readonly account: {
|
|
4
228
|
createAccount: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -11,7 +235,9 @@ export declare const marcoZero: {
|
|
|
11
235
|
color: string;
|
|
12
236
|
emailAddress: string;
|
|
13
237
|
id: string;
|
|
14
|
-
},
|
|
238
|
+
}, {
|
|
239
|
+
readonly userId: string;
|
|
240
|
+
}, unknown>;
|
|
15
241
|
createAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
16
242
|
accountId: string;
|
|
17
243
|
alias: {
|
|
@@ -26,19 +252,25 @@ export declare const marcoZero: {
|
|
|
26
252
|
id: string;
|
|
27
253
|
name: string | null;
|
|
28
254
|
};
|
|
29
|
-
},
|
|
255
|
+
}, {
|
|
256
|
+
readonly userId: string;
|
|
257
|
+
}, unknown>;
|
|
30
258
|
deleteAccount: import("@rocicorp/zero").MutatorDefinition<{
|
|
31
259
|
id: string;
|
|
32
260
|
}, {
|
|
33
261
|
id: string;
|
|
34
|
-
},
|
|
262
|
+
}, {
|
|
263
|
+
readonly userId: string;
|
|
264
|
+
}, unknown>;
|
|
35
265
|
deleteAlias: import("@rocicorp/zero").MutatorDefinition<{
|
|
36
266
|
accountId: string;
|
|
37
267
|
aliasId: string;
|
|
38
268
|
}, {
|
|
39
269
|
accountId: string;
|
|
40
270
|
aliasId: string;
|
|
41
|
-
},
|
|
271
|
+
}, {
|
|
272
|
+
readonly userId: string;
|
|
273
|
+
}, unknown>;
|
|
42
274
|
setAliasName: import("@rocicorp/zero").MutatorDefinition<{
|
|
43
275
|
accountId: string;
|
|
44
276
|
aliasId: string;
|
|
@@ -47,14 +279,18 @@ export declare const marcoZero: {
|
|
|
47
279
|
accountId: string;
|
|
48
280
|
aliasId: string;
|
|
49
281
|
displayName: string | null;
|
|
50
|
-
},
|
|
282
|
+
}, {
|
|
283
|
+
readonly userId: string;
|
|
284
|
+
}, unknown>;
|
|
51
285
|
setAliasPrimary: import("@rocicorp/zero").MutatorDefinition<{
|
|
52
286
|
accountId: string;
|
|
53
287
|
aliasId: string;
|
|
54
288
|
}, {
|
|
55
289
|
accountId: string;
|
|
56
290
|
aliasId: string;
|
|
57
|
-
},
|
|
291
|
+
}, {
|
|
292
|
+
readonly userId: string;
|
|
293
|
+
}, unknown>;
|
|
58
294
|
setConnectionConfigImapRaw: import("@rocicorp/zero").MutatorDefinition<{
|
|
59
295
|
connectionConfig: {
|
|
60
296
|
imapHost: string;
|
|
@@ -83,7 +319,9 @@ export declare const marcoZero: {
|
|
|
83
319
|
smtpUser: string;
|
|
84
320
|
};
|
|
85
321
|
id: string;
|
|
86
|
-
},
|
|
322
|
+
}, {
|
|
323
|
+
readonly userId: string;
|
|
324
|
+
}, unknown>;
|
|
87
325
|
setConnectionConfigOauth: import("@rocicorp/zero").MutatorDefinition<{
|
|
88
326
|
connectionConfig: {
|
|
89
327
|
code: string;
|
|
@@ -98,7 +336,9 @@ export declare const marcoZero: {
|
|
|
98
336
|
user: string;
|
|
99
337
|
};
|
|
100
338
|
id: string;
|
|
101
|
-
},
|
|
339
|
+
}, {
|
|
340
|
+
readonly userId: string;
|
|
341
|
+
}, unknown>;
|
|
102
342
|
setSettings: import("@rocicorp/zero").MutatorDefinition<{
|
|
103
343
|
color?: string | null | undefined;
|
|
104
344
|
displayName?: string | null | undefined;
|
|
@@ -107,7 +347,9 @@ export declare const marcoZero: {
|
|
|
107
347
|
color?: string | null | undefined;
|
|
108
348
|
displayName?: string | null | undefined;
|
|
109
349
|
id: string;
|
|
110
|
-
},
|
|
350
|
+
}, {
|
|
351
|
+
readonly userId: string;
|
|
352
|
+
}, unknown>;
|
|
111
353
|
};
|
|
112
354
|
readonly draft: {
|
|
113
355
|
cancelSend: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -116,7 +358,9 @@ export declare const marcoZero: {
|
|
|
116
358
|
}, {
|
|
117
359
|
id: string;
|
|
118
360
|
updatedAt: number;
|
|
119
|
-
},
|
|
361
|
+
}, {
|
|
362
|
+
readonly userId: string;
|
|
363
|
+
}, unknown>;
|
|
120
364
|
createAttachment: import("@rocicorp/zero").MutatorDefinition<{
|
|
121
365
|
attachment: {
|
|
122
366
|
fileName: string;
|
|
@@ -137,7 +381,9 @@ export declare const marcoZero: {
|
|
|
137
381
|
};
|
|
138
382
|
id: string;
|
|
139
383
|
updatedAt: number;
|
|
140
|
-
},
|
|
384
|
+
}, {
|
|
385
|
+
readonly userId: string;
|
|
386
|
+
}, unknown>;
|
|
141
387
|
createDraft: import("@rocicorp/zero").MutatorDefinition<{
|
|
142
388
|
accountId: string;
|
|
143
389
|
attachments: {
|
|
@@ -188,7 +434,9 @@ export declare const marcoZero: {
|
|
|
188
434
|
status: "DRAFT" | "SEND_REQUESTED" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
189
435
|
type: "NEW" | "REPLY" | "FORWARD";
|
|
190
436
|
updatedAt: number;
|
|
191
|
-
},
|
|
437
|
+
}, {
|
|
438
|
+
readonly userId: string;
|
|
439
|
+
}, unknown>;
|
|
192
440
|
deleteAttachment: import("@rocicorp/zero").MutatorDefinition<{
|
|
193
441
|
attachmentId: string;
|
|
194
442
|
id: string;
|
|
@@ -197,12 +445,16 @@ export declare const marcoZero: {
|
|
|
197
445
|
attachmentId: string;
|
|
198
446
|
id: string;
|
|
199
447
|
updatedAt: number;
|
|
200
|
-
},
|
|
448
|
+
}, {
|
|
449
|
+
readonly userId: string;
|
|
450
|
+
}, unknown>;
|
|
201
451
|
deleteDraft: import("@rocicorp/zero").MutatorDefinition<{
|
|
202
452
|
id: string;
|
|
203
453
|
}, {
|
|
204
454
|
id: string;
|
|
205
|
-
},
|
|
455
|
+
}, {
|
|
456
|
+
readonly userId: string;
|
|
457
|
+
}, unknown>;
|
|
206
458
|
scheduleSend: import("@rocicorp/zero").MutatorDefinition<{
|
|
207
459
|
id: string;
|
|
208
460
|
kind: "IMMEDIATE";
|
|
@@ -223,7 +475,9 @@ export declare const marcoZero: {
|
|
|
223
475
|
kind: "SCHEDULED";
|
|
224
476
|
scheduledFor: number;
|
|
225
477
|
updatedAt: number;
|
|
226
|
-
},
|
|
478
|
+
}, {
|
|
479
|
+
readonly userId: string;
|
|
480
|
+
}, unknown>;
|
|
227
481
|
setContent: import("@rocicorp/zero").MutatorDefinition<{
|
|
228
482
|
id: string;
|
|
229
483
|
patch: {
|
|
@@ -240,7 +494,9 @@ export declare const marcoZero: {
|
|
|
240
494
|
value: string;
|
|
241
495
|
}[];
|
|
242
496
|
updatedAt: number;
|
|
243
|
-
},
|
|
497
|
+
}, {
|
|
498
|
+
readonly userId: string;
|
|
499
|
+
}, unknown>;
|
|
244
500
|
setEnvelope: import("@rocicorp/zero").MutatorDefinition<{
|
|
245
501
|
envelope: {
|
|
246
502
|
bcc: string[];
|
|
@@ -259,7 +515,9 @@ export declare const marcoZero: {
|
|
|
259
515
|
};
|
|
260
516
|
id: string;
|
|
261
517
|
updatedAt: number;
|
|
262
|
-
},
|
|
518
|
+
}, {
|
|
519
|
+
readonly userId: string;
|
|
520
|
+
}, unknown>;
|
|
263
521
|
setFrom: import("@rocicorp/zero").MutatorDefinition<{
|
|
264
522
|
accountId: string;
|
|
265
523
|
aliasId: string;
|
|
@@ -274,7 +532,9 @@ export declare const marcoZero: {
|
|
|
274
532
|
fromName: string | null;
|
|
275
533
|
id: string;
|
|
276
534
|
updatedAt: number;
|
|
277
|
-
},
|
|
535
|
+
}, {
|
|
536
|
+
readonly userId: string;
|
|
537
|
+
}, unknown>;
|
|
278
538
|
};
|
|
279
539
|
readonly thread: {
|
|
280
540
|
addLabel: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -291,7 +551,9 @@ export declare const marcoZero: {
|
|
|
291
551
|
};
|
|
292
552
|
};
|
|
293
553
|
labelPath: string;
|
|
294
|
-
},
|
|
554
|
+
}, {
|
|
555
|
+
readonly userId: string;
|
|
556
|
+
}, unknown>;
|
|
295
557
|
delete: import("@rocicorp/zero").MutatorDefinition<{
|
|
296
558
|
accounts: {
|
|
297
559
|
[x: string]: {
|
|
@@ -304,7 +566,9 @@ export declare const marcoZero: {
|
|
|
304
566
|
threadIds: string[];
|
|
305
567
|
};
|
|
306
568
|
};
|
|
307
|
-
},
|
|
569
|
+
}, {
|
|
570
|
+
readonly userId: string;
|
|
571
|
+
}, unknown>;
|
|
308
572
|
removeLabel: import("@rocicorp/zero").MutatorDefinition<{
|
|
309
573
|
accounts: {
|
|
310
574
|
[x: string]: {
|
|
@@ -319,7 +583,9 @@ export declare const marcoZero: {
|
|
|
319
583
|
};
|
|
320
584
|
};
|
|
321
585
|
labelPath: string;
|
|
322
|
-
},
|
|
586
|
+
}, {
|
|
587
|
+
readonly userId: string;
|
|
588
|
+
}, unknown>;
|
|
323
589
|
setArchive: import("@rocicorp/zero").MutatorDefinition<{
|
|
324
590
|
accounts: {
|
|
325
591
|
[x: string]: {
|
|
@@ -332,7 +598,9 @@ export declare const marcoZero: {
|
|
|
332
598
|
threadIds: string[];
|
|
333
599
|
};
|
|
334
600
|
};
|
|
335
|
-
},
|
|
601
|
+
}, {
|
|
602
|
+
readonly userId: string;
|
|
603
|
+
}, unknown>;
|
|
336
604
|
setFlagged: import("@rocicorp/zero").MutatorDefinition<{
|
|
337
605
|
accounts: {
|
|
338
606
|
[x: string]: {
|
|
@@ -347,7 +615,9 @@ export declare const marcoZero: {
|
|
|
347
615
|
};
|
|
348
616
|
};
|
|
349
617
|
flagged: boolean;
|
|
350
|
-
},
|
|
618
|
+
}, {
|
|
619
|
+
readonly userId: string;
|
|
620
|
+
}, unknown>;
|
|
351
621
|
setInbox: import("@rocicorp/zero").MutatorDefinition<{
|
|
352
622
|
accounts: {
|
|
353
623
|
[x: string]: {
|
|
@@ -360,7 +630,9 @@ export declare const marcoZero: {
|
|
|
360
630
|
threadIds: string[];
|
|
361
631
|
};
|
|
362
632
|
};
|
|
363
|
-
},
|
|
633
|
+
}, {
|
|
634
|
+
readonly userId: string;
|
|
635
|
+
}, unknown>;
|
|
364
636
|
setSeen: import("@rocicorp/zero").MutatorDefinition<{
|
|
365
637
|
accounts: {
|
|
366
638
|
[x: string]: {
|
|
@@ -375,7 +647,9 @@ export declare const marcoZero: {
|
|
|
375
647
|
};
|
|
376
648
|
};
|
|
377
649
|
seen: boolean;
|
|
378
|
-
},
|
|
650
|
+
}, {
|
|
651
|
+
readonly userId: string;
|
|
652
|
+
}, unknown>;
|
|
379
653
|
setSpam: import("@rocicorp/zero").MutatorDefinition<{
|
|
380
654
|
accounts: {
|
|
381
655
|
[x: string]: {
|
|
@@ -388,7 +662,9 @@ export declare const marcoZero: {
|
|
|
388
662
|
threadIds: string[];
|
|
389
663
|
};
|
|
390
664
|
};
|
|
391
|
-
},
|
|
665
|
+
}, {
|
|
666
|
+
readonly userId: string;
|
|
667
|
+
}, unknown>;
|
|
392
668
|
setTrash: import("@rocicorp/zero").MutatorDefinition<{
|
|
393
669
|
accounts: {
|
|
394
670
|
[x: string]: {
|
|
@@ -401,7 +677,9 @@ export declare const marcoZero: {
|
|
|
401
677
|
threadIds: string[];
|
|
402
678
|
};
|
|
403
679
|
};
|
|
404
|
-
},
|
|
680
|
+
}, {
|
|
681
|
+
readonly userId: string;
|
|
682
|
+
}, unknown>;
|
|
405
683
|
};
|
|
406
684
|
readonly user: {
|
|
407
685
|
deleteSettingsPushNotificationToken: import("@rocicorp/zero").MutatorDefinition<{
|
|
@@ -410,14 +688,18 @@ export declare const marcoZero: {
|
|
|
410
688
|
}, {
|
|
411
689
|
id: string;
|
|
412
690
|
token: string;
|
|
413
|
-
},
|
|
691
|
+
}, {
|
|
692
|
+
readonly userId: string;
|
|
693
|
+
}, unknown>;
|
|
414
694
|
setSettingsName: import("@rocicorp/zero").MutatorDefinition<{
|
|
415
695
|
id: string;
|
|
416
696
|
name: string | null;
|
|
417
697
|
}, {
|
|
418
698
|
id: string;
|
|
419
699
|
name: string | null;
|
|
420
|
-
},
|
|
700
|
+
}, {
|
|
701
|
+
readonly userId: string;
|
|
702
|
+
}, unknown>;
|
|
421
703
|
setSettingsPushNotificationToken: import("@rocicorp/zero").MutatorDefinition<{
|
|
422
704
|
id: string;
|
|
423
705
|
pushNotificationToken: {
|
|
@@ -432,7 +714,9 @@ export declare const marcoZero: {
|
|
|
432
714
|
id: string;
|
|
433
715
|
token: string;
|
|
434
716
|
};
|
|
435
|
-
},
|
|
717
|
+
}, {
|
|
718
|
+
readonly userId: string;
|
|
719
|
+
}, unknown>;
|
|
436
720
|
};
|
|
437
721
|
}, import("@rocicorp/zero").Schema>;
|
|
438
722
|
readonly queries: {
|
|
@@ -1457,7 +1741,7 @@ export declare const marcoZero: {
|
|
|
1457
1741
|
};
|
|
1458
1742
|
};
|
|
1459
1743
|
enableLegacyQueries: boolean | undefined;
|
|
1460
|
-
enableLegacyMutators:
|
|
1744
|
+
enableLegacyMutators: boolean | undefined;
|
|
1461
1745
|
}, {
|
|
1462
1746
|
readonly color: string;
|
|
1463
1747
|
readonly displayName: string | null;
|
|
@@ -2523,7 +2807,7 @@ export declare const marcoZero: {
|
|
|
2523
2807
|
};
|
|
2524
2808
|
};
|
|
2525
2809
|
enableLegacyQueries: boolean | undefined;
|
|
2526
|
-
enableLegacyMutators:
|
|
2810
|
+
enableLegacyMutators: boolean | undefined;
|
|
2527
2811
|
}, {
|
|
2528
2812
|
readonly emailAddress: string;
|
|
2529
2813
|
readonly id: string;
|
|
@@ -3555,7 +3839,7 @@ export declare const marcoZero: {
|
|
|
3555
3839
|
};
|
|
3556
3840
|
};
|
|
3557
3841
|
enableLegacyQueries: boolean | undefined;
|
|
3558
|
-
enableLegacyMutators:
|
|
3842
|
+
enableLegacyMutators: boolean | undefined;
|
|
3559
3843
|
}, {
|
|
3560
3844
|
readonly accountId: string;
|
|
3561
3845
|
readonly body: {
|
|
@@ -4609,7 +4893,7 @@ export declare const marcoZero: {
|
|
|
4609
4893
|
};
|
|
4610
4894
|
};
|
|
4611
4895
|
enableLegacyQueries: boolean | undefined;
|
|
4612
|
-
enableLegacyMutators:
|
|
4896
|
+
enableLegacyMutators: boolean | undefined;
|
|
4613
4897
|
}, ({
|
|
4614
4898
|
readonly accountId: string;
|
|
4615
4899
|
readonly flagged: boolean;
|
|
@@ -5686,7 +5970,7 @@ export declare const marcoZero: {
|
|
|
5686
5970
|
};
|
|
5687
5971
|
};
|
|
5688
5972
|
enableLegacyQueries: boolean | undefined;
|
|
5689
|
-
enableLegacyMutators:
|
|
5973
|
+
enableLegacyMutators: boolean | undefined;
|
|
5690
5974
|
}, {
|
|
5691
5975
|
readonly labelId: string;
|
|
5692
5976
|
readonly latestMessageDate: number;
|
|
@@ -6742,7 +7026,7 @@ export declare const marcoZero: {
|
|
|
6742
7026
|
};
|
|
6743
7027
|
};
|
|
6744
7028
|
enableLegacyQueries: boolean | undefined;
|
|
6745
|
-
enableLegacyMutators:
|
|
7029
|
+
enableLegacyMutators: boolean | undefined;
|
|
6746
7030
|
}, {
|
|
6747
7031
|
readonly labelId: string;
|
|
6748
7032
|
readonly latestMessageDate: number;
|
|
@@ -7814,7 +8098,7 @@ export declare const marcoZero: {
|
|
|
7814
8098
|
};
|
|
7815
8099
|
};
|
|
7816
8100
|
enableLegacyQueries: boolean | undefined;
|
|
7817
|
-
enableLegacyMutators:
|
|
8101
|
+
enableLegacyMutators: boolean | undefined;
|
|
7818
8102
|
}, {
|
|
7819
8103
|
readonly id: string;
|
|
7820
8104
|
readonly name: string | null;
|
|
@@ -8887,7 +9171,7 @@ export declare const marcoZero: {
|
|
|
8887
9171
|
};
|
|
8888
9172
|
};
|
|
8889
9173
|
enableLegacyQueries: boolean | undefined;
|
|
8890
|
-
enableLegacyMutators:
|
|
9174
|
+
enableLegacyMutators: boolean | undefined;
|
|
8891
9175
|
};
|
|
8892
9176
|
readonly tables: {
|
|
8893
9177
|
readonly account: import("@rocicorp/zero").TableBuilderWithColumns<{
|