@marcoappio/marco-config 2.0.309 → 2.0.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/clients/account.d.ts +9 -0
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +8 -0
- package/dist/clients/draft.d.ts +11 -2
- package/dist/clients/draft.d.ts.map +1 -1
- package/dist/clients/draft.js +9 -1
- package/dist/clients/index.d.ts +20 -2
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/index.d.ts +24 -2
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +24 -2
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +24 -2
- package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +1 -0
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +2 -1
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +3 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +10 -0
- package/dist/sdk/endpoints/private/sync/push/account.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.js +6 -0
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +11 -1
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/draft.js +6 -0
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +21 -1
- package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
- package/dist/sdk/index.d.ts +24 -2
- package/dist/sdk/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ export declare const account: {
|
|
|
4
4
|
readonly aliases: v.ArraySchema<v.ObjectSchema<{
|
|
5
5
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
6
6
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
7
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
8
|
readonly primary: v.BooleanSchema<undefined>;
|
|
8
9
|
}, undefined>, undefined>;
|
|
9
10
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -39,6 +40,7 @@ export declare const account: {
|
|
|
39
40
|
readonly alias: v.ObjectSchema<{
|
|
40
41
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
41
42
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
43
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
42
44
|
readonly primary: v.BooleanSchema<undefined>;
|
|
43
45
|
}, undefined>;
|
|
44
46
|
}, undefined>;
|
|
@@ -54,6 +56,13 @@ export declare const account: {
|
|
|
54
56
|
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
55
57
|
}, undefined>;
|
|
56
58
|
};
|
|
59
|
+
setAliasName: {
|
|
60
|
+
delta: v.ObjectSchema<{
|
|
61
|
+
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
62
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
63
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
64
|
+
}, undefined>;
|
|
65
|
+
};
|
|
57
66
|
setAliasPrimary: {
|
|
58
67
|
delta: v.ObjectSchema<{
|
|
59
68
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiB5B,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkFG,CAAA"}
|
package/dist/clients/account.js
CHANGED
|
@@ -7,6 +7,7 @@ const accountSettingsSchema = v.object({
|
|
|
7
7
|
const aliasSchema = v.object({
|
|
8
8
|
emailAddress: marcoSchemas.string.email(),
|
|
9
9
|
id: marcoSchemas.string.shortUUID(),
|
|
10
|
+
name: marcoSchemas.string.nullable(),
|
|
10
11
|
primary: v.boolean(),
|
|
11
12
|
});
|
|
12
13
|
export const account = {
|
|
@@ -53,6 +54,13 @@ export const account = {
|
|
|
53
54
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
54
55
|
}),
|
|
55
56
|
},
|
|
57
|
+
setAliasName: {
|
|
58
|
+
delta: v.object({
|
|
59
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
60
|
+
aliasId: marcoSchemas.string.shortUUID(),
|
|
61
|
+
name: marcoSchemas.string.nullable(),
|
|
62
|
+
}),
|
|
63
|
+
},
|
|
56
64
|
setAliasPrimary: {
|
|
57
65
|
delta: v.object({
|
|
58
66
|
accountId: marcoSchemas.string.shortUUID(),
|
package/dist/clients/draft.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
export declare const draft: {
|
|
3
3
|
model: v.ObjectSchema<{
|
|
4
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
4
5
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
5
6
|
readonly failed: v.BooleanSchema<undefined>;
|
|
6
7
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -17,7 +18,7 @@ export declare const draft: {
|
|
|
17
18
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
18
19
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
19
20
|
}, undefined>;
|
|
20
|
-
readonly emailAccountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
21
|
+
readonly emailAccountId: v.OptionalSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
21
22
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
22
23
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
23
24
|
readonly referencedMessageId: v.NullableSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
@@ -50,6 +51,7 @@ export declare const draft: {
|
|
|
50
51
|
};
|
|
51
52
|
createDraft: {
|
|
52
53
|
delta: v.ObjectSchema<{
|
|
54
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
53
55
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
54
56
|
readonly failed: v.BooleanSchema<undefined>;
|
|
55
57
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -66,7 +68,7 @@ export declare const draft: {
|
|
|
66
68
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
67
69
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
68
70
|
}, undefined>;
|
|
69
|
-
readonly emailAccountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
71
|
+
readonly emailAccountId: v.OptionalSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
70
72
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
71
73
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
72
74
|
readonly referencedMessageId: v.NullableSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
@@ -94,6 +96,13 @@ export declare const draft: {
|
|
|
94
96
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
95
97
|
}, undefined>;
|
|
96
98
|
};
|
|
99
|
+
setAliasId: {
|
|
100
|
+
delta: v.ObjectSchema<{
|
|
101
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
102
|
+
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
103
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
104
|
+
}, undefined>;
|
|
105
|
+
};
|
|
97
106
|
setContent: {
|
|
98
107
|
delta: v.ObjectSchema<{
|
|
99
108
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../src/clients/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../src/clients/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAoD5B,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFK,CAAA"}
|
package/dist/clients/draft.js
CHANGED
|
@@ -29,9 +29,10 @@ const attachmentSchema = v.object({
|
|
|
29
29
|
});
|
|
30
30
|
const scheduledForSchema = v.nullable(marcoSchemas.number.positiveInteger());
|
|
31
31
|
const draftSchema = v.object({
|
|
32
|
+
aliasId: marcoSchemas.string.shortUUID(),
|
|
32
33
|
attachments: v.array(attachmentSchema),
|
|
33
34
|
body: bodySchema,
|
|
34
|
-
emailAccountId: marcoSchemas.string.shortUUID(),
|
|
35
|
+
emailAccountId: v.optional(marcoSchemas.string.shortUUID()),
|
|
35
36
|
error: v.nullable(v.string()),
|
|
36
37
|
id: marcoSchemas.string.shortUUID(),
|
|
37
38
|
referencedMessageId: v.nullable(marcoSchemas.string.shortUUID()),
|
|
@@ -77,6 +78,13 @@ export const draft = {
|
|
|
77
78
|
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
78
79
|
}),
|
|
79
80
|
},
|
|
81
|
+
setAliasId: {
|
|
82
|
+
delta: v.object({
|
|
83
|
+
aliasId: marcoSchemas.string.shortUUID(),
|
|
84
|
+
id: marcoSchemas.string.shortUUID(),
|
|
85
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
86
|
+
}),
|
|
87
|
+
},
|
|
80
88
|
setContent: {
|
|
81
89
|
delta: v.object({
|
|
82
90
|
id: marcoSchemas.string.shortUUID(),
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare const marcoClients: {
|
|
|
5
5
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6
6
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
7
7
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
8
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
8
9
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
9
10
|
}, undefined>, undefined>;
|
|
10
11
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -40,6 +41,7 @@ export declare const marcoClients: {
|
|
|
40
41
|
readonly alias: import("valibot").ObjectSchema<{
|
|
41
42
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
42
43
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
44
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
43
45
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
44
46
|
}, undefined>;
|
|
45
47
|
}, undefined>;
|
|
@@ -55,6 +57,13 @@ export declare const marcoClients: {
|
|
|
55
57
|
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
56
58
|
}, undefined>;
|
|
57
59
|
};
|
|
60
|
+
setAliasName: {
|
|
61
|
+
delta: import("valibot").ObjectSchema<{
|
|
62
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
63
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
64
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
65
|
+
}, undefined>;
|
|
66
|
+
};
|
|
58
67
|
setAliasPrimary: {
|
|
59
68
|
delta: import("valibot").ObjectSchema<{
|
|
60
69
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -139,6 +148,7 @@ export declare const marcoClients: {
|
|
|
139
148
|
};
|
|
140
149
|
draft: {
|
|
141
150
|
model: import("valibot").ObjectSchema<{
|
|
151
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
142
152
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
143
153
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
144
154
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -155,7 +165,7 @@ export declare const marcoClients: {
|
|
|
155
165
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
156
166
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
157
167
|
}, undefined>;
|
|
158
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
168
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
159
169
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
160
170
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
161
171
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -188,6 +198,7 @@ export declare const marcoClients: {
|
|
|
188
198
|
};
|
|
189
199
|
createDraft: {
|
|
190
200
|
delta: import("valibot").ObjectSchema<{
|
|
201
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
191
202
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
192
203
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
193
204
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -204,7 +215,7 @@ export declare const marcoClients: {
|
|
|
204
215
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
205
216
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
206
217
|
}, undefined>;
|
|
207
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
218
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
208
219
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
209
220
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
210
221
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -232,6 +243,13 @@ export declare const marcoClients: {
|
|
|
232
243
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
233
244
|
}, undefined>;
|
|
234
245
|
};
|
|
246
|
+
setAliasId: {
|
|
247
|
+
delta: import("valibot").ObjectSchema<{
|
|
248
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
249
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
250
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
251
|
+
}, undefined>;
|
|
252
|
+
};
|
|
235
253
|
setContent: {
|
|
236
254
|
delta: import("valibot").ObjectSchema<{
|
|
237
255
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAE3C,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAE3C,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMc,CAAA"}
|
|
@@ -103,6 +103,7 @@ export declare const endpoints: {
|
|
|
103
103
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
104
104
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
105
105
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
106
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
106
107
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
107
108
|
}, undefined>, undefined>;
|
|
108
109
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -197,6 +198,7 @@ export declare const endpoints: {
|
|
|
197
198
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
198
199
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
199
200
|
readonly value: import("valibot").ObjectSchema<{
|
|
201
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
200
202
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
201
203
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
202
204
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -213,7 +215,7 @@ export declare const endpoints: {
|
|
|
213
215
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
214
216
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
215
217
|
}, undefined>;
|
|
216
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
218
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
217
219
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
218
220
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
219
221
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -376,6 +378,7 @@ export declare const endpoints: {
|
|
|
376
378
|
readonly alias: import("valibot").ObjectSchema<{
|
|
377
379
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
378
380
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
381
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
379
382
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
380
383
|
}, undefined>;
|
|
381
384
|
}, undefined>;
|
|
@@ -397,6 +400,15 @@ export declare const endpoints: {
|
|
|
397
400
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
398
401
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
399
402
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
403
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
404
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
405
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
406
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
407
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
408
|
+
}, undefined>;
|
|
409
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
410
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
411
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
400
412
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
401
413
|
readonly args: import("valibot").ObjectSchema<{
|
|
402
414
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -517,6 +529,7 @@ export declare const endpoints: {
|
|
|
517
529
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
518
530
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
519
531
|
readonly args: import("valibot").ObjectSchema<{
|
|
532
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
520
533
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
521
534
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
522
535
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -533,7 +546,7 @@ export declare const endpoints: {
|
|
|
533
546
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
534
547
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
535
548
|
}, undefined>;
|
|
536
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
549
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
537
550
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
538
551
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
539
552
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -569,6 +582,15 @@ export declare const endpoints: {
|
|
|
569
582
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
570
583
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
571
584
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
585
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
586
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
587
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
588
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
589
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
590
|
+
}, undefined>;
|
|
591
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
592
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
593
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
572
594
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
573
595
|
readonly args: import("valibot").ObjectSchema<{
|
|
574
596
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,OAAO,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAcjE,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,OAAO,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAcjE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGM,CAAA"}
|
|
@@ -100,6 +100,7 @@ export declare const privateGroup: {
|
|
|
100
100
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
101
101
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
102
102
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
103
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
103
104
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
104
105
|
}, undefined>, undefined>;
|
|
105
106
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -194,6 +195,7 @@ export declare const privateGroup: {
|
|
|
194
195
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
195
196
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
196
197
|
readonly value: import("valibot").ObjectSchema<{
|
|
198
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
197
199
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
198
200
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
199
201
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -210,7 +212,7 @@ export declare const privateGroup: {
|
|
|
210
212
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
211
213
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
212
214
|
}, undefined>;
|
|
213
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
215
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
214
216
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
215
217
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
216
218
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -373,6 +375,7 @@ export declare const privateGroup: {
|
|
|
373
375
|
readonly alias: import("valibot").ObjectSchema<{
|
|
374
376
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
375
377
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
378
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
376
379
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
377
380
|
}, undefined>;
|
|
378
381
|
}, undefined>;
|
|
@@ -394,6 +397,15 @@ export declare const privateGroup: {
|
|
|
394
397
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
395
398
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
396
399
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
400
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
401
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
402
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
403
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
404
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
405
|
+
}, undefined>;
|
|
406
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
407
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
408
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
397
409
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
398
410
|
readonly args: import("valibot").ObjectSchema<{
|
|
399
411
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -514,6 +526,7 @@ export declare const privateGroup: {
|
|
|
514
526
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
515
527
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
516
528
|
readonly args: import("valibot").ObjectSchema<{
|
|
529
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
517
530
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
518
531
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
519
532
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -530,7 +543,7 @@ export declare const privateGroup: {
|
|
|
530
543
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
531
544
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
532
545
|
}, undefined>;
|
|
533
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
546
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
534
547
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
535
548
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
536
549
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -566,6 +579,15 @@ export declare const privateGroup: {
|
|
|
566
579
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
567
580
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
568
581
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
582
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
583
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
584
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
585
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
586
|
+
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
|
+
}, undefined>;
|
|
588
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
589
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
590
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
569
591
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
570
592
|
readonly args: import("valibot").ObjectSchema<{
|
|
571
593
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKxB,CAAA"}
|
|
@@ -34,6 +34,7 @@ export declare const sync: {
|
|
|
34
34
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
35
35
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
36
36
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
37
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
37
38
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
38
39
|
}, undefined>, undefined>;
|
|
39
40
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -128,6 +129,7 @@ export declare const sync: {
|
|
|
128
129
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
129
130
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
130
131
|
readonly value: import("valibot").ObjectSchema<{
|
|
132
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
131
133
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
132
134
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
133
135
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -144,7 +146,7 @@ export declare const sync: {
|
|
|
144
146
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
145
147
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
146
148
|
}, undefined>;
|
|
147
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
149
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
148
150
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
149
151
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
150
152
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -307,6 +309,7 @@ export declare const sync: {
|
|
|
307
309
|
readonly alias: import("valibot").ObjectSchema<{
|
|
308
310
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
309
311
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
312
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
310
313
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
311
314
|
}, undefined>;
|
|
312
315
|
}, undefined>;
|
|
@@ -328,6 +331,15 @@ export declare const sync: {
|
|
|
328
331
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
329
332
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
330
333
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
334
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
335
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
336
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
337
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
338
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
339
|
+
}, undefined>;
|
|
340
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
341
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
342
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
331
343
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
332
344
|
readonly args: import("valibot").ObjectSchema<{
|
|
333
345
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -448,6 +460,7 @@ export declare const sync: {
|
|
|
448
460
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
449
461
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
450
462
|
readonly args: import("valibot").ObjectSchema<{
|
|
463
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
451
464
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
452
465
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
453
466
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -464,7 +477,7 @@ export declare const sync: {
|
|
|
464
477
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
465
478
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
466
479
|
}, undefined>;
|
|
467
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
480
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
468
481
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
469
482
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
470
483
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -500,6 +513,15 @@ export declare const sync: {
|
|
|
500
513
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
501
514
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
502
515
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
516
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
517
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
518
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
519
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
520
|
+
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
|
+
}, undefined>;
|
|
522
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
523
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
524
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
503
525
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
504
526
|
readonly args: import("valibot").ObjectSchema<{
|
|
505
527
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/sync/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/sync/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
|
|
@@ -33,6 +33,7 @@ export declare const syncPullAccount: import("../../../../..").EndpointConfig<"/
|
|
|
33
33
|
readonly aliases: v.ArraySchema<v.ObjectSchema<{
|
|
34
34
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
35
35
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
36
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
36
37
|
readonly primary: v.BooleanSchema<undefined>;
|
|
37
38
|
}, undefined>, undefined>;
|
|
38
39
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAwB1B,CAAA"}
|
|
@@ -30,6 +30,7 @@ export declare const syncPullDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
30
30
|
readonly key: v.StringSchema<undefined>;
|
|
31
31
|
readonly op: v.LiteralSchema<"put", undefined>;
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
33
34
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
34
35
|
readonly failed: v.BooleanSchema<undefined>;
|
|
35
36
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -46,7 +47,7 @@ export declare const syncPullDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
46
47
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
47
48
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
48
49
|
}, undefined>;
|
|
49
|
-
readonly emailAccountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
50
|
+
readonly emailAccountId: v.OptionalSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
50
51
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
51
52
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
52
53
|
readonly referencedMessageId: v.NullableSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAuBxB,CAAA"}
|
|
@@ -33,6 +33,7 @@ export declare const pull: {
|
|
|
33
33
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
34
34
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
35
35
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
36
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
36
37
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
37
38
|
}, undefined>, undefined>;
|
|
38
39
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -127,6 +128,7 @@ export declare const pull: {
|
|
|
127
128
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
128
129
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
129
130
|
readonly value: import("valibot").ObjectSchema<{
|
|
131
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
130
132
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
131
133
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
132
134
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -143,7 +145,7 @@ export declare const pull: {
|
|
|
143
145
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
144
146
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
145
147
|
}, undefined>;
|
|
146
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
148
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
147
149
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
148
150
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
149
151
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA"}
|
|
@@ -17,6 +17,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
17
17
|
readonly alias: v.ObjectSchema<{
|
|
18
18
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
19
19
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
20
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
20
21
|
readonly primary: v.BooleanSchema<undefined>;
|
|
21
22
|
}, undefined>;
|
|
22
23
|
}, undefined>;
|
|
@@ -38,6 +39,15 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
38
39
|
readonly clientID: v.StringSchema<undefined>;
|
|
39
40
|
readonly id: v.NumberSchema<undefined>;
|
|
40
41
|
readonly name: v.LiteralSchema<"deleteAlias", undefined>;
|
|
42
|
+
}, undefined> | v.ObjectSchema<{
|
|
43
|
+
readonly args: v.ObjectSchema<{
|
|
44
|
+
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
45
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
46
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
47
|
+
}, undefined>;
|
|
48
|
+
readonly clientID: v.StringSchema<undefined>;
|
|
49
|
+
readonly id: v.NumberSchema<undefined>;
|
|
50
|
+
readonly name: v.LiteralSchema<"setAliasName", undefined>;
|
|
41
51
|
}, undefined> | v.ObjectSchema<{
|
|
42
52
|
readonly args: v.ObjectSchema<{
|
|
43
53
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAuE1B,CAAA"}
|
|
@@ -30,6 +30,12 @@ export const syncPushAccount = createEndpoint({
|
|
|
30
30
|
id: v.number(),
|
|
31
31
|
name: v.literal('deleteAlias'),
|
|
32
32
|
}),
|
|
33
|
+
setAliasName: v.object({
|
|
34
|
+
args: account.mutators.setAliasName.delta,
|
|
35
|
+
clientID: v.string(),
|
|
36
|
+
id: v.number(),
|
|
37
|
+
name: v.literal('setAliasName'),
|
|
38
|
+
}),
|
|
33
39
|
setAliasPrimary: v.object({
|
|
34
40
|
args: account.mutators.setAliasPrimary.delta,
|
|
35
41
|
clientID: v.string(),
|
|
@@ -28,6 +28,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
28
28
|
readonly name: v.LiteralSchema<"createAttachment", undefined>;
|
|
29
29
|
}, undefined> | v.ObjectSchema<{
|
|
30
30
|
readonly args: v.ObjectSchema<{
|
|
31
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
31
32
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
32
33
|
readonly failed: v.BooleanSchema<undefined>;
|
|
33
34
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -44,7 +45,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
44
45
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
45
46
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
46
47
|
}, undefined>;
|
|
47
|
-
readonly emailAccountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
48
|
+
readonly emailAccountId: v.OptionalSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
48
49
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
49
50
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
50
51
|
readonly referencedMessageId: v.NullableSchema<v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
@@ -80,6 +81,15 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
80
81
|
readonly clientID: v.StringSchema<undefined>;
|
|
81
82
|
readonly id: v.NumberSchema<undefined>;
|
|
82
83
|
readonly name: v.LiteralSchema<"sendDraft", undefined>;
|
|
84
|
+
}, undefined> | v.ObjectSchema<{
|
|
85
|
+
readonly args: v.ObjectSchema<{
|
|
86
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
87
|
+
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
88
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
89
|
+
}, undefined>;
|
|
90
|
+
readonly clientID: v.StringSchema<undefined>;
|
|
91
|
+
readonly id: v.NumberSchema<undefined>;
|
|
92
|
+
readonly name: v.LiteralSchema<"setAliasId", undefined>;
|
|
83
93
|
}, undefined> | v.ObjectSchema<{
|
|
84
94
|
readonly args: v.ObjectSchema<{
|
|
85
95
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAyFxB,CAAA"}
|
|
@@ -42,6 +42,12 @@ export const syncPushDraft = createEndpoint({
|
|
|
42
42
|
id: v.number(),
|
|
43
43
|
name: v.literal('sendDraft'),
|
|
44
44
|
}),
|
|
45
|
+
setAliasId: v.object({
|
|
46
|
+
args: draft.mutators.setAliasId.delta,
|
|
47
|
+
clientID: v.string(),
|
|
48
|
+
id: v.number(),
|
|
49
|
+
name: v.literal('setAliasId'),
|
|
50
|
+
}),
|
|
45
51
|
setContent: v.object({
|
|
46
52
|
args: draft.mutators.setContent.delta,
|
|
47
53
|
clientID: v.string(),
|
|
@@ -17,6 +17,7 @@ export declare const push: {
|
|
|
17
17
|
readonly alias: import("valibot").ObjectSchema<{
|
|
18
18
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
19
19
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
20
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
20
21
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
21
22
|
}, undefined>;
|
|
22
23
|
}, undefined>;
|
|
@@ -38,6 +39,15 @@ export declare const push: {
|
|
|
38
39
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
39
40
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
40
41
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
42
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
43
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
44
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
45
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
46
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
47
|
+
}, undefined>;
|
|
48
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
49
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
50
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
41
51
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
42
52
|
readonly args: import("valibot").ObjectSchema<{
|
|
43
53
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -158,6 +168,7 @@ export declare const push: {
|
|
|
158
168
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
159
169
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
160
170
|
readonly args: import("valibot").ObjectSchema<{
|
|
171
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
161
172
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
162
173
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
163
174
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -174,7 +185,7 @@ export declare const push: {
|
|
|
174
185
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
175
186
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
176
187
|
}, undefined>;
|
|
177
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
188
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
178
189
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
179
190
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
180
191
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -210,6 +221,15 @@ export declare const push: {
|
|
|
210
221
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
211
222
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
212
223
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
224
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
225
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
226
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
227
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
228
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
229
|
+
}, undefined>;
|
|
230
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
231
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
232
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
213
233
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
214
234
|
readonly args: import("valibot").ObjectSchema<{
|
|
215
235
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAA"}
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export declare const marcoSDK: {
|
|
|
102
102
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
103
103
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
104
104
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
105
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
105
106
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
106
107
|
}, undefined>, undefined>;
|
|
107
108
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -196,6 +197,7 @@ export declare const marcoSDK: {
|
|
|
196
197
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
197
198
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
198
199
|
readonly value: import("valibot").ObjectSchema<{
|
|
200
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
199
201
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
200
202
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
201
203
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -212,7 +214,7 @@ export declare const marcoSDK: {
|
|
|
212
214
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
213
215
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
214
216
|
}, undefined>;
|
|
215
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
217
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
216
218
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
217
219
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
218
220
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -375,6 +377,7 @@ export declare const marcoSDK: {
|
|
|
375
377
|
readonly alias: import("valibot").ObjectSchema<{
|
|
376
378
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
377
379
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
380
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
378
381
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
379
382
|
}, undefined>;
|
|
380
383
|
}, undefined>;
|
|
@@ -396,6 +399,15 @@ export declare const marcoSDK: {
|
|
|
396
399
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
397
400
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
398
401
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
402
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
403
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
404
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
405
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
406
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
407
|
+
}, undefined>;
|
|
408
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
409
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
410
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
399
411
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
400
412
|
readonly args: import("valibot").ObjectSchema<{
|
|
401
413
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -516,6 +528,7 @@ export declare const marcoSDK: {
|
|
|
516
528
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
517
529
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
518
530
|
readonly args: import("valibot").ObjectSchema<{
|
|
531
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
519
532
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
520
533
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
521
534
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
@@ -532,7 +545,7 @@ export declare const marcoSDK: {
|
|
|
532
545
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
533
546
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
534
547
|
}, undefined>;
|
|
535
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
548
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
536
549
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
537
550
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
538
551
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -568,6 +581,15 @@ export declare const marcoSDK: {
|
|
|
568
581
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
569
582
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
570
583
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
584
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
585
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
586
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
587
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
588
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
589
|
+
}, undefined>;
|
|
590
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
591
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
592
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
571
593
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
572
594
|
readonly args: import("valibot").ObjectSchema<{
|
|
573
595
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
package/dist/sdk/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
|
package/package.json
CHANGED