@marcoappio/marco-config 2.0.246 → 2.0.247
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 +8 -8
- package/dist/clients/account.js +5 -5
- package/dist/clients/contact.d.ts +1 -1
- package/dist/clients/contact.js +1 -1
- package/dist/clients/draft.d.ts +21 -21
- package/dist/clients/draft.js +13 -13
- package/dist/clients/index.d.ts +48 -48
- package/dist/clients/thread.d.ts +13 -13
- package/dist/clients/thread.js +13 -13
- package/dist/clients/user.d.ts +5 -5
- package/dist/clients/user.js +2 -2
- package/dist/{schemas.d.ts → schemas/index.d.ts} +3 -1
- package/dist/schemas/index.d.ts.map +1 -0
- package/dist/{schemas.js → schemas/index.js} +2 -8
- package/dist/schemas/string.d.ts +12 -0
- package/dist/schemas/string.d.ts.map +1 -0
- package/dist/schemas/string.js +12 -0
- package/dist/schemas/string.test.d.ts +2 -0
- package/dist/schemas/string.test.d.ts.map +1 -0
- package/dist/schemas/string.test.js +11 -0
- package/dist/sdk/endpoints/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/sync/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +1 -1
- 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 +11 -11
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +4 -4
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +7 -7
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +17 -17
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +37 -37
- package/dist/sdk/endpoints/private/sync/push/thread.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +4 -4
- package/dist/sdk/index.d.ts +48 -48
- package/dist/utils/shortUUID/shortUUID.d.ts +1 -0
- package/dist/utils/shortUUID/shortUUID.d.ts.map +1 -1
- package/dist/utils/shortUUID/shortUUID.js +1 -0
- package/dist/utils/shortUUID/shortUUID.test.js +4 -0
- package/package.json +1 -1
- package/dist/schemas.d.ts.map +0 -1
|
@@ -40,7 +40,7 @@ export declare const sync: {
|
|
|
40
40
|
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>;
|
|
41
41
|
}, undefined>, undefined>;
|
|
42
42
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, 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 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_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
45
45
|
readonly labels: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
46
46
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -93,7 +93,7 @@ export declare const sync: {
|
|
|
93
93
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
94
94
|
readonly value: import("valibot").ObjectSchema<{
|
|
95
95
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
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 name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
98
98
|
}, undefined>;
|
|
99
99
|
}, undefined>], undefined>, undefined>;
|
|
@@ -133,7 +133,7 @@ export declare const sync: {
|
|
|
133
133
|
readonly value: import("valibot").ObjectSchema<{
|
|
134
134
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
135
135
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
136
|
-
readonly id: import("valibot").
|
|
136
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
137
137
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
138
138
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
139
139
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -146,9 +146,9 @@ export declare const sync: {
|
|
|
146
146
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
147
147
|
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>;
|
|
148
148
|
}, undefined>;
|
|
149
|
-
readonly emailAccountId: import("valibot").
|
|
150
|
-
readonly id: import("valibot").
|
|
151
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").
|
|
149
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
150
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
151
|
+
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>;
|
|
152
152
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
153
153
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
154
154
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -201,11 +201,11 @@ export declare const sync: {
|
|
|
201
201
|
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>;
|
|
202
202
|
readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
203
203
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
204
|
-
readonly id: import("valibot").
|
|
204
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
205
205
|
readonly messages: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
206
206
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
207
207
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
208
|
-
readonly id: import("valibot").
|
|
208
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
209
209
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
210
210
|
readonly size: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
211
211
|
}, undefined>, undefined>;
|
|
@@ -223,8 +223,8 @@ export declare const sync: {
|
|
|
223
223
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
224
224
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
225
225
|
}, undefined>, undefined>;
|
|
226
|
-
readonly id: import("valibot").
|
|
227
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
226
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
227
|
+
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>;
|
|
228
228
|
readonly previewText: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
229
229
|
readonly replyTo: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
230
230
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -272,7 +272,7 @@ export declare const sync: {
|
|
|
272
272
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
273
273
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
274
274
|
readonly value: import("valibot").ObjectSchema<{
|
|
275
|
-
readonly id: import("valibot").
|
|
275
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
276
276
|
readonly settings: import("valibot").ObjectSchema<{
|
|
277
277
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
278
278
|
}, undefined>;
|
|
@@ -289,14 +289,14 @@ export declare const sync: {
|
|
|
289
289
|
readonly args: import("valibot").ObjectSchema<{
|
|
290
290
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
291
291
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
292
|
-
readonly id: import("valibot").
|
|
292
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
293
293
|
}, undefined>;
|
|
294
294
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
295
295
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
296
296
|
readonly name: import("valibot").LiteralSchema<"add", undefined>;
|
|
297
297
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
298
298
|
readonly args: import("valibot").ObjectSchema<{
|
|
299
|
-
readonly id: import("valibot").
|
|
299
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
300
300
|
}, undefined>;
|
|
301
301
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
302
302
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -311,18 +311,18 @@ export declare const sync: {
|
|
|
311
311
|
readonly smtpPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
312
312
|
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>;
|
|
313
313
|
}, undefined>;
|
|
314
|
-
readonly id: import("valibot").
|
|
314
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
315
315
|
}, undefined>;
|
|
316
316
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
317
317
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
318
318
|
readonly name: import("valibot").LiteralSchema<"setConnectionConfig", undefined>;
|
|
319
319
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
320
320
|
readonly args: import("valibot").ObjectSchema<{
|
|
321
|
-
readonly id: import("valibot").
|
|
321
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
322
322
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
323
323
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
324
324
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
325
|
-
}, undefined>, "~
|
|
325
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
326
326
|
readonly entries: {
|
|
327
327
|
readonly color: import("valibot").OptionalSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
328
328
|
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
@@ -337,7 +337,7 @@ export declare const sync: {
|
|
|
337
337
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
338
338
|
name?: string | null | undefined;
|
|
339
339
|
color?: string | undefined;
|
|
340
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
340
|
+
}, import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue>;
|
|
341
341
|
readonly '~types'?: {
|
|
342
342
|
readonly input: {
|
|
343
343
|
name?: string | null | undefined;
|
|
@@ -347,7 +347,7 @@ export declare const sync: {
|
|
|
347
347
|
name?: string | null | undefined;
|
|
348
348
|
color?: string | undefined;
|
|
349
349
|
};
|
|
350
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
350
|
+
readonly issue: import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue;
|
|
351
351
|
} | undefined;
|
|
352
352
|
};
|
|
353
353
|
}, undefined>;
|
|
@@ -379,7 +379,7 @@ export declare const sync: {
|
|
|
379
379
|
readonly args: import("valibot").ObjectSchema<{
|
|
380
380
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
381
381
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
382
|
-
readonly id: import("valibot").
|
|
382
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
383
383
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
384
384
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
385
385
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -392,9 +392,9 @@ export declare const sync: {
|
|
|
392
392
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
393
393
|
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>;
|
|
394
394
|
}, undefined>;
|
|
395
|
-
readonly emailAccountId: import("valibot").
|
|
396
|
-
readonly id: import("valibot").
|
|
397
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").
|
|
395
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
396
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
397
|
+
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>;
|
|
398
398
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
399
399
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
400
400
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -406,27 +406,27 @@ export declare const sync: {
|
|
|
406
406
|
readonly args: import("valibot").ObjectSchema<{
|
|
407
407
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
408
408
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
409
|
-
readonly id: import("valibot").
|
|
409
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
410
410
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
411
411
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
412
412
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
413
413
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
414
414
|
}, undefined>;
|
|
415
|
-
readonly id: import("valibot").
|
|
415
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
416
416
|
}, undefined>;
|
|
417
417
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
418
418
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
419
419
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
420
420
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
421
421
|
readonly args: import("valibot").ObjectSchema<{
|
|
422
|
-
readonly id: import("valibot").
|
|
422
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
423
423
|
}, undefined>;
|
|
424
424
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
425
425
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
426
426
|
readonly name: import("valibot").LiteralSchema<"delete", undefined>;
|
|
427
427
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
428
428
|
readonly args: 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 patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
431
431
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
432
432
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -439,8 +439,8 @@ export declare const sync: {
|
|
|
439
439
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
440
440
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
441
441
|
readonly args: import("valibot").ObjectSchema<{
|
|
442
|
-
readonly emailAccountId: import("valibot").
|
|
443
|
-
readonly id: import("valibot").
|
|
442
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
443
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
444
444
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
445
445
|
}, undefined>;
|
|
446
446
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -454,7 +454,7 @@ export declare const sync: {
|
|
|
454
454
|
readonly content: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
455
455
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
456
456
|
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>;
|
|
457
|
-
}, undefined>, "~
|
|
457
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
458
458
|
readonly entries: Omit<{
|
|
459
459
|
readonly bcc: 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>;
|
|
460
460
|
readonly cc: 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>;
|
|
@@ -478,7 +478,7 @@ export declare const sync: {
|
|
|
478
478
|
cc: string[];
|
|
479
479
|
to: string[];
|
|
480
480
|
subject: string | null;
|
|
481
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
481
|
+
}, 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>;
|
|
482
482
|
readonly '~types'?: {
|
|
483
483
|
readonly input: {
|
|
484
484
|
bcc: string[];
|
|
@@ -492,10 +492,10 @@ export declare const sync: {
|
|
|
492
492
|
to: string[];
|
|
493
493
|
subject: string | null;
|
|
494
494
|
};
|
|
495
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
495
|
+
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;
|
|
496
496
|
} | undefined;
|
|
497
497
|
};
|
|
498
|
-
readonly id: import("valibot").
|
|
498
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
499
499
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
500
500
|
}, undefined>;
|
|
501
501
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -503,7 +503,7 @@ export declare const sync: {
|
|
|
503
503
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
504
504
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
505
505
|
readonly args: import("valibot").ObjectSchema<{
|
|
506
|
-
readonly id: import("valibot").
|
|
506
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
507
507
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
508
508
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
509
509
|
}, undefined>;
|
|
@@ -512,9 +512,9 @@ export declare const sync: {
|
|
|
512
512
|
readonly name: import("valibot").LiteralSchema<"setStatus", undefined>;
|
|
513
513
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
514
514
|
readonly args: import("valibot").ObjectSchema<{
|
|
515
|
-
readonly attachmentId: import("valibot").
|
|
515
|
+
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
516
516
|
readonly chunk: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
517
|
-
readonly id: import("valibot").
|
|
517
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
518
518
|
}, undefined>;
|
|
519
519
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
520
520
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -542,14 +542,14 @@ export declare const sync: {
|
|
|
542
542
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
543
543
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
544
544
|
readonly args: import("valibot").ObjectSchema<{
|
|
545
|
-
readonly threadId: import("valibot").
|
|
545
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
546
546
|
}, undefined>;
|
|
547
547
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
548
548
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
549
549
|
readonly name: import("valibot").LiteralSchema<"delete", undefined>;
|
|
550
550
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
551
551
|
readonly args: import("valibot").ObjectSchema<{
|
|
552
|
-
readonly threadId: import("valibot").
|
|
552
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
553
553
|
}, undefined>;
|
|
554
554
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
555
555
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -557,22 +557,22 @@ export declare const sync: {
|
|
|
557
557
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
558
558
|
readonly args: import("valibot").ObjectSchema<{
|
|
559
559
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
560
|
-
readonly threadId: import("valibot").
|
|
560
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
561
561
|
}, undefined>;
|
|
562
562
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
563
563
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
564
564
|
readonly name: import("valibot").LiteralSchema<"setFlagged", undefined>;
|
|
565
565
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
566
566
|
readonly args: import("valibot").ObjectSchema<{
|
|
567
|
-
readonly threadId: import("valibot").
|
|
567
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
568
568
|
}, undefined>;
|
|
569
569
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
570
570
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
571
571
|
readonly name: import("valibot").LiteralSchema<"setInbox", undefined>;
|
|
572
572
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
573
573
|
readonly args: import("valibot").ObjectSchema<{
|
|
574
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
575
|
-
readonly threadId: import("valibot").
|
|
574
|
+
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>;
|
|
575
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
576
576
|
}, undefined>;
|
|
577
577
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
578
578
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -580,21 +580,21 @@ export declare const sync: {
|
|
|
580
580
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
581
581
|
readonly args: import("valibot").ObjectSchema<{
|
|
582
582
|
readonly seen: import("valibot").BooleanSchema<undefined>;
|
|
583
|
-
readonly threadId: import("valibot").
|
|
583
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
584
584
|
}, undefined>;
|
|
585
585
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
586
586
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
587
587
|
readonly name: import("valibot").LiteralSchema<"setSeen", undefined>;
|
|
588
588
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
589
589
|
readonly args: import("valibot").ObjectSchema<{
|
|
590
|
-
readonly threadId: import("valibot").
|
|
590
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
591
591
|
}, undefined>;
|
|
592
592
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
593
593
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
594
594
|
readonly name: import("valibot").LiteralSchema<"setSpam", undefined>;
|
|
595
595
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
596
596
|
readonly args: import("valibot").ObjectSchema<{
|
|
597
|
-
readonly threadId: import("valibot").
|
|
597
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
598
598
|
}, undefined>;
|
|
599
599
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
600
600
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -622,10 +622,10 @@ export declare const sync: {
|
|
|
622
622
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
623
623
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<import("valibot").ObjectSchema<{
|
|
624
624
|
readonly args: import("valibot").ObjectSchema<{
|
|
625
|
-
readonly id: import("valibot").
|
|
625
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
626
626
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
627
627
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
628
|
-
}, undefined>, "~
|
|
628
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
629
629
|
readonly entries: {
|
|
630
630
|
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
631
631
|
};
|
|
@@ -636,7 +636,7 @@ export declare const sync: {
|
|
|
636
636
|
}>;
|
|
637
637
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
638
638
|
name?: string | null | undefined;
|
|
639
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
639
|
+
}, import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue>;
|
|
640
640
|
readonly '~types'?: {
|
|
641
641
|
readonly input: {
|
|
642
642
|
name?: string | null | undefined;
|
|
@@ -644,7 +644,7 @@ export declare const sync: {
|
|
|
644
644
|
readonly output: {
|
|
645
645
|
name?: string | null | undefined;
|
|
646
646
|
};
|
|
647
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
647
|
+
readonly issue: import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue;
|
|
648
648
|
} | undefined;
|
|
649
649
|
};
|
|
650
650
|
}, undefined>;
|
|
@@ -39,7 +39,7 @@ export declare const syncPullAccount: import("../../../../..").EndpointConfig<"/
|
|
|
39
39
|
readonly smtpPort: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.MinValueAction<number, number, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
40
40
|
}, undefined>, undefined>;
|
|
41
41
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
42
|
-
readonly id: v.
|
|
42
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
43
43
|
readonly imapConnectionStatus: v.UnionSchema<[v.LiteralSchema<"AWAITING_CONNECTION", undefined>, v.LiteralSchema<"CONNECTED", undefined>, v.LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
44
44
|
readonly labels: v.ArraySchema<v.ObjectSchema<{
|
|
45
45
|
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -31,7 +31,7 @@ export declare const syncPullContact: import("../../../../..").EndpointConfig<"/
|
|
|
31
31
|
readonly op: v.LiteralSchema<"put", undefined>;
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
33
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
34
|
-
readonly id: v.
|
|
34
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
35
35
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
36
36
|
}, undefined>;
|
|
37
37
|
}, undefined>], undefined>, undefined>;
|
|
@@ -32,7 +32,7 @@ export declare const syncPullDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
33
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
34
34
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
35
|
-
readonly id: v.
|
|
35
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
36
36
|
readonly mimeType: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
37
37
|
readonly totalChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
38
38
|
readonly totalSize: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -45,9 +45,9 @@ export declare const syncPullDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
45
45
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
46
46
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
47
47
|
}, undefined>;
|
|
48
|
-
readonly emailAccountId: v.
|
|
49
|
-
readonly id: v.
|
|
50
|
-
readonly referencedMessageId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.
|
|
48
|
+
readonly emailAccountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
49
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
50
|
+
readonly referencedMessageId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
51
51
|
readonly status: v.UnionSchema<[v.LiteralSchema<"DRAFT", undefined>, v.LiteralSchema<"SENDING", undefined>, v.LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
52
52
|
readonly type: v.UnionSchema<[v.LiteralSchema<"NEW", undefined>, v.LiteralSchema<"REPLY", undefined>, v.LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
53
53
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -39,7 +39,7 @@ export declare const pull: {
|
|
|
39
39
|
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>;
|
|
40
40
|
}, undefined>, undefined>;
|
|
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
|
-
readonly id: import("valibot").
|
|
42
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
43
43
|
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_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
44
44
|
readonly labels: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
45
45
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -92,7 +92,7 @@ export declare const pull: {
|
|
|
92
92
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
93
93
|
readonly value: import("valibot").ObjectSchema<{
|
|
94
94
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
95
|
-
readonly id: import("valibot").
|
|
95
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
96
96
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
97
97
|
}, undefined>;
|
|
98
98
|
}, undefined>], undefined>, undefined>;
|
|
@@ -132,7 +132,7 @@ export declare const pull: {
|
|
|
132
132
|
readonly value: import("valibot").ObjectSchema<{
|
|
133
133
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
134
134
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
135
|
-
readonly id: import("valibot").
|
|
135
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
136
136
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
137
137
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
138
138
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -145,9 +145,9 @@ export declare const pull: {
|
|
|
145
145
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
146
146
|
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>;
|
|
147
147
|
}, undefined>;
|
|
148
|
-
readonly emailAccountId: import("valibot").
|
|
149
|
-
readonly id: import("valibot").
|
|
150
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").
|
|
148
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
149
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
150
|
+
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>;
|
|
151
151
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
152
152
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
153
153
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -200,11 +200,11 @@ export declare const pull: {
|
|
|
200
200
|
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>;
|
|
201
201
|
readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
202
202
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
203
|
-
readonly id: import("valibot").
|
|
203
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
204
204
|
readonly messages: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
205
205
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
206
206
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
207
|
-
readonly id: import("valibot").
|
|
207
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
208
208
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
209
209
|
readonly size: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
210
210
|
}, undefined>, undefined>;
|
|
@@ -222,8 +222,8 @@ export declare const pull: {
|
|
|
222
222
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
223
223
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
224
224
|
}, undefined>, undefined>;
|
|
225
|
-
readonly id: import("valibot").
|
|
226
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
225
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
226
|
+
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>;
|
|
227
227
|
readonly previewText: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
228
228
|
readonly replyTo: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
229
229
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -271,7 +271,7 @@ export declare const pull: {
|
|
|
271
271
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
272
272
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
273
273
|
readonly value: import("valibot").ObjectSchema<{
|
|
274
|
-
readonly id: import("valibot").
|
|
274
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
275
275
|
readonly settings: import("valibot").ObjectSchema<{
|
|
276
276
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
277
277
|
}, undefined>;
|