@marcoappio/marco-config 2.0.294 → 2.0.295
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/draft.d.ts +9 -9
- package/dist/clients/draft.js +9 -9
- package/dist/clients/index.d.ts +9 -9
- package/dist/sdk/endpoints/index.d.ts +9 -9
- package/dist/sdk/endpoints/private/index.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/index.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +9 -9
- package/dist/sdk/index.d.ts +9 -9
- package/package.json +1 -1
package/dist/clients/draft.d.ts
CHANGED
|
@@ -29,12 +29,13 @@ export declare const draft: {
|
|
|
29
29
|
mutators: {
|
|
30
30
|
cancelDraftSend: {
|
|
31
31
|
delta: v.ObjectSchema<{
|
|
32
|
-
readonly
|
|
32
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
33
33
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
34
34
|
}, undefined>;
|
|
35
35
|
};
|
|
36
36
|
createAttachment: {
|
|
37
37
|
delta: v.ObjectSchema<{
|
|
38
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
38
39
|
readonly attachment: v.ObjectSchema<{
|
|
39
40
|
readonly failed: v.BooleanSchema<undefined>;
|
|
40
41
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -44,7 +45,6 @@ export declare const draft: {
|
|
|
44
45
|
readonly totalSize: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
45
46
|
readonly uploadedChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
46
47
|
}, undefined>;
|
|
47
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
48
48
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
49
49
|
}, undefined>;
|
|
50
50
|
};
|
|
@@ -78,26 +78,26 @@ export declare const draft: {
|
|
|
78
78
|
};
|
|
79
79
|
deleteAttachment: {
|
|
80
80
|
delta: v.ObjectSchema<{
|
|
81
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
81
82
|
readonly attachmentId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
82
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
83
83
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
84
84
|
}, undefined>;
|
|
85
85
|
};
|
|
86
86
|
deleteDraft: {
|
|
87
87
|
delta: v.ObjectSchema<{
|
|
88
|
-
readonly
|
|
88
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
89
89
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
90
90
|
}, undefined>;
|
|
91
91
|
};
|
|
92
92
|
sendDraft: {
|
|
93
93
|
delta: v.ObjectSchema<{
|
|
94
|
-
readonly
|
|
94
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
95
95
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
96
96
|
}, undefined>;
|
|
97
97
|
};
|
|
98
98
|
setContent: {
|
|
99
99
|
delta: v.ObjectSchema<{
|
|
100
|
-
readonly
|
|
100
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
101
101
|
readonly patch: v.ArraySchema<v.ObjectSchema<{
|
|
102
102
|
readonly index: v.NumberSchema<undefined>;
|
|
103
103
|
readonly type: v.UnionSchema<[v.LiteralSchema<"INSERTION", undefined>, v.LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -108,13 +108,14 @@ export declare const draft: {
|
|
|
108
108
|
};
|
|
109
109
|
setEmailAccountId: {
|
|
110
110
|
delta: v.ObjectSchema<{
|
|
111
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
111
112
|
readonly emailAccountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
112
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
113
113
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
114
114
|
}, undefined>;
|
|
115
115
|
};
|
|
116
116
|
setEnvelope: {
|
|
117
117
|
delta: v.ObjectSchema<{
|
|
118
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
118
119
|
readonly envelope: Omit<v.ObjectSchema<{
|
|
119
120
|
readonly bcc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
120
121
|
readonly cc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
@@ -162,13 +163,12 @@ export declare const draft: {
|
|
|
162
163
|
readonly issue: v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.MaxLengthIssue<string, number> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue;
|
|
163
164
|
} | undefined;
|
|
164
165
|
};
|
|
165
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
166
166
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
167
167
|
}, undefined>;
|
|
168
168
|
};
|
|
169
169
|
setScheduledFor: {
|
|
170
170
|
delta: v.ObjectSchema<{
|
|
171
|
-
readonly
|
|
171
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
172
172
|
readonly scheduledFor: v.NullableSchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
|
|
173
173
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
174
174
|
}, undefined>;
|
package/dist/clients/draft.js
CHANGED
|
@@ -45,14 +45,14 @@ export const draft = {
|
|
|
45
45
|
mutators: {
|
|
46
46
|
cancelDraftSend: {
|
|
47
47
|
delta: v.object({
|
|
48
|
-
|
|
48
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
49
49
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
50
50
|
}),
|
|
51
51
|
},
|
|
52
52
|
createAttachment: {
|
|
53
53
|
delta: v.object({
|
|
54
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
54
55
|
attachment: attachmentSchema,
|
|
55
|
-
id: marcoSchemas.string.shortUUID(),
|
|
56
56
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
57
57
|
}),
|
|
58
58
|
},
|
|
@@ -61,47 +61,47 @@ export const draft = {
|
|
|
61
61
|
},
|
|
62
62
|
deleteAttachment: {
|
|
63
63
|
delta: v.object({
|
|
64
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
64
65
|
attachmentId: marcoSchemas.string.shortUUID(),
|
|
65
|
-
id: marcoSchemas.string.shortUUID(),
|
|
66
66
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
67
67
|
}),
|
|
68
68
|
},
|
|
69
69
|
deleteDraft: {
|
|
70
70
|
delta: v.object({
|
|
71
|
-
|
|
71
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
72
72
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
73
73
|
}),
|
|
74
74
|
},
|
|
75
75
|
sendDraft: {
|
|
76
76
|
delta: v.object({
|
|
77
|
-
|
|
77
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
78
78
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
79
79
|
}),
|
|
80
80
|
},
|
|
81
81
|
setContent: {
|
|
82
82
|
delta: v.object({
|
|
83
|
-
|
|
83
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
84
84
|
patch: marcoSchemas.drafts.contentPatch.patch(),
|
|
85
85
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
86
86
|
}),
|
|
87
87
|
},
|
|
88
88
|
setEmailAccountId: {
|
|
89
89
|
delta: v.object({
|
|
90
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
90
91
|
emailAccountId: marcoSchemas.string.shortUUID(),
|
|
91
|
-
id: marcoSchemas.string.shortUUID(),
|
|
92
92
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
93
93
|
}),
|
|
94
94
|
},
|
|
95
95
|
setEnvelope: {
|
|
96
96
|
delta: v.object({
|
|
97
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
97
98
|
envelope: v.omit(bodySchema, ['content']),
|
|
98
|
-
id: marcoSchemas.string.shortUUID(),
|
|
99
99
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
100
100
|
}),
|
|
101
101
|
},
|
|
102
102
|
setScheduledFor: {
|
|
103
103
|
delta: v.object({
|
|
104
|
-
|
|
104
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
105
105
|
scheduledFor: scheduledForSchema,
|
|
106
106
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
107
107
|
}),
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -175,12 +175,13 @@ export declare const marcoClients: {
|
|
|
175
175
|
mutators: {
|
|
176
176
|
cancelDraftSend: {
|
|
177
177
|
delta: import("valibot").ObjectSchema<{
|
|
178
|
-
readonly
|
|
178
|
+
readonly accountId: 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
|
};
|
|
182
182
|
createAttachment: {
|
|
183
183
|
delta: import("valibot").ObjectSchema<{
|
|
184
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
184
185
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
185
186
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
186
187
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -190,7 +191,6 @@ export declare const marcoClients: {
|
|
|
190
191
|
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
192
|
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
193
|
}, undefined>;
|
|
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
|
};
|
|
@@ -224,26 +224,26 @@ export declare const marcoClients: {
|
|
|
224
224
|
};
|
|
225
225
|
deleteAttachment: {
|
|
226
226
|
delta: import("valibot").ObjectSchema<{
|
|
227
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
227
228
|
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
|
|
234
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
235
235
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
236
236
|
}, undefined>;
|
|
237
237
|
};
|
|
238
238
|
sendDraft: {
|
|
239
239
|
delta: import("valibot").ObjectSchema<{
|
|
240
|
-
readonly
|
|
240
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
241
241
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
242
242
|
}, undefined>;
|
|
243
243
|
};
|
|
244
244
|
setContent: {
|
|
245
245
|
delta: import("valibot").ObjectSchema<{
|
|
246
|
-
readonly
|
|
246
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
247
247
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
248
248
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
249
249
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -254,13 +254,14 @@ export declare const marcoClients: {
|
|
|
254
254
|
};
|
|
255
255
|
setEmailAccountId: {
|
|
256
256
|
delta: import("valibot").ObjectSchema<{
|
|
257
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
257
258
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
258
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
259
259
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
260
260
|
}, undefined>;
|
|
261
261
|
};
|
|
262
262
|
setEnvelope: {
|
|
263
263
|
delta: import("valibot").ObjectSchema<{
|
|
264
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
264
265
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
265
266
|
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>;
|
|
266
267
|
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>;
|
|
@@ -308,13 +309,12 @@ export declare const marcoClients: {
|
|
|
308
309
|
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;
|
|
309
310
|
} | undefined;
|
|
310
311
|
};
|
|
311
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
312
312
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
313
313
|
}, undefined>;
|
|
314
314
|
};
|
|
315
315
|
setScheduledFor: {
|
|
316
316
|
delta: import("valibot").ObjectSchema<{
|
|
317
|
-
readonly
|
|
317
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
318
318
|
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>;
|
|
319
319
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
320
320
|
}, undefined>;
|
|
@@ -501,7 +501,7 @@ export declare const endpoints: {
|
|
|
501
501
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
502
502
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
503
503
|
readonly args: import("valibot").ObjectSchema<{
|
|
504
|
-
readonly
|
|
504
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
505
505
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
506
506
|
}, undefined>;
|
|
507
507
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -509,6 +509,7 @@ export declare const endpoints: {
|
|
|
509
509
|
readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
|
|
510
510
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
511
511
|
readonly args: import("valibot").ObjectSchema<{
|
|
512
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
512
513
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
513
514
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
514
515
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -518,7 +519,6 @@ export declare const endpoints: {
|
|
|
518
519
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
519
520
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
520
521
|
}, undefined>;
|
|
521
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
522
522
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
523
523
|
}, undefined>;
|
|
524
524
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -556,8 +556,8 @@ export declare const endpoints: {
|
|
|
556
556
|
readonly name: import("valibot").LiteralSchema<"createDraft", undefined>;
|
|
557
557
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
558
558
|
readonly args: import("valibot").ObjectSchema<{
|
|
559
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
559
560
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
560
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
561
561
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
562
562
|
}, undefined>;
|
|
563
563
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -565,7 +565,7 @@ export declare const endpoints: {
|
|
|
565
565
|
readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
|
|
566
566
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
567
567
|
readonly args: import("valibot").ObjectSchema<{
|
|
568
|
-
readonly
|
|
568
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
569
569
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
570
570
|
}, undefined>;
|
|
571
571
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -573,7 +573,7 @@ export declare const endpoints: {
|
|
|
573
573
|
readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
|
|
574
574
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
575
575
|
readonly args: import("valibot").ObjectSchema<{
|
|
576
|
-
readonly
|
|
576
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
577
577
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
578
578
|
}, undefined>;
|
|
579
579
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -581,7 +581,7 @@ export declare const endpoints: {
|
|
|
581
581
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
582
582
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
583
583
|
readonly args: import("valibot").ObjectSchema<{
|
|
584
|
-
readonly
|
|
584
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
585
585
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
586
586
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
587
587
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -594,8 +594,8 @@ export declare const endpoints: {
|
|
|
594
594
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
595
595
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
596
596
|
readonly args: import("valibot").ObjectSchema<{
|
|
597
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
597
598
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
598
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
599
599
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
600
600
|
}, undefined>;
|
|
601
601
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -603,6 +603,7 @@ export declare const endpoints: {
|
|
|
603
603
|
readonly name: import("valibot").LiteralSchema<"setEmailAccountId", undefined>;
|
|
604
604
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
605
605
|
readonly args: import("valibot").ObjectSchema<{
|
|
606
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
606
607
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
607
608
|
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>;
|
|
608
609
|
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>;
|
|
@@ -650,7 +651,6 @@ export declare const endpoints: {
|
|
|
650
651
|
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;
|
|
651
652
|
} | undefined;
|
|
652
653
|
};
|
|
653
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
654
654
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
655
655
|
}, undefined>;
|
|
656
656
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -658,7 +658,7 @@ export declare const endpoints: {
|
|
|
658
658
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
659
659
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
660
660
|
readonly args: import("valibot").ObjectSchema<{
|
|
661
|
-
readonly
|
|
661
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
662
662
|
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>;
|
|
663
663
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
664
664
|
}, undefined>;
|
|
@@ -498,7 +498,7 @@ export declare const privateGroup: {
|
|
|
498
498
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
499
499
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
500
500
|
readonly args: import("valibot").ObjectSchema<{
|
|
501
|
-
readonly
|
|
501
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
502
502
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
503
503
|
}, undefined>;
|
|
504
504
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -506,6 +506,7 @@ export declare const privateGroup: {
|
|
|
506
506
|
readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
|
|
507
507
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
508
508
|
readonly args: import("valibot").ObjectSchema<{
|
|
509
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
509
510
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
510
511
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
511
512
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -515,7 +516,6 @@ export declare const privateGroup: {
|
|
|
515
516
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
516
517
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
517
518
|
}, undefined>;
|
|
518
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
519
519
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
520
520
|
}, undefined>;
|
|
521
521
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -553,8 +553,8 @@ export declare const privateGroup: {
|
|
|
553
553
|
readonly name: import("valibot").LiteralSchema<"createDraft", undefined>;
|
|
554
554
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
555
555
|
readonly args: import("valibot").ObjectSchema<{
|
|
556
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
556
557
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
557
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
558
558
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
559
559
|
}, undefined>;
|
|
560
560
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -562,7 +562,7 @@ export declare const privateGroup: {
|
|
|
562
562
|
readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
|
|
563
563
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
564
564
|
readonly args: import("valibot").ObjectSchema<{
|
|
565
|
-
readonly
|
|
565
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
566
566
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
567
567
|
}, undefined>;
|
|
568
568
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -570,7 +570,7 @@ export declare const privateGroup: {
|
|
|
570
570
|
readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
|
|
571
571
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
572
572
|
readonly args: import("valibot").ObjectSchema<{
|
|
573
|
-
readonly
|
|
573
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
574
574
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
575
575
|
}, undefined>;
|
|
576
576
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -578,7 +578,7 @@ export declare const privateGroup: {
|
|
|
578
578
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
579
579
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
580
580
|
readonly args: import("valibot").ObjectSchema<{
|
|
581
|
-
readonly
|
|
581
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
582
582
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
583
583
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
584
584
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -591,8 +591,8 @@ export declare const privateGroup: {
|
|
|
591
591
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
592
592
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
593
593
|
readonly args: import("valibot").ObjectSchema<{
|
|
594
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
594
595
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
595
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
596
596
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
597
597
|
}, undefined>;
|
|
598
598
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -600,6 +600,7 @@ export declare const privateGroup: {
|
|
|
600
600
|
readonly name: import("valibot").LiteralSchema<"setEmailAccountId", undefined>;
|
|
601
601
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
602
602
|
readonly args: import("valibot").ObjectSchema<{
|
|
603
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
603
604
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
604
605
|
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>;
|
|
605
606
|
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>;
|
|
@@ -647,7 +648,6 @@ export declare const privateGroup: {
|
|
|
647
648
|
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;
|
|
648
649
|
} | undefined;
|
|
649
650
|
};
|
|
650
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
651
651
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
652
652
|
}, undefined>;
|
|
653
653
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -655,7 +655,7 @@ export declare const privateGroup: {
|
|
|
655
655
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
656
656
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
657
657
|
readonly args: import("valibot").ObjectSchema<{
|
|
658
|
-
readonly
|
|
658
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
659
659
|
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>;
|
|
660
660
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
661
661
|
}, undefined>;
|
|
@@ -432,7 +432,7 @@ export declare const sync: {
|
|
|
432
432
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
433
433
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
434
434
|
readonly args: import("valibot").ObjectSchema<{
|
|
435
|
-
readonly
|
|
435
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
436
436
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
437
437
|
}, undefined>;
|
|
438
438
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -440,6 +440,7 @@ export declare const sync: {
|
|
|
440
440
|
readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
|
|
441
441
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
442
442
|
readonly args: import("valibot").ObjectSchema<{
|
|
443
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
443
444
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
444
445
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
445
446
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -449,7 +450,6 @@ export declare const sync: {
|
|
|
449
450
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
450
451
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
451
452
|
}, undefined>;
|
|
452
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
453
453
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
454
454
|
}, undefined>;
|
|
455
455
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -487,8 +487,8 @@ export declare const sync: {
|
|
|
487
487
|
readonly name: import("valibot").LiteralSchema<"createDraft", undefined>;
|
|
488
488
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
489
489
|
readonly args: import("valibot").ObjectSchema<{
|
|
490
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
490
491
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
491
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
492
492
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
493
493
|
}, undefined>;
|
|
494
494
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -496,7 +496,7 @@ export declare const sync: {
|
|
|
496
496
|
readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
|
|
497
497
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
498
498
|
readonly args: import("valibot").ObjectSchema<{
|
|
499
|
-
readonly
|
|
499
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
500
500
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
501
501
|
}, undefined>;
|
|
502
502
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -504,7 +504,7 @@ export declare const sync: {
|
|
|
504
504
|
readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
|
|
505
505
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
506
506
|
readonly args: import("valibot").ObjectSchema<{
|
|
507
|
-
readonly
|
|
507
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
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>;
|
|
510
510
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -512,7 +512,7 @@ export declare const sync: {
|
|
|
512
512
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
513
513
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
514
514
|
readonly args: import("valibot").ObjectSchema<{
|
|
515
|
-
readonly
|
|
515
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
516
516
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
517
517
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
518
518
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -525,8 +525,8 @@ export declare const sync: {
|
|
|
525
525
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
526
526
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
527
527
|
readonly args: import("valibot").ObjectSchema<{
|
|
528
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
528
529
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
529
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
530
530
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
531
531
|
}, undefined>;
|
|
532
532
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -534,6 +534,7 @@ export declare const sync: {
|
|
|
534
534
|
readonly name: import("valibot").LiteralSchema<"setEmailAccountId", undefined>;
|
|
535
535
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
536
536
|
readonly args: import("valibot").ObjectSchema<{
|
|
537
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
537
538
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
538
539
|
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>;
|
|
539
540
|
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>;
|
|
@@ -581,7 +582,6 @@ export declare const sync: {
|
|
|
581
582
|
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;
|
|
582
583
|
} | undefined;
|
|
583
584
|
};
|
|
584
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
585
585
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
586
586
|
}, undefined>;
|
|
587
587
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -589,7 +589,7 @@ export declare const sync: {
|
|
|
589
589
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
590
590
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
591
591
|
readonly args: import("valibot").ObjectSchema<{
|
|
592
|
-
readonly
|
|
592
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
593
593
|
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>;
|
|
594
594
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
595
595
|
}, undefined>;
|
|
@@ -3,7 +3,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly mutations: v.ArraySchema<v.UnionSchema<(v.ObjectSchema<{
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
|
-
readonly
|
|
6
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
7
7
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
8
8
|
}, undefined>;
|
|
9
9
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -11,6 +11,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
11
11
|
readonly name: v.LiteralSchema<"cancelDraftSend", undefined>;
|
|
12
12
|
}, undefined> | v.ObjectSchema<{
|
|
13
13
|
readonly args: v.ObjectSchema<{
|
|
14
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
14
15
|
readonly attachment: v.ObjectSchema<{
|
|
15
16
|
readonly failed: v.BooleanSchema<undefined>;
|
|
16
17
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -20,7 +21,6 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
20
21
|
readonly totalSize: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
21
22
|
readonly uploadedChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
22
23
|
}, undefined>;
|
|
23
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
24
24
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
25
25
|
}, undefined>;
|
|
26
26
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -58,8 +58,8 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
58
58
|
readonly name: v.LiteralSchema<"createDraft", undefined>;
|
|
59
59
|
}, undefined> | v.ObjectSchema<{
|
|
60
60
|
readonly args: v.ObjectSchema<{
|
|
61
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
61
62
|
readonly attachmentId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
62
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
63
63
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
64
64
|
}, undefined>;
|
|
65
65
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -67,7 +67,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
67
67
|
readonly name: v.LiteralSchema<"deleteAttachment", undefined>;
|
|
68
68
|
}, undefined> | v.ObjectSchema<{
|
|
69
69
|
readonly args: v.ObjectSchema<{
|
|
70
|
-
readonly
|
|
70
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
71
71
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
72
72
|
}, undefined>;
|
|
73
73
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -75,7 +75,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
75
75
|
readonly name: v.LiteralSchema<"deleteDraft", undefined>;
|
|
76
76
|
}, undefined> | v.ObjectSchema<{
|
|
77
77
|
readonly args: v.ObjectSchema<{
|
|
78
|
-
readonly
|
|
78
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
79
79
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
80
80
|
}, undefined>;
|
|
81
81
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -83,7 +83,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
83
83
|
readonly name: v.LiteralSchema<"sendDraft", undefined>;
|
|
84
84
|
}, undefined> | v.ObjectSchema<{
|
|
85
85
|
readonly args: v.ObjectSchema<{
|
|
86
|
-
readonly
|
|
86
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
87
87
|
readonly patch: v.ArraySchema<v.ObjectSchema<{
|
|
88
88
|
readonly index: v.NumberSchema<undefined>;
|
|
89
89
|
readonly type: v.UnionSchema<[v.LiteralSchema<"INSERTION", undefined>, v.LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -96,8 +96,8 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
96
96
|
readonly name: v.LiteralSchema<"setContent", undefined>;
|
|
97
97
|
}, undefined> | v.ObjectSchema<{
|
|
98
98
|
readonly args: v.ObjectSchema<{
|
|
99
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
99
100
|
readonly emailAccountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
100
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
101
101
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
102
102
|
}, undefined>;
|
|
103
103
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -105,6 +105,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
105
105
|
readonly name: v.LiteralSchema<"setEmailAccountId", undefined>;
|
|
106
106
|
}, undefined> | v.ObjectSchema<{
|
|
107
107
|
readonly args: v.ObjectSchema<{
|
|
108
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
108
109
|
readonly envelope: Omit<v.ObjectSchema<{
|
|
109
110
|
readonly bcc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
110
111
|
readonly cc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
@@ -152,7 +153,6 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
152
153
|
readonly issue: v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.MaxLengthIssue<string, number> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue;
|
|
153
154
|
} | undefined;
|
|
154
155
|
};
|
|
155
|
-
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
156
156
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
157
157
|
}, undefined>;
|
|
158
158
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -160,7 +160,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
160
160
|
readonly name: v.LiteralSchema<"setEnvelope", undefined>;
|
|
161
161
|
}, undefined> | v.ObjectSchema<{
|
|
162
162
|
readonly args: v.ObjectSchema<{
|
|
163
|
-
readonly
|
|
163
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
164
164
|
readonly scheduledFor: v.NullableSchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
|
|
165
165
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
166
166
|
}, undefined>;
|
|
@@ -142,7 +142,7 @@ export declare const push: {
|
|
|
142
142
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
143
143
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
144
144
|
readonly args: import("valibot").ObjectSchema<{
|
|
145
|
-
readonly
|
|
145
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
146
146
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
147
147
|
}, undefined>;
|
|
148
148
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -150,6 +150,7 @@ export declare const push: {
|
|
|
150
150
|
readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
|
|
151
151
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
152
152
|
readonly args: import("valibot").ObjectSchema<{
|
|
153
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
153
154
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
154
155
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
155
156
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -159,7 +160,6 @@ export declare const push: {
|
|
|
159
160
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
160
161
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
161
162
|
}, undefined>;
|
|
162
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
163
163
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
164
164
|
}, undefined>;
|
|
165
165
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -197,8 +197,8 @@ export declare const push: {
|
|
|
197
197
|
readonly name: import("valibot").LiteralSchema<"createDraft", undefined>;
|
|
198
198
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
199
199
|
readonly args: import("valibot").ObjectSchema<{
|
|
200
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
200
201
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
201
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
202
202
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
203
203
|
}, undefined>;
|
|
204
204
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -206,7 +206,7 @@ export declare const push: {
|
|
|
206
206
|
readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
|
|
207
207
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
208
208
|
readonly args: import("valibot").ObjectSchema<{
|
|
209
|
-
readonly
|
|
209
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
210
210
|
readonly updatedAt: 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>;
|
|
212
212
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -214,7 +214,7 @@ export declare const push: {
|
|
|
214
214
|
readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
|
|
215
215
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
216
216
|
readonly args: import("valibot").ObjectSchema<{
|
|
217
|
-
readonly
|
|
217
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
218
218
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
219
219
|
}, undefined>;
|
|
220
220
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -222,7 +222,7 @@ export declare const push: {
|
|
|
222
222
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
223
223
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
224
224
|
readonly args: import("valibot").ObjectSchema<{
|
|
225
|
-
readonly
|
|
225
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
226
226
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
227
227
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
228
228
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -235,8 +235,8 @@ export declare const push: {
|
|
|
235
235
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
236
236
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
237
237
|
readonly args: import("valibot").ObjectSchema<{
|
|
238
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
238
239
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
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
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -244,6 +244,7 @@ export declare const push: {
|
|
|
244
244
|
readonly name: import("valibot").LiteralSchema<"setEmailAccountId", undefined>;
|
|
245
245
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
246
246
|
readonly args: import("valibot").ObjectSchema<{
|
|
247
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
247
248
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
248
249
|
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>;
|
|
249
250
|
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>;
|
|
@@ -291,7 +292,6 @@ export declare const push: {
|
|
|
291
292
|
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;
|
|
292
293
|
} | undefined;
|
|
293
294
|
};
|
|
294
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
295
295
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
296
296
|
}, undefined>;
|
|
297
297
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -299,7 +299,7 @@ export declare const push: {
|
|
|
299
299
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
300
300
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
301
301
|
readonly args: import("valibot").ObjectSchema<{
|
|
302
|
-
readonly
|
|
302
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
303
303
|
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>;
|
|
304
304
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
305
305
|
}, undefined>;
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -500,7 +500,7 @@ export declare const marcoSDK: {
|
|
|
500
500
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
501
501
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
502
502
|
readonly args: import("valibot").ObjectSchema<{
|
|
503
|
-
readonly
|
|
503
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
504
504
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
505
505
|
}, undefined>;
|
|
506
506
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -508,6 +508,7 @@ export declare const marcoSDK: {
|
|
|
508
508
|
readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
|
|
509
509
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
510
510
|
readonly args: import("valibot").ObjectSchema<{
|
|
511
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
511
512
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
512
513
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
513
514
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -517,7 +518,6 @@ export declare const marcoSDK: {
|
|
|
517
518
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
518
519
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
519
520
|
}, undefined>;
|
|
520
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
521
521
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
522
522
|
}, undefined>;
|
|
523
523
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -555,8 +555,8 @@ export declare const marcoSDK: {
|
|
|
555
555
|
readonly name: import("valibot").LiteralSchema<"createDraft", undefined>;
|
|
556
556
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
557
557
|
readonly args: import("valibot").ObjectSchema<{
|
|
558
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
558
559
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
559
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
560
560
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
561
561
|
}, undefined>;
|
|
562
562
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -564,7 +564,7 @@ export declare const marcoSDK: {
|
|
|
564
564
|
readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
|
|
565
565
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
566
566
|
readonly args: import("valibot").ObjectSchema<{
|
|
567
|
-
readonly
|
|
567
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
568
568
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
569
569
|
}, undefined>;
|
|
570
570
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -572,7 +572,7 @@ export declare const marcoSDK: {
|
|
|
572
572
|
readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
|
|
573
573
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
574
574
|
readonly args: import("valibot").ObjectSchema<{
|
|
575
|
-
readonly
|
|
575
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
576
576
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
577
577
|
}, undefined>;
|
|
578
578
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -580,7 +580,7 @@ export declare const marcoSDK: {
|
|
|
580
580
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
581
581
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
582
582
|
readonly args: import("valibot").ObjectSchema<{
|
|
583
|
-
readonly
|
|
583
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
584
584
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
585
585
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
586
586
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -593,8 +593,8 @@ export declare const marcoSDK: {
|
|
|
593
593
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
594
594
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
595
595
|
readonly args: import("valibot").ObjectSchema<{
|
|
596
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
596
597
|
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
597
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
598
598
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
599
599
|
}, undefined>;
|
|
600
600
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -602,6 +602,7 @@ export declare const marcoSDK: {
|
|
|
602
602
|
readonly name: import("valibot").LiteralSchema<"setEmailAccountId", undefined>;
|
|
603
603
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
604
604
|
readonly args: import("valibot").ObjectSchema<{
|
|
605
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
605
606
|
readonly envelope: Omit<import("valibot").ObjectSchema<{
|
|
606
607
|
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>;
|
|
607
608
|
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>;
|
|
@@ -649,7 +650,6 @@ export declare const marcoSDK: {
|
|
|
649
650
|
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;
|
|
650
651
|
} | undefined;
|
|
651
652
|
};
|
|
652
|
-
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
653
653
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
654
654
|
}, undefined>;
|
|
655
655
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -657,7 +657,7 @@ export declare const marcoSDK: {
|
|
|
657
657
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
658
658
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
659
659
|
readonly args: import("valibot").ObjectSchema<{
|
|
660
|
-
readonly
|
|
660
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
661
661
|
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>;
|
|
662
662
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
663
663
|
}, undefined>;
|
package/package.json
CHANGED