@marcoappio/marco-config 2.0.309 → 2.0.311
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 +22 -5
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +12 -1
- 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 +33 -7
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/index.d.ts +37 -7
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +37 -7
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +37 -7
- package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +14 -5
- 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 +16 -6
- 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 +37 -7
- package/dist/sdk/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
export declare const account: {
|
|
3
3
|
model: v.ObjectSchema<{
|
|
4
|
-
readonly aliases: v.
|
|
5
|
-
readonly
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
readonly aliases: v.ObjectSchema<{
|
|
5
|
+
readonly nonPrimary: v.ArraySchema<v.ObjectSchema<{
|
|
6
|
+
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
7
|
+
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
8
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
9
|
+
readonly primary: v.BooleanSchema<undefined>;
|
|
10
|
+
}, undefined>, undefined>;
|
|
11
|
+
readonly primary: v.ObjectSchema<{
|
|
12
|
+
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
13
|
+
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
14
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
15
|
+
readonly primary: v.BooleanSchema<undefined>;
|
|
16
|
+
}, undefined>;
|
|
17
|
+
}, undefined>;
|
|
9
18
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
10
19
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
11
20
|
readonly imapConnectionStatus: v.UnionSchema<[v.LiteralSchema<"AWAITING_CONNECTION", undefined>, v.LiteralSchema<"CONNECTED", undefined>, v.LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -39,6 +48,7 @@ export declare const account: {
|
|
|
39
48
|
readonly alias: v.ObjectSchema<{
|
|
40
49
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
41
50
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
51
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
42
52
|
readonly primary: v.BooleanSchema<undefined>;
|
|
43
53
|
}, undefined>;
|
|
44
54
|
}, undefined>;
|
|
@@ -54,6 +64,13 @@ export declare const account: {
|
|
|
54
64
|
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
55
65
|
}, undefined>;
|
|
56
66
|
};
|
|
67
|
+
setAliasName: {
|
|
68
|
+
delta: v.ObjectSchema<{
|
|
69
|
+
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
70
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
71
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
72
|
+
}, undefined>;
|
|
73
|
+
};
|
|
57
74
|
setAliasPrimary: {
|
|
58
75
|
delta: v.ObjectSchema<{
|
|
59
76
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFG,CAAA"}
|
package/dist/clients/account.js
CHANGED
|
@@ -7,11 +7,15 @@ 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 = {
|
|
13
14
|
model: v.object({
|
|
14
|
-
aliases: v.
|
|
15
|
+
aliases: v.object({
|
|
16
|
+
nonPrimary: v.array(aliasSchema),
|
|
17
|
+
primary: aliasSchema,
|
|
18
|
+
}),
|
|
15
19
|
emailAddress: marcoSchemas.string.email(),
|
|
16
20
|
id: marcoSchemas.string.shortUUID(),
|
|
17
21
|
imapConnectionStatus: marcoSchemas.emailAccount.imapConnectionStatus(),
|
|
@@ -53,6 +57,13 @@ export const account = {
|
|
|
53
57
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
54
58
|
}),
|
|
55
59
|
},
|
|
60
|
+
setAliasName: {
|
|
61
|
+
delta: v.object({
|
|
62
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
63
|
+
aliasId: marcoSchemas.string.shortUUID(),
|
|
64
|
+
name: marcoSchemas.string.nullable(),
|
|
65
|
+
}),
|
|
66
|
+
},
|
|
56
67
|
setAliasPrimary: {
|
|
57
68
|
delta: v.object({
|
|
58
69
|
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
|
@@ -2,11 +2,20 @@ export { marcoClientsUtils } from './utils';
|
|
|
2
2
|
export declare const marcoClients: {
|
|
3
3
|
account: {
|
|
4
4
|
model: import("valibot").ObjectSchema<{
|
|
5
|
-
readonly aliases: import("valibot").
|
|
6
|
-
readonly
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
6
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
7
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
8
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
9
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
10
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
11
|
+
}, undefined>, undefined>;
|
|
12
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
13
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
14
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
15
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
16
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
17
|
+
}, undefined>;
|
|
18
|
+
}, undefined>;
|
|
10
19
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
11
20
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
12
21
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -40,6 +49,7 @@ export declare const marcoClients: {
|
|
|
40
49
|
readonly alias: import("valibot").ObjectSchema<{
|
|
41
50
|
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
51
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
52
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
43
53
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
44
54
|
}, undefined>;
|
|
45
55
|
}, undefined>;
|
|
@@ -55,6 +65,13 @@ export declare const marcoClients: {
|
|
|
55
65
|
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
56
66
|
}, undefined>;
|
|
57
67
|
};
|
|
68
|
+
setAliasName: {
|
|
69
|
+
delta: import("valibot").ObjectSchema<{
|
|
70
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
71
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
72
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
73
|
+
}, undefined>;
|
|
74
|
+
};
|
|
58
75
|
setAliasPrimary: {
|
|
59
76
|
delta: import("valibot").ObjectSchema<{
|
|
60
77
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -139,6 +156,7 @@ export declare const marcoClients: {
|
|
|
139
156
|
};
|
|
140
157
|
draft: {
|
|
141
158
|
model: import("valibot").ObjectSchema<{
|
|
159
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
142
160
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
143
161
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
144
162
|
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 +173,7 @@ export declare const marcoClients: {
|
|
|
155
173
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
156
174
|
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
175
|
}, undefined>;
|
|
158
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
176
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
159
177
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
160
178
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
161
179
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -188,6 +206,7 @@ export declare const marcoClients: {
|
|
|
188
206
|
};
|
|
189
207
|
createDraft: {
|
|
190
208
|
delta: import("valibot").ObjectSchema<{
|
|
209
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
191
210
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
192
211
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
193
212
|
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 +223,7 @@ export declare const marcoClients: {
|
|
|
204
223
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
205
224
|
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
225
|
}, undefined>;
|
|
207
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
226
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
208
227
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
209
228
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
210
229
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -232,6 +251,13 @@ export declare const marcoClients: {
|
|
|
232
251
|
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
252
|
}, undefined>;
|
|
234
253
|
};
|
|
254
|
+
setAliasId: {
|
|
255
|
+
delta: import("valibot").ObjectSchema<{
|
|
256
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
257
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
258
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
259
|
+
}, undefined>;
|
|
260
|
+
};
|
|
235
261
|
setContent: {
|
|
236
262
|
delta: import("valibot").ObjectSchema<{
|
|
237
263
|
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"}
|
|
@@ -100,11 +100,20 @@ export declare const endpoints: {
|
|
|
100
100
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
101
101
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
102
102
|
readonly value: import("valibot").ObjectSchema<{
|
|
103
|
-
readonly aliases: import("valibot").
|
|
104
|
-
readonly
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
103
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
104
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
105
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
106
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
107
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
108
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
109
|
+
}, undefined>, undefined>;
|
|
110
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
111
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
112
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
113
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
114
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
115
|
+
}, undefined>;
|
|
116
|
+
}, undefined>;
|
|
108
117
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
109
118
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
110
119
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -197,6 +206,7 @@ export declare const endpoints: {
|
|
|
197
206
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
198
207
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
199
208
|
readonly value: import("valibot").ObjectSchema<{
|
|
209
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
200
210
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
201
211
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
202
212
|
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 +223,7 @@ export declare const endpoints: {
|
|
|
213
223
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
214
224
|
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
225
|
}, undefined>;
|
|
216
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
226
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
217
227
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
218
228
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
219
229
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -376,6 +386,7 @@ export declare const endpoints: {
|
|
|
376
386
|
readonly alias: import("valibot").ObjectSchema<{
|
|
377
387
|
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
388
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
389
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
379
390
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
380
391
|
}, undefined>;
|
|
381
392
|
}, undefined>;
|
|
@@ -397,6 +408,15 @@ export declare const endpoints: {
|
|
|
397
408
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
398
409
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
399
410
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
411
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
412
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
413
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
414
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
415
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
416
|
+
}, undefined>;
|
|
417
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
418
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
419
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
400
420
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
401
421
|
readonly args: import("valibot").ObjectSchema<{
|
|
402
422
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -517,6 +537,7 @@ export declare const endpoints: {
|
|
|
517
537
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
518
538
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
519
539
|
readonly args: import("valibot").ObjectSchema<{
|
|
540
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
520
541
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
521
542
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
522
543
|
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 +554,7 @@ export declare const endpoints: {
|
|
|
533
554
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
534
555
|
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
556
|
}, undefined>;
|
|
536
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
557
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
537
558
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
538
559
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
539
560
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -569,6 +590,15 @@ export declare const endpoints: {
|
|
|
569
590
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
570
591
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
571
592
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
593
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
594
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
595
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
596
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
597
|
+
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
|
+
}, undefined>;
|
|
599
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
600
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
601
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
572
602
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
573
603
|
readonly args: import("valibot").ObjectSchema<{
|
|
574
604
|
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"}
|
|
@@ -97,11 +97,20 @@ export declare const privateGroup: {
|
|
|
97
97
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
98
98
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
99
99
|
readonly value: import("valibot").ObjectSchema<{
|
|
100
|
-
readonly aliases: import("valibot").
|
|
101
|
-
readonly
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
100
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
101
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
102
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
103
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
104
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
105
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
106
|
+
}, undefined>, undefined>;
|
|
107
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
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>;
|
|
109
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
110
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
111
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
112
|
+
}, undefined>;
|
|
113
|
+
}, undefined>;
|
|
105
114
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
106
115
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
107
116
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -194,6 +203,7 @@ export declare const privateGroup: {
|
|
|
194
203
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
195
204
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
196
205
|
readonly value: import("valibot").ObjectSchema<{
|
|
206
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
197
207
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
198
208
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
199
209
|
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 +220,7 @@ export declare const privateGroup: {
|
|
|
210
220
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
211
221
|
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
222
|
}, undefined>;
|
|
213
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
223
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
214
224
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
215
225
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
216
226
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -373,6 +383,7 @@ export declare const privateGroup: {
|
|
|
373
383
|
readonly alias: import("valibot").ObjectSchema<{
|
|
374
384
|
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
385
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
386
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
376
387
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
377
388
|
}, undefined>;
|
|
378
389
|
}, undefined>;
|
|
@@ -394,6 +405,15 @@ export declare const privateGroup: {
|
|
|
394
405
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
395
406
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
396
407
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
408
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
409
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
410
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
411
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
412
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
413
|
+
}, undefined>;
|
|
414
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
415
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
416
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
397
417
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
398
418
|
readonly args: import("valibot").ObjectSchema<{
|
|
399
419
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -514,6 +534,7 @@ export declare const privateGroup: {
|
|
|
514
534
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
515
535
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
516
536
|
readonly args: import("valibot").ObjectSchema<{
|
|
537
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
517
538
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
518
539
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
519
540
|
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 +551,7 @@ export declare const privateGroup: {
|
|
|
530
551
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
531
552
|
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
553
|
}, undefined>;
|
|
533
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
554
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
534
555
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
535
556
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
536
557
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -566,6 +587,15 @@ export declare const privateGroup: {
|
|
|
566
587
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
567
588
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
568
589
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
590
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
591
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
592
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
593
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
594
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
595
|
+
}, undefined>;
|
|
596
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
597
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
598
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
569
599
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
570
600
|
readonly args: import("valibot").ObjectSchema<{
|
|
571
601
|
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"}
|
|
@@ -31,11 +31,20 @@ export declare const sync: {
|
|
|
31
31
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
32
32
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
33
33
|
readonly value: import("valibot").ObjectSchema<{
|
|
34
|
-
readonly aliases: import("valibot").
|
|
35
|
-
readonly
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
35
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
36
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
37
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
38
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
39
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
40
|
+
}, undefined>, undefined>;
|
|
41
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
42
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
43
|
+
readonly id: import("valibot").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>;
|
|
45
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
46
|
+
}, undefined>;
|
|
47
|
+
}, undefined>;
|
|
39
48
|
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
49
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
41
50
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -128,6 +137,7 @@ export declare const sync: {
|
|
|
128
137
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
129
138
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
130
139
|
readonly value: import("valibot").ObjectSchema<{
|
|
140
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
131
141
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
132
142
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
133
143
|
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 +154,7 @@ export declare const sync: {
|
|
|
144
154
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
145
155
|
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
156
|
}, undefined>;
|
|
147
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
157
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
148
158
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
149
159
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
150
160
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -307,6 +317,7 @@ export declare const sync: {
|
|
|
307
317
|
readonly alias: import("valibot").ObjectSchema<{
|
|
308
318
|
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
319
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
320
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
310
321
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
311
322
|
}, undefined>;
|
|
312
323
|
}, undefined>;
|
|
@@ -328,6 +339,15 @@ export declare const sync: {
|
|
|
328
339
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
329
340
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
330
341
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
342
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
343
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
344
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
345
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
346
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
347
|
+
}, undefined>;
|
|
348
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
349
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
350
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
331
351
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
332
352
|
readonly args: import("valibot").ObjectSchema<{
|
|
333
353
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -448,6 +468,7 @@ export declare const sync: {
|
|
|
448
468
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
449
469
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
450
470
|
readonly args: import("valibot").ObjectSchema<{
|
|
471
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
451
472
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
452
473
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
453
474
|
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 +485,7 @@ export declare const sync: {
|
|
|
464
485
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
465
486
|
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
487
|
}, undefined>;
|
|
467
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
488
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
468
489
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
469
490
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
470
491
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -500,6 +521,15 @@ export declare const sync: {
|
|
|
500
521
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
501
522
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
502
523
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
524
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
525
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
526
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
527
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
528
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
529
|
+
}, undefined>;
|
|
530
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
531
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
532
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
503
533
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
504
534
|
readonly args: import("valibot").ObjectSchema<{
|
|
505
535
|
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"}
|
|
@@ -30,11 +30,20 @@ export declare const syncPullAccount: import("../../../../..").EndpointConfig<"/
|
|
|
30
30
|
readonly key: v.StringSchema<undefined>;
|
|
31
31
|
readonly op: v.LiteralSchema<"put", undefined>;
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
|
-
readonly aliases: v.
|
|
34
|
-
readonly
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
readonly aliases: v.ObjectSchema<{
|
|
34
|
+
readonly nonPrimary: v.ArraySchema<v.ObjectSchema<{
|
|
35
|
+
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
36
|
+
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
37
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
38
|
+
readonly primary: v.BooleanSchema<undefined>;
|
|
39
|
+
}, undefined>, undefined>;
|
|
40
|
+
readonly primary: v.ObjectSchema<{
|
|
41
|
+
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
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>;
|
|
44
|
+
readonly primary: v.BooleanSchema<undefined>;
|
|
45
|
+
}, undefined>;
|
|
46
|
+
}, undefined>;
|
|
38
47
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
39
48
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
40
49
|
readonly imapConnectionStatus: v.UnionSchema<[v.LiteralSchema<"AWAITING_CONNECTION", undefined>, v.LiteralSchema<"CONNECTED", undefined>, v.LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, v.LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", 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"}
|
|
@@ -30,11 +30,20 @@ export declare const pull: {
|
|
|
30
30
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
31
31
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
32
32
|
readonly value: import("valibot").ObjectSchema<{
|
|
33
|
-
readonly aliases: import("valibot").
|
|
34
|
-
readonly
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
34
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
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
|
+
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>;
|
|
38
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
39
|
+
}, undefined>, undefined>;
|
|
40
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
41
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
42
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
43
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
44
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
45
|
+
}, undefined>;
|
|
46
|
+
}, undefined>;
|
|
38
47
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
39
48
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
40
49
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -127,6 +136,7 @@ export declare const pull: {
|
|
|
127
136
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
128
137
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
129
138
|
readonly value: import("valibot").ObjectSchema<{
|
|
139
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
130
140
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
131
141
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
132
142
|
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 +153,7 @@ export declare const pull: {
|
|
|
143
153
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
144
154
|
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
155
|
}, undefined>;
|
|
146
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
156
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
147
157
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
148
158
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
149
159
|
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
|
@@ -99,11 +99,20 @@ export declare const marcoSDK: {
|
|
|
99
99
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
100
100
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
101
101
|
readonly value: import("valibot").ObjectSchema<{
|
|
102
|
-
readonly aliases: import("valibot").
|
|
103
|
-
readonly
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
102
|
+
readonly aliases: import("valibot").ObjectSchema<{
|
|
103
|
+
readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
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
|
+
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>;
|
|
107
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
108
|
+
}, undefined>, undefined>;
|
|
109
|
+
readonly primary: import("valibot").ObjectSchema<{
|
|
110
|
+
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
111
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
112
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
113
|
+
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
114
|
+
}, undefined>;
|
|
115
|
+
}, undefined>;
|
|
107
116
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
108
117
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
109
118
|
readonly imapConnectionStatus: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"AWAITING_CONNECTION", undefined>, import("valibot").LiteralSchema<"CONNECTED", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_CONNECTION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_OAUTH_GOOGLE_EXCHANGE_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_AUTHENTICATION_ERROR", undefined>, import("valibot").LiteralSchema<"CONNECTION_FAILED_UNKNOWN_ERROR", undefined>], undefined>;
|
|
@@ -196,6 +205,7 @@ export declare const marcoSDK: {
|
|
|
196
205
|
readonly key: import("valibot").StringSchema<undefined>;
|
|
197
206
|
readonly op: import("valibot").LiteralSchema<"put", undefined>;
|
|
198
207
|
readonly value: import("valibot").ObjectSchema<{
|
|
208
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
199
209
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
200
210
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
201
211
|
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 +222,7 @@ export declare const marcoSDK: {
|
|
|
212
222
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
213
223
|
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
224
|
}, undefined>;
|
|
215
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
225
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
216
226
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
217
227
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
218
228
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -375,6 +385,7 @@ export declare const marcoSDK: {
|
|
|
375
385
|
readonly alias: import("valibot").ObjectSchema<{
|
|
376
386
|
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
387
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
388
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
378
389
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
379
390
|
}, undefined>;
|
|
380
391
|
}, undefined>;
|
|
@@ -396,6 +407,15 @@ export declare const marcoSDK: {
|
|
|
396
407
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
397
408
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
398
409
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
410
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
411
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
412
|
+
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
413
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
414
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
415
|
+
}, undefined>;
|
|
416
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
417
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
418
|
+
readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
|
|
399
419
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
400
420
|
readonly args: import("valibot").ObjectSchema<{
|
|
401
421
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -516,6 +536,7 @@ export declare const marcoSDK: {
|
|
|
516
536
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
517
537
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
518
538
|
readonly args: import("valibot").ObjectSchema<{
|
|
539
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
519
540
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
520
541
|
readonly failed: import("valibot").BooleanSchema<undefined>;
|
|
521
542
|
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 +553,7 @@ export declare const marcoSDK: {
|
|
|
532
553
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
533
554
|
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
555
|
}, undefined>;
|
|
535
|
-
readonly emailAccountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
556
|
+
readonly emailAccountId: import("valibot").OptionalSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
536
557
|
readonly error: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
537
558
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
538
559
|
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>, undefined>;
|
|
@@ -568,6 +589,15 @@ export declare const marcoSDK: {
|
|
|
568
589
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
569
590
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
570
591
|
readonly name: import("valibot").LiteralSchema<"sendDraft", undefined>;
|
|
592
|
+
}, undefined> | import("valibot").ObjectSchema<{
|
|
593
|
+
readonly args: import("valibot").ObjectSchema<{
|
|
594
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
595
|
+
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
596
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
597
|
+
}, undefined>;
|
|
598
|
+
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
599
|
+
readonly id: import("valibot").NumberSchema<undefined>;
|
|
600
|
+
readonly name: import("valibot").LiteralSchema<"setAliasId", undefined>;
|
|
571
601
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
572
602
|
readonly args: import("valibot").ObjectSchema<{
|
|
573
603
|
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