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