@marcoappio/marco-config 2.0.304 → 2.0.305
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/clients/account.d.ts +16 -16
- package/dist/clients/account.js +1 -1
- package/dist/clients/contact.d.ts +1 -1
- package/dist/clients/draft.d.ts +22 -22
- package/dist/clients/index.d.ts +55 -55
- package/dist/clients/thread.d.ts +14 -14
- package/dist/clients/user.d.ts +2 -2
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/string.d.ts +1 -1
- package/dist/schemas/string.d.ts.map +1 -1
- package/dist/schemas/string.js +1 -1
- package/dist/sdk/endpoints/index.d.ts +55 -55
- package/dist/sdk/endpoints/private/index.d.ts +55 -55
- package/dist/sdk/endpoints/private/sync/index.d.ts +55 -55
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +3 -3
- package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +4 -4
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +14 -14
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +5 -5
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +13 -13
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +18 -18
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +41 -41
- package/dist/sdk/endpoints/private/sync/push/thread.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +1 -1
- package/dist/sdk/index.d.ts +55 -55
- package/package.json +1 -1
package/dist/clients/index.d.ts
CHANGED
|
@@ -5,14 +5,14 @@ export declare const marcoClients: {
|
|
|
5
5
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6
6
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
7
7
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
8
|
-
readonly id: import("valibot").
|
|
8
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
9
9
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
10
10
|
}, undefined>, undefined>;
|
|
11
11
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
12
|
-
readonly id: import("valibot").
|
|
12
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
13
13
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
14
14
|
readonly labels: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
15
|
-
readonly id: import("valibot").
|
|
15
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
16
16
|
readonly mailCounts: import("valibot").ObjectSchema<{
|
|
17
17
|
readonly processed: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>]>;
|
|
18
18
|
readonly total: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>]>;
|
|
@@ -31,42 +31,42 @@ export declare const marcoClients: {
|
|
|
31
31
|
delta: import("valibot").ObjectSchema<{
|
|
32
32
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
33
33
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
34
|
-
readonly id: import("valibot").
|
|
34
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
35
35
|
}, undefined>;
|
|
36
36
|
};
|
|
37
37
|
createAlias: {
|
|
38
38
|
delta: import("valibot").ObjectSchema<{
|
|
39
|
-
readonly accountId: import("valibot").
|
|
39
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
40
40
|
readonly alias: import("valibot").ObjectSchema<{
|
|
41
41
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
42
42
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
43
|
-
readonly id: import("valibot").
|
|
43
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
44
44
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
45
45
|
}, undefined>;
|
|
46
46
|
}, undefined>;
|
|
47
47
|
};
|
|
48
48
|
deleteAccount: {
|
|
49
49
|
delta: import("valibot").ObjectSchema<{
|
|
50
|
-
readonly id: import("valibot").
|
|
50
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
51
51
|
}, undefined>;
|
|
52
52
|
};
|
|
53
53
|
deleteAlias: {
|
|
54
54
|
delta: import("valibot").ObjectSchema<{
|
|
55
|
-
readonly accountId: import("valibot").
|
|
56
|
-
readonly aliasId: import("valibot").
|
|
55
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
56
|
+
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
57
57
|
}, undefined>;
|
|
58
58
|
};
|
|
59
59
|
setAliasHidden: {
|
|
60
60
|
delta: import("valibot").ObjectSchema<{
|
|
61
|
-
readonly accountId: import("valibot").
|
|
62
|
-
readonly aliasId: import("valibot").
|
|
61
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
62
|
+
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
63
63
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
64
64
|
}, undefined>;
|
|
65
65
|
};
|
|
66
66
|
setAliasPrimary: {
|
|
67
67
|
delta: import("valibot").ObjectSchema<{
|
|
68
|
-
readonly accountId: import("valibot").
|
|
69
|
-
readonly aliasId: import("valibot").
|
|
68
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
69
|
+
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
70
70
|
}, undefined>;
|
|
71
71
|
};
|
|
72
72
|
setConnectionConfigImapRaw: {
|
|
@@ -79,7 +79,7 @@ export declare const marcoClients: {
|
|
|
79
79
|
readonly smtpPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
80
80
|
readonly smtpPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
|
|
81
81
|
}, undefined>;
|
|
82
|
-
readonly id: import("valibot").
|
|
82
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
83
83
|
}, undefined>;
|
|
84
84
|
};
|
|
85
85
|
setConnectionConfigOauth: {
|
|
@@ -88,12 +88,12 @@ export declare const marcoClients: {
|
|
|
88
88
|
readonly code: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
89
89
|
readonly provider: import("valibot").LiteralSchema<"GOOGLE", undefined>;
|
|
90
90
|
}, undefined>;
|
|
91
|
-
readonly id: import("valibot").
|
|
91
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
92
92
|
}, undefined>;
|
|
93
93
|
};
|
|
94
94
|
setSettings: {
|
|
95
95
|
delta: import("valibot").ObjectSchema<{
|
|
96
|
-
readonly id: import("valibot").
|
|
96
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
97
97
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
98
98
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
99
99
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -136,7 +136,7 @@ export declare const marcoClients: {
|
|
|
136
136
|
contact: {
|
|
137
137
|
model: import("valibot").ObjectSchema<{
|
|
138
138
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
139
|
-
readonly id: import("valibot").
|
|
139
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
140
140
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
141
141
|
}, undefined>;
|
|
142
142
|
mutators: {};
|
|
@@ -150,7 +150,7 @@ export declare const marcoClients: {
|
|
|
150
150
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
151
151
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
152
152
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
153
|
-
readonly id: import("valibot").
|
|
153
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
154
154
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
155
155
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
156
156
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -163,10 +163,10 @@ export declare const marcoClients: {
|
|
|
163
163
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
164
164
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
165
165
|
}, undefined>;
|
|
166
|
-
readonly emailAccountId: import("valibot").
|
|
166
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
167
167
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
168
|
-
readonly id: import("valibot").
|
|
169
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").
|
|
168
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
169
|
+
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
170
170
|
readonly scheduledFor: import("valibot").NullableSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
|
|
171
171
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SEND_REQUESTED", undefined>, import("valibot").LiteralSchema<"SEND_CONFIRMATION_PENDING", undefined>, import("valibot").LiteralSchema<"SEND_CONFIRMED", undefined>], undefined>;
|
|
172
172
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
@@ -175,7 +175,7 @@ export declare const marcoClients: {
|
|
|
175
175
|
mutators: {
|
|
176
176
|
cancelDraftSend: {
|
|
177
177
|
delta: import("valibot").ObjectSchema<{
|
|
178
|
-
readonly id: import("valibot").
|
|
178
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
179
179
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
180
180
|
}, undefined>;
|
|
181
181
|
};
|
|
@@ -184,13 +184,13 @@ export declare const marcoClients: {
|
|
|
184
184
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
185
185
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
186
186
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
187
|
-
readonly id: import("valibot").
|
|
187
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
188
188
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
189
189
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
190
190
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
191
191
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
192
192
|
}, undefined>;
|
|
193
|
-
readonly id: import("valibot").
|
|
193
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
194
194
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
195
195
|
}, undefined>;
|
|
196
196
|
};
|
|
@@ -199,7 +199,7 @@ export declare const marcoClients: {
|
|
|
199
199
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
200
200
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
201
201
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
202
|
-
readonly id: import("valibot").
|
|
202
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
203
203
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
204
204
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
205
205
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -212,10 +212,10 @@ export declare const marcoClients: {
|
|
|
212
212
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
213
213
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
214
214
|
}, undefined>;
|
|
215
|
-
readonly emailAccountId: import("valibot").
|
|
215
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
216
216
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
217
|
-
readonly id: import("valibot").
|
|
218
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").
|
|
217
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
218
|
+
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
219
219
|
readonly scheduledFor: import("valibot").NullableSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
|
|
220
220
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SEND_REQUESTED", undefined>, import("valibot").LiteralSchema<"SEND_CONFIRMATION_PENDING", undefined>, import("valibot").LiteralSchema<"SEND_CONFIRMED", undefined>], undefined>;
|
|
221
221
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
@@ -224,25 +224,25 @@ export declare const marcoClients: {
|
|
|
224
224
|
};
|
|
225
225
|
deleteAttachment: {
|
|
226
226
|
delta: import("valibot").ObjectSchema<{
|
|
227
|
-
readonly attachmentId: import("valibot").
|
|
228
|
-
readonly id: import("valibot").
|
|
227
|
+
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
228
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
229
229
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
230
230
|
}, undefined>;
|
|
231
231
|
};
|
|
232
232
|
deleteDraft: {
|
|
233
233
|
delta: import("valibot").ObjectSchema<{
|
|
234
|
-
readonly id: import("valibot").
|
|
234
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
235
235
|
}, undefined>;
|
|
236
236
|
};
|
|
237
237
|
sendDraft: {
|
|
238
238
|
delta: import("valibot").ObjectSchema<{
|
|
239
|
-
readonly id: import("valibot").
|
|
239
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
240
240
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
241
241
|
}, undefined>;
|
|
242
242
|
};
|
|
243
243
|
setContent: {
|
|
244
244
|
delta: import("valibot").ObjectSchema<{
|
|
245
|
-
readonly id: import("valibot").
|
|
245
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
246
246
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
247
247
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
248
248
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -253,8 +253,8 @@ export declare const marcoClients: {
|
|
|
253
253
|
};
|
|
254
254
|
setEmailAccountId: {
|
|
255
255
|
delta: import("valibot").ObjectSchema<{
|
|
256
|
-
readonly emailAccountId: import("valibot").
|
|
257
|
-
readonly id: import("valibot").
|
|
256
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
257
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
258
258
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
259
259
|
}, undefined>;
|
|
260
260
|
};
|
|
@@ -307,23 +307,23 @@ export declare const marcoClients: {
|
|
|
307
307
|
readonly issue: import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue;
|
|
308
308
|
} | undefined;
|
|
309
309
|
};
|
|
310
|
-
readonly id: import("valibot").
|
|
310
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
311
311
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
312
312
|
}, undefined>;
|
|
313
313
|
};
|
|
314
314
|
setScheduledFor: {
|
|
315
315
|
delta: import("valibot").ObjectSchema<{
|
|
316
|
-
readonly id: import("valibot").
|
|
316
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
317
317
|
readonly scheduledFor: import("valibot").NullableSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
|
|
318
318
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
319
319
|
}, undefined>;
|
|
320
320
|
};
|
|
321
321
|
uploadAttachmentChunk: {
|
|
322
322
|
delta: import("valibot").ObjectSchema<{
|
|
323
|
-
readonly attachmentId: import("valibot").
|
|
323
|
+
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
324
324
|
readonly chunk: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").Base64Action<string, undefined>]>;
|
|
325
325
|
readonly chunkIndex: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
326
|
-
readonly id: import("valibot").
|
|
326
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
327
327
|
}, undefined>;
|
|
328
328
|
};
|
|
329
329
|
};
|
|
@@ -337,11 +337,11 @@ export declare const marcoClients: {
|
|
|
337
337
|
readonly bagOfWords: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
338
338
|
readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
339
339
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
340
|
-
readonly id: import("valibot").
|
|
340
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
341
341
|
readonly messages: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
342
342
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
343
343
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
344
|
-
readonly id: import("valibot").
|
|
344
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
345
345
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
346
346
|
readonly size: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
347
347
|
}, undefined>, undefined>;
|
|
@@ -353,15 +353,15 @@ export declare const marcoClients: {
|
|
|
353
353
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
354
354
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
355
355
|
}, undefined>, undefined>;
|
|
356
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").
|
|
356
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
357
357
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
358
358
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
359
359
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
360
360
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
361
361
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
362
362
|
}, undefined>, undefined>;
|
|
363
|
-
readonly id: import("valibot").
|
|
364
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
363
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
364
|
+
readonly labelIds: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
365
365
|
readonly previewText: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
366
366
|
readonly replyTo: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
367
367
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -377,45 +377,45 @@ export declare const marcoClients: {
|
|
|
377
377
|
mutators: {
|
|
378
378
|
delete: {
|
|
379
379
|
delta: import("valibot").ObjectSchema<{
|
|
380
|
-
readonly threadId: import("valibot").
|
|
380
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
381
381
|
}, undefined>;
|
|
382
382
|
};
|
|
383
383
|
setFlagged: {
|
|
384
384
|
delta: import("valibot").ObjectSchema<{
|
|
385
385
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
386
|
-
readonly threadId: import("valibot").
|
|
386
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
387
387
|
}, undefined>;
|
|
388
388
|
};
|
|
389
389
|
setLabels: {
|
|
390
390
|
delta: import("valibot").ObjectSchema<{
|
|
391
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
392
|
-
readonly threadId: import("valibot").
|
|
391
|
+
readonly labelIds: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
392
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
393
393
|
}, undefined>;
|
|
394
394
|
};
|
|
395
395
|
setSeen: {
|
|
396
396
|
delta: import("valibot").ObjectSchema<{
|
|
397
397
|
readonly seen: import("valibot").BooleanSchema<undefined>;
|
|
398
|
-
readonly threadId: import("valibot").
|
|
398
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
399
399
|
}, undefined>;
|
|
400
400
|
};
|
|
401
401
|
setArchive: {
|
|
402
402
|
delta: import("valibot").ObjectSchema<{
|
|
403
|
-
readonly threadId: import("valibot").
|
|
403
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
404
404
|
}, undefined>;
|
|
405
405
|
};
|
|
406
406
|
setInbox: {
|
|
407
407
|
delta: import("valibot").ObjectSchema<{
|
|
408
|
-
readonly threadId: import("valibot").
|
|
408
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
409
409
|
}, undefined>;
|
|
410
410
|
};
|
|
411
411
|
setSpam: {
|
|
412
412
|
delta: import("valibot").ObjectSchema<{
|
|
413
|
-
readonly threadId: import("valibot").
|
|
413
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
414
414
|
}, undefined>;
|
|
415
415
|
};
|
|
416
416
|
setTrash: {
|
|
417
417
|
delta: import("valibot").ObjectSchema<{
|
|
418
|
-
readonly threadId: import("valibot").
|
|
418
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
419
419
|
}, undefined>;
|
|
420
420
|
};
|
|
421
421
|
};
|
|
@@ -426,7 +426,7 @@ export declare const marcoClients: {
|
|
|
426
426
|
};
|
|
427
427
|
user: {
|
|
428
428
|
model: import("valibot").ObjectSchema<{
|
|
429
|
-
readonly id: import("valibot").
|
|
429
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
430
430
|
readonly settings: import("valibot").ObjectSchema<{
|
|
431
431
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
432
432
|
}, undefined>;
|
|
@@ -434,7 +434,7 @@ export declare const marcoClients: {
|
|
|
434
434
|
mutators: {
|
|
435
435
|
setSettings: {
|
|
436
436
|
delta: import("valibot").ObjectSchema<{
|
|
437
|
-
readonly id: import("valibot").
|
|
437
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
438
438
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
439
439
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
440
440
|
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
package/dist/clients/thread.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ export declare const thread: {
|
|
|
4
4
|
readonly bagOfWords: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
5
5
|
readonly emailAccountId: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
6
6
|
readonly flagged: v.NonOptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7
|
-
readonly id: v.
|
|
7
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
8
8
|
readonly messages: v.ArraySchema<v.ObjectSchema<{
|
|
9
9
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
10
10
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
11
|
-
readonly id: v.
|
|
11
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
12
12
|
readonly mimeType: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
13
13
|
readonly size: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
14
14
|
}, undefined>, undefined>;
|
|
@@ -20,15 +20,15 @@ export declare const thread: {
|
|
|
20
20
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
21
21
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
22
22
|
}, undefined>, undefined>;
|
|
23
|
-
readonly draftId: v.NullableSchema<v.
|
|
23
|
+
readonly draftId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
24
24
|
readonly envelopeDate: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
25
25
|
readonly envelopeSubject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
26
26
|
readonly from: v.ArraySchema<v.ObjectSchema<{
|
|
27
27
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
28
28
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
29
29
|
}, undefined>, undefined>;
|
|
30
|
-
readonly id: v.
|
|
31
|
-
readonly labelIds: v.ArraySchema<v.
|
|
30
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
31
|
+
readonly labelIds: v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
32
32
|
readonly previewText: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
33
33
|
readonly replyTo: v.ArraySchema<v.ObjectSchema<{
|
|
34
34
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -44,45 +44,45 @@ export declare const thread: {
|
|
|
44
44
|
mutators: {
|
|
45
45
|
delete: {
|
|
46
46
|
delta: v.ObjectSchema<{
|
|
47
|
-
readonly threadId: v.
|
|
47
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
48
48
|
}, undefined>;
|
|
49
49
|
};
|
|
50
50
|
setFlagged: {
|
|
51
51
|
delta: v.ObjectSchema<{
|
|
52
52
|
readonly flagged: v.NonOptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
53
|
-
readonly threadId: v.
|
|
53
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
54
54
|
}, undefined>;
|
|
55
55
|
};
|
|
56
56
|
setLabels: {
|
|
57
57
|
delta: v.ObjectSchema<{
|
|
58
|
-
readonly labelIds: v.ArraySchema<v.
|
|
59
|
-
readonly threadId: v.
|
|
58
|
+
readonly labelIds: v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
59
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
60
60
|
}, undefined>;
|
|
61
61
|
};
|
|
62
62
|
setSeen: {
|
|
63
63
|
delta: v.ObjectSchema<{
|
|
64
64
|
readonly seen: v.BooleanSchema<undefined>;
|
|
65
|
-
readonly threadId: v.
|
|
65
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
66
66
|
}, undefined>;
|
|
67
67
|
};
|
|
68
68
|
setArchive: {
|
|
69
69
|
delta: v.ObjectSchema<{
|
|
70
|
-
readonly threadId: v.
|
|
70
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
71
71
|
}, undefined>;
|
|
72
72
|
};
|
|
73
73
|
setInbox: {
|
|
74
74
|
delta: v.ObjectSchema<{
|
|
75
|
-
readonly threadId: v.
|
|
75
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
76
76
|
}, undefined>;
|
|
77
77
|
};
|
|
78
78
|
setSpam: {
|
|
79
79
|
delta: v.ObjectSchema<{
|
|
80
|
-
readonly threadId: v.
|
|
80
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
81
81
|
}, undefined>;
|
|
82
82
|
};
|
|
83
83
|
setTrash: {
|
|
84
84
|
delta: v.ObjectSchema<{
|
|
85
|
-
readonly threadId: v.
|
|
85
|
+
readonly threadId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
86
86
|
}, undefined>;
|
|
87
87
|
};
|
|
88
88
|
};
|
package/dist/clients/user.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
export declare const user: {
|
|
3
3
|
model: v.ObjectSchema<{
|
|
4
|
-
readonly id: v.
|
|
4
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
5
5
|
readonly settings: v.ObjectSchema<{
|
|
6
6
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
7
|
}, undefined>;
|
|
@@ -9,7 +9,7 @@ export declare const user: {
|
|
|
9
9
|
mutators: {
|
|
10
10
|
setSettings: {
|
|
11
11
|
delta: v.ObjectSchema<{
|
|
12
|
-
readonly id: v.
|
|
12
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
13
13
|
readonly settings: Omit<v.ObjectSchema<{
|
|
14
14
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
15
15
|
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export declare const marcoSchemas: {
|
|
|
44
44
|
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
45
45
|
optional: (maxLength?: number) => v.UndefinedableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
46
46
|
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
47
|
-
shortUUID: () => v.
|
|
47
|
+
shortUUID: () => v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
48
48
|
uuid: () => v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
49
49
|
};
|
|
50
50
|
};
|
package/dist/schemas/string.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const string: {
|
|
|
6
6
|
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
7
|
optional: (maxLength?: number) => v.UndefinedableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
8
8
|
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
9
|
-
shortUUID: () => v.
|
|
9
|
+
shortUUID: () => v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
10
10
|
uuid: () => v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
11
11
|
};
|
|
12
12
|
//# sourceMappingURL=string.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"string.d.ts","sourceRoot":"","sources":["../../src/schemas/string.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAI5B,eAAO,MAAM,MAAM;;mBAGF,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;qBAEpB,MAAM;;;;;;
|
|
1
|
+
{"version":3,"file":"string.d.ts","sourceRoot":"","sources":["../../src/schemas/string.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAI5B,eAAO,MAAM,MAAM;;mBAGF,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;qBAEpB,MAAM;;;;;;CAcxB,CAAA"}
|
package/dist/schemas/string.js
CHANGED
|
@@ -7,6 +7,6 @@ export const string = {
|
|
|
7
7
|
nullable: (maxLength = 255) => v.nullable(v.pipe(v.string(), v.maxLength(maxLength))),
|
|
8
8
|
optional: (maxLength = 255) => v.undefinedable(v.pipe(v.string(), v.maxLength(maxLength))),
|
|
9
9
|
required: (maxLength = 255) => v.nonOptional(v.pipe(v.string(), v.nonEmpty(), v.maxLength(maxLength))),
|
|
10
|
-
shortUUID: () => v.
|
|
10
|
+
shortUUID: () => v.pipe(v.string(), v.check(shortUUID.validate, 'Invalid short UUID format')),
|
|
11
11
|
uuid: () => v.nonOptional(v.pipe(v.string(), v.nonEmpty(), v.uuid())),
|
|
12
12
|
};
|