@marcoappio/marco-config 2.0.246 → 2.0.248
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/clients/account.d.ts +8 -8
- package/dist/clients/account.js +5 -5
- package/dist/clients/contact.d.ts +1 -1
- package/dist/clients/contact.js +1 -1
- package/dist/clients/draft.d.ts +21 -21
- package/dist/clients/draft.js +13 -13
- package/dist/clients/index.d.ts +48 -48
- package/dist/clients/thread.d.ts +13 -13
- package/dist/clients/thread.js +13 -13
- package/dist/clients/user.d.ts +5 -5
- package/dist/clients/user.js +2 -2
- package/dist/{schemas.d.ts → schemas/index.d.ts} +3 -1
- package/dist/schemas/index.d.ts.map +1 -0
- package/dist/{schemas.js → schemas/index.js} +2 -8
- package/dist/schemas/string.d.ts +12 -0
- package/dist/schemas/string.d.ts.map +1 -0
- package/dist/schemas/string.js +12 -0
- package/dist/schemas/string.test.d.ts +2 -0
- package/dist/schemas/string.test.d.ts.map +1 -0
- package/dist/schemas/string.test.js +20 -0
- package/dist/sdk/endpoints/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/sync/index.d.ts +48 -48
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +4 -4
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +11 -11
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +4 -4
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +7 -7
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +17 -17
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +37 -37
- package/dist/sdk/endpoints/private/sync/push/thread.d.ts +9 -9
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +4 -4
- package/dist/sdk/index.d.ts +48 -48
- package/dist/utils/shortUUID/shortUUID.d.ts +1 -0
- package/dist/utils/shortUUID/shortUUID.d.ts.map +1 -1
- package/dist/utils/shortUUID/shortUUID.js +1 -0
- package/dist/utils/shortUUID/shortUUID.test.js +4 -0
- package/package.json +1 -1
- package/dist/schemas.d.ts.map +0 -1
|
@@ -43,11 +43,11 @@ export declare const syncPullThread: import("../../../../..").EndpointConfig<"/v
|
|
|
43
43
|
readonly bagOfWords: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
44
44
|
readonly emailAccountId: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
45
45
|
readonly flagged: v.NonOptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
46
|
-
readonly id: v.
|
|
46
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
47
47
|
readonly messages: v.ArraySchema<v.ObjectSchema<{
|
|
48
48
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
49
49
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
50
|
-
readonly id: v.
|
|
50
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
51
51
|
readonly mimeType: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
52
52
|
readonly size: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
53
53
|
}, undefined>, undefined>;
|
|
@@ -65,8 +65,8 @@ export declare const syncPullThread: import("../../../../..").EndpointConfig<"/v
|
|
|
65
65
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
66
66
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
67
67
|
}, undefined>, undefined>;
|
|
68
|
-
readonly id: v.
|
|
69
|
-
readonly labelIds: v.ArraySchema<v.
|
|
68
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
69
|
+
readonly labelIds: v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
70
70
|
readonly previewText: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
71
71
|
readonly replyTo: v.ArraySchema<v.ObjectSchema<{
|
|
72
72
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
@@ -30,7 +30,7 @@ export declare const syncPullUser: 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 id: v.
|
|
33
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
34
34
|
readonly settings: v.ObjectSchema<{
|
|
35
35
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
36
36
|
}, undefined>;
|
|
@@ -5,14 +5,14 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
6
|
readonly color: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
7
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
8
|
-
readonly id: v.
|
|
8
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
9
9
|
}, undefined>;
|
|
10
10
|
readonly clientID: v.StringSchema<undefined>;
|
|
11
11
|
readonly id: v.NumberSchema<undefined>;
|
|
12
12
|
readonly name: v.LiteralSchema<"add", undefined>;
|
|
13
13
|
}, undefined> | v.ObjectSchema<{
|
|
14
14
|
readonly args: v.ObjectSchema<{
|
|
15
|
-
readonly id: v.
|
|
15
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
16
16
|
}, undefined>;
|
|
17
17
|
readonly clientID: v.StringSchema<undefined>;
|
|
18
18
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -27,18 +27,18 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
27
27
|
readonly smtpPassword: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
28
28
|
readonly smtpPort: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.MinValueAction<number, number, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
29
29
|
}, undefined>;
|
|
30
|
-
readonly id: v.
|
|
30
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
31
31
|
}, undefined>;
|
|
32
32
|
readonly clientID: v.StringSchema<undefined>;
|
|
33
33
|
readonly id: v.NumberSchema<undefined>;
|
|
34
34
|
readonly name: v.LiteralSchema<"setConnectionConfig", undefined>;
|
|
35
35
|
}, undefined> | v.ObjectSchema<{
|
|
36
36
|
readonly args: v.ObjectSchema<{
|
|
37
|
-
readonly id: v.
|
|
37
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
38
38
|
readonly settings: Omit<v.ObjectSchema<{
|
|
39
39
|
readonly color: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
40
40
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
41
|
-
}, undefined>, "~
|
|
41
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
42
42
|
readonly entries: {
|
|
43
43
|
readonly color: v.OptionalSchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
44
44
|
readonly name: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
@@ -53,7 +53,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
53
53
|
readonly '~run': (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
54
54
|
name?: string | null | undefined;
|
|
55
55
|
color?: string | undefined;
|
|
56
|
-
}, v.StringIssue | v.
|
|
56
|
+
}, v.StringIssue | v.MaxLengthIssue<string, number> | v.NonEmptyIssue<string> | v.ObjectIssue | v.NonOptionalIssue>;
|
|
57
57
|
readonly '~types'?: {
|
|
58
58
|
readonly input: {
|
|
59
59
|
name?: string | null | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
63
63
|
name?: string | null | undefined;
|
|
64
64
|
color?: string | undefined;
|
|
65
65
|
};
|
|
66
|
-
readonly issue: v.StringIssue | v.
|
|
66
|
+
readonly issue: v.StringIssue | v.MaxLengthIssue<string, number> | v.NonEmptyIssue<string> | v.ObjectIssue | v.NonOptionalIssue;
|
|
67
67
|
} | undefined;
|
|
68
68
|
};
|
|
69
69
|
}, undefined>;
|
|
@@ -5,7 +5,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
6
|
readonly attachments: v.ArraySchema<v.ObjectSchema<{
|
|
7
7
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
8
|
-
readonly id: v.
|
|
8
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
9
9
|
readonly mimeType: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
10
10
|
readonly totalChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
11
11
|
readonly totalSize: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -18,9 +18,9 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
18
18
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
19
19
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
20
20
|
}, undefined>;
|
|
21
|
-
readonly emailAccountId: v.
|
|
22
|
-
readonly id: v.
|
|
23
|
-
readonly referencedMessageId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.
|
|
21
|
+
readonly emailAccountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
22
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
23
|
+
readonly referencedMessageId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
24
24
|
readonly status: v.UnionSchema<[v.LiteralSchema<"DRAFT", undefined>, v.LiteralSchema<"SENDING", undefined>, v.LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
25
25
|
readonly type: v.UnionSchema<[v.LiteralSchema<"NEW", undefined>, v.LiteralSchema<"REPLY", undefined>, v.LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
26
26
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -32,27 +32,27 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
32
32
|
readonly args: v.ObjectSchema<{
|
|
33
33
|
readonly attachment: v.ObjectSchema<{
|
|
34
34
|
readonly fileName: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
35
|
-
readonly id: v.
|
|
35
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
36
36
|
readonly mimeType: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
37
37
|
readonly totalChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
38
38
|
readonly totalSize: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
39
39
|
readonly uploadedChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
40
40
|
}, undefined>;
|
|
41
|
-
readonly id: v.
|
|
41
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
42
42
|
}, undefined>;
|
|
43
43
|
readonly clientID: v.StringSchema<undefined>;
|
|
44
44
|
readonly id: v.NumberSchema<undefined>;
|
|
45
45
|
readonly name: v.LiteralSchema<"createAttachment", undefined>;
|
|
46
46
|
}, undefined> | v.ObjectSchema<{
|
|
47
47
|
readonly args: v.ObjectSchema<{
|
|
48
|
-
readonly id: v.
|
|
48
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
49
49
|
}, undefined>;
|
|
50
50
|
readonly clientID: v.StringSchema<undefined>;
|
|
51
51
|
readonly id: v.NumberSchema<undefined>;
|
|
52
52
|
readonly name: v.LiteralSchema<"delete", undefined>;
|
|
53
53
|
}, undefined> | v.ObjectSchema<{
|
|
54
54
|
readonly args: v.ObjectSchema<{
|
|
55
|
-
readonly id: v.
|
|
55
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
56
56
|
readonly patch: v.ArraySchema<v.ObjectSchema<{
|
|
57
57
|
readonly index: v.NumberSchema<undefined>;
|
|
58
58
|
readonly type: v.UnionSchema<[v.LiteralSchema<"INSERTION", undefined>, v.LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -65,8 +65,8 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
65
65
|
readonly name: v.LiteralSchema<"setContent", undefined>;
|
|
66
66
|
}, undefined> | v.ObjectSchema<{
|
|
67
67
|
readonly args: v.ObjectSchema<{
|
|
68
|
-
readonly emailAccountId: v.
|
|
69
|
-
readonly id: v.
|
|
68
|
+
readonly emailAccountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
69
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
70
70
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
71
71
|
}, undefined>;
|
|
72
72
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -80,7 +80,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
80
80
|
readonly content: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
81
81
|
readonly subject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
82
82
|
readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
83
|
-
}, undefined>, "~
|
|
83
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
84
84
|
readonly entries: Omit<{
|
|
85
85
|
readonly bcc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
86
86
|
readonly cc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
@@ -104,7 +104,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
104
104
|
cc: string[];
|
|
105
105
|
to: string[];
|
|
106
106
|
subject: string | null;
|
|
107
|
-
}, v.StringIssue | v.
|
|
107
|
+
}, v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.MaxLengthIssue<string, number> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue>;
|
|
108
108
|
readonly '~types'?: {
|
|
109
109
|
readonly input: {
|
|
110
110
|
bcc: string[];
|
|
@@ -118,10 +118,10 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
118
118
|
to: string[];
|
|
119
119
|
subject: string | null;
|
|
120
120
|
};
|
|
121
|
-
readonly issue: v.StringIssue | v.
|
|
121
|
+
readonly issue: v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.MaxLengthIssue<string, number> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue;
|
|
122
122
|
} | undefined;
|
|
123
123
|
};
|
|
124
|
-
readonly id: v.
|
|
124
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
125
125
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
126
126
|
}, undefined>;
|
|
127
127
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -129,7 +129,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
129
129
|
readonly name: v.LiteralSchema<"setEnvelope", undefined>;
|
|
130
130
|
}, undefined> | v.ObjectSchema<{
|
|
131
131
|
readonly args: v.ObjectSchema<{
|
|
132
|
-
readonly id: v.
|
|
132
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
133
133
|
readonly status: v.UnionSchema<[v.LiteralSchema<"DRAFT", undefined>, v.LiteralSchema<"SENDING", undefined>, v.LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
134
134
|
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
135
135
|
}, undefined>;
|
|
@@ -138,9 +138,9 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
138
138
|
readonly name: v.LiteralSchema<"setStatus", undefined>;
|
|
139
139
|
}, undefined> | v.ObjectSchema<{
|
|
140
140
|
readonly args: v.ObjectSchema<{
|
|
141
|
-
readonly attachmentId: v.
|
|
141
|
+
readonly attachmentId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
142
142
|
readonly chunk: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
143
|
-
readonly id: v.
|
|
143
|
+
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
144
144
|
}, undefined>;
|
|
145
145
|
readonly clientID: v.StringSchema<undefined>;
|
|
146
146
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5,14 +5,14 @@ export declare const push: {
|
|
|
5
5
|
readonly args: import("valibot").ObjectSchema<{
|
|
6
6
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
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").
|
|
8
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
9
9
|
}, undefined>;
|
|
10
10
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
11
11
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
12
12
|
readonly name: import("valibot").LiteralSchema<"add", undefined>;
|
|
13
13
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
14
14
|
readonly args: import("valibot").ObjectSchema<{
|
|
15
|
-
readonly id: import("valibot").
|
|
15
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
16
16
|
}, undefined>;
|
|
17
17
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
18
18
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -27,18 +27,18 @@ export declare const push: {
|
|
|
27
27
|
readonly smtpPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
28
28
|
readonly smtpPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
|
|
29
29
|
}, undefined>;
|
|
30
|
-
readonly id: import("valibot").
|
|
30
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
31
31
|
}, undefined>;
|
|
32
32
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
33
33
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
34
34
|
readonly name: import("valibot").LiteralSchema<"setConnectionConfig", undefined>;
|
|
35
35
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
36
36
|
readonly args: import("valibot").ObjectSchema<{
|
|
37
|
-
readonly id: import("valibot").
|
|
37
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
38
38
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
39
39
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
40
40
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
41
|
-
}, undefined>, "~
|
|
41
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
42
42
|
readonly entries: {
|
|
43
43
|
readonly color: import("valibot").OptionalSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
44
44
|
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
@@ -53,7 +53,7 @@ export declare const push: {
|
|
|
53
53
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
54
54
|
name?: string | null | undefined;
|
|
55
55
|
color?: string | undefined;
|
|
56
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
56
|
+
}, import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue>;
|
|
57
57
|
readonly '~types'?: {
|
|
58
58
|
readonly input: {
|
|
59
59
|
name?: string | null | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const push: {
|
|
|
63
63
|
name?: string | null | undefined;
|
|
64
64
|
color?: string | undefined;
|
|
65
65
|
};
|
|
66
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
66
|
+
readonly issue: import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue;
|
|
67
67
|
} | undefined;
|
|
68
68
|
};
|
|
69
69
|
}, undefined>;
|
|
@@ -95,7 +95,7 @@ export declare const push: {
|
|
|
95
95
|
readonly args: import("valibot").ObjectSchema<{
|
|
96
96
|
readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
97
97
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
98
|
-
readonly id: import("valibot").
|
|
98
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
99
99
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
100
100
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
101
101
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -108,9 +108,9 @@ export declare const push: {
|
|
|
108
108
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
109
109
|
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>;
|
|
110
110
|
}, undefined>;
|
|
111
|
-
readonly emailAccountId: import("valibot").
|
|
112
|
-
readonly id: import("valibot").
|
|
113
|
-
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").
|
|
111
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
112
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
113
|
+
readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
114
114
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
115
115
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"NEW", undefined>, import("valibot").LiteralSchema<"REPLY", undefined>, import("valibot").LiteralSchema<"FORWARD", undefined>], undefined>;
|
|
116
116
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
@@ -122,27 +122,27 @@ export declare const push: {
|
|
|
122
122
|
readonly args: import("valibot").ObjectSchema<{
|
|
123
123
|
readonly attachment: import("valibot").ObjectSchema<{
|
|
124
124
|
readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
125
|
-
readonly id: import("valibot").
|
|
125
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
126
126
|
readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
127
127
|
readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
128
128
|
readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
129
129
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
130
130
|
}, undefined>;
|
|
131
|
-
readonly id: import("valibot").
|
|
131
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
132
132
|
}, undefined>;
|
|
133
133
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
134
134
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
135
135
|
readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
|
|
136
136
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
137
137
|
readonly args: import("valibot").ObjectSchema<{
|
|
138
|
-
readonly id: import("valibot").
|
|
138
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
139
139
|
}, undefined>;
|
|
140
140
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
141
141
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
142
142
|
readonly name: import("valibot").LiteralSchema<"delete", undefined>;
|
|
143
143
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
144
144
|
readonly args: import("valibot").ObjectSchema<{
|
|
145
|
-
readonly id: import("valibot").
|
|
145
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
146
146
|
readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
147
147
|
readonly index: import("valibot").NumberSchema<undefined>;
|
|
148
148
|
readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
|
|
@@ -155,8 +155,8 @@ export declare const push: {
|
|
|
155
155
|
readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
|
|
156
156
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
157
157
|
readonly args: import("valibot").ObjectSchema<{
|
|
158
|
-
readonly emailAccountId: import("valibot").
|
|
159
|
-
readonly id: import("valibot").
|
|
158
|
+
readonly emailAccountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
159
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
160
160
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
161
161
|
}, undefined>;
|
|
162
162
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -170,7 +170,7 @@ export declare const push: {
|
|
|
170
170
|
readonly content: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
171
171
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
172
172
|
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>;
|
|
173
|
-
}, undefined>, "~
|
|
173
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
174
174
|
readonly entries: Omit<{
|
|
175
175
|
readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
176
176
|
readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
@@ -194,7 +194,7 @@ export declare const push: {
|
|
|
194
194
|
cc: string[];
|
|
195
195
|
to: string[];
|
|
196
196
|
subject: string | null;
|
|
197
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
197
|
+
}, import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue>;
|
|
198
198
|
readonly '~types'?: {
|
|
199
199
|
readonly input: {
|
|
200
200
|
bcc: string[];
|
|
@@ -208,10 +208,10 @@ export declare const push: {
|
|
|
208
208
|
to: string[];
|
|
209
209
|
subject: string | null;
|
|
210
210
|
};
|
|
211
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
211
|
+
readonly issue: import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue;
|
|
212
212
|
} | undefined;
|
|
213
213
|
};
|
|
214
|
-
readonly id: import("valibot").
|
|
214
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
215
215
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
216
216
|
}, undefined>;
|
|
217
217
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -219,7 +219,7 @@ export declare const push: {
|
|
|
219
219
|
readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
|
|
220
220
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
221
221
|
readonly args: import("valibot").ObjectSchema<{
|
|
222
|
-
readonly id: import("valibot").
|
|
222
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
223
223
|
readonly status: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"DRAFT", undefined>, import("valibot").LiteralSchema<"SENDING", undefined>, import("valibot").LiteralSchema<"SENDING_FAILED", undefined>], undefined>;
|
|
224
224
|
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
225
225
|
}, undefined>;
|
|
@@ -228,9 +228,9 @@ export declare const push: {
|
|
|
228
228
|
readonly name: import("valibot").LiteralSchema<"setStatus", undefined>;
|
|
229
229
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
230
230
|
readonly args: import("valibot").ObjectSchema<{
|
|
231
|
-
readonly attachmentId: import("valibot").
|
|
231
|
+
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
232
232
|
readonly chunk: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
233
|
-
readonly id: import("valibot").
|
|
233
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
234
234
|
}, undefined>;
|
|
235
235
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
236
236
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -258,14 +258,14 @@ export declare const push: {
|
|
|
258
258
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
259
259
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
260
260
|
readonly args: import("valibot").ObjectSchema<{
|
|
261
|
-
readonly threadId: import("valibot").
|
|
261
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
262
262
|
}, undefined>;
|
|
263
263
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
264
264
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
265
265
|
readonly name: import("valibot").LiteralSchema<"delete", undefined>;
|
|
266
266
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
267
267
|
readonly args: import("valibot").ObjectSchema<{
|
|
268
|
-
readonly threadId: import("valibot").
|
|
268
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
269
269
|
}, undefined>;
|
|
270
270
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
271
271
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -273,22 +273,22 @@ export declare const push: {
|
|
|
273
273
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
274
274
|
readonly args: import("valibot").ObjectSchema<{
|
|
275
275
|
readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
276
|
-
readonly threadId: import("valibot").
|
|
276
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
277
277
|
}, undefined>;
|
|
278
278
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
279
279
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
280
280
|
readonly name: import("valibot").LiteralSchema<"setFlagged", undefined>;
|
|
281
281
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
282
282
|
readonly args: import("valibot").ObjectSchema<{
|
|
283
|
-
readonly threadId: import("valibot").
|
|
283
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
284
284
|
}, undefined>;
|
|
285
285
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
286
286
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
287
287
|
readonly name: import("valibot").LiteralSchema<"setInbox", undefined>;
|
|
288
288
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
289
289
|
readonly args: import("valibot").ObjectSchema<{
|
|
290
|
-
readonly labelIds: import("valibot").ArraySchema<import("valibot").
|
|
291
|
-
readonly threadId: import("valibot").
|
|
290
|
+
readonly labelIds: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
291
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
292
292
|
}, undefined>;
|
|
293
293
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
294
294
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -296,21 +296,21 @@ export declare const push: {
|
|
|
296
296
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
297
297
|
readonly args: import("valibot").ObjectSchema<{
|
|
298
298
|
readonly seen: import("valibot").BooleanSchema<undefined>;
|
|
299
|
-
readonly threadId: import("valibot").
|
|
299
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
300
300
|
}, undefined>;
|
|
301
301
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
302
302
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
303
303
|
readonly name: import("valibot").LiteralSchema<"setSeen", undefined>;
|
|
304
304
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
305
305
|
readonly args: import("valibot").ObjectSchema<{
|
|
306
|
-
readonly threadId: import("valibot").
|
|
306
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
307
307
|
}, undefined>;
|
|
308
308
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
309
309
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
310
310
|
readonly name: import("valibot").LiteralSchema<"setSpam", undefined>;
|
|
311
311
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
312
312
|
readonly args: import("valibot").ObjectSchema<{
|
|
313
|
-
readonly threadId: import("valibot").
|
|
313
|
+
readonly threadId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
314
314
|
}, undefined>;
|
|
315
315
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
316
316
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -338,10 +338,10 @@ export declare const push: {
|
|
|
338
338
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
339
339
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<import("valibot").ObjectSchema<{
|
|
340
340
|
readonly args: import("valibot").ObjectSchema<{
|
|
341
|
-
readonly id: import("valibot").
|
|
341
|
+
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
342
342
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
343
343
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
344
|
-
}, undefined>, "~
|
|
344
|
+
}, undefined>, "~standard" | "~run" | "~types" | "entries"> & {
|
|
345
345
|
readonly entries: {
|
|
346
346
|
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
347
347
|
};
|
|
@@ -352,7 +352,7 @@ export declare const push: {
|
|
|
352
352
|
}>;
|
|
353
353
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
354
354
|
name?: string | null | undefined;
|
|
355
|
-
}, import("valibot").StringIssue | import("valibot").
|
|
355
|
+
}, import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue>;
|
|
356
356
|
readonly '~types'?: {
|
|
357
357
|
readonly input: {
|
|
358
358
|
name?: string | null | undefined;
|
|
@@ -360,7 +360,7 @@ export declare const push: {
|
|
|
360
360
|
readonly output: {
|
|
361
361
|
name?: string | null | undefined;
|
|
362
362
|
};
|
|
363
|
-
readonly issue: import("valibot").StringIssue | import("valibot").
|
|
363
|
+
readonly issue: import("valibot").StringIssue | import("valibot").MaxLengthIssue<string, number> | import("valibot").ObjectIssue;
|
|
364
364
|
} | undefined;
|
|
365
365
|
};
|
|
366
366
|
}, undefined>;
|