@marcoappio/marco-config 2.0.414 → 2.0.415

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.
Files changed (131) hide show
  1. package/dist/clients/account.d.ts +144 -0
  2. package/dist/clients/account.d.ts.map +1 -0
  3. package/dist/clients/account.js +93 -0
  4. package/dist/clients/contact.d.ts +14 -0
  5. package/dist/clients/contact.d.ts.map +1 -0
  6. package/dist/clients/contact.js +14 -0
  7. package/dist/clients/draft.d.ts +196 -0
  8. package/dist/clients/draft.d.ts.map +1 -0
  9. package/dist/clients/draft.js +122 -0
  10. package/dist/clients/index.d.ts +526 -0
  11. package/dist/clients/index.d.ts.map +1 -0
  12. package/dist/clients/index.js +13 -0
  13. package/dist/clients/thread.d.ts +125 -0
  14. package/dist/clients/thread.d.ts.map +1 -0
  15. package/dist/clients/thread.js +117 -0
  16. package/dist/clients/user.d.ts +53 -0
  17. package/dist/clients/user.d.ts.map +1 -0
  18. package/dist/clients/user.js +52 -0
  19. package/dist/clients/utils/index.d.ts +4 -0
  20. package/dist/clients/utils/index.d.ts.map +1 -0
  21. package/dist/clients/utils/index.js +4 -0
  22. package/dist/clients/utils/labelSpecialUseOrdering.d.ts +3 -0
  23. package/dist/clients/utils/labelSpecialUseOrdering.d.ts.map +1 -0
  24. package/dist/clients/utils/labelSpecialUseOrdering.js +1 -0
  25. package/dist/index.d.ts +3 -2
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +2 -1
  28. package/dist/marcoPublicConfig.d.ts +6 -0
  29. package/dist/marcoPublicConfig.d.ts.map +1 -1
  30. package/dist/marcoPublicConfig.js +18 -0
  31. package/dist/sdk/endpoints/index.d.ts +1073 -0
  32. package/dist/sdk/endpoints/index.d.ts.map +1 -1
  33. package/dist/sdk/endpoints/index.js +2 -0
  34. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageAttachment.d.ts +21 -0
  35. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageAttachment.d.ts.map +1 -0
  36. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageAttachment.js +16 -0
  37. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.d.ts +19 -0
  38. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.d.ts.map +1 -0
  39. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.js +19 -0
  40. package/dist/sdk/endpoints/private/emailMessage/index.d.ts +39 -0
  41. package/dist/sdk/endpoints/private/emailMessage/index.d.ts.map +1 -0
  42. package/dist/sdk/endpoints/private/emailMessage/index.js +6 -0
  43. package/dist/sdk/endpoints/private/index.d.ts +938 -0
  44. package/dist/sdk/endpoints/private/index.d.ts.map +1 -0
  45. package/dist/sdk/endpoints/private/index.js +8 -0
  46. package/dist/sdk/endpoints/private/sync/index.d.ts +888 -0
  47. package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -0
  48. package/dist/sdk/endpoints/private/sync/index.js +3 -0
  49. package/dist/sdk/endpoints/private/sync/pull/account.d.ts +71 -0
  50. package/dist/sdk/endpoints/private/sync/pull/account.d.ts.map +1 -0
  51. package/dist/sdk/endpoints/private/sync/pull/account.js +33 -0
  52. package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +56 -0
  53. package/dist/sdk/endpoints/private/sync/pull/contact.d.ts.map +1 -0
  54. package/dist/sdk/endpoints/private/sync/pull/contact.js +40 -0
  55. package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +72 -0
  56. package/dist/sdk/endpoints/private/sync/pull/draft.d.ts.map +1 -0
  57. package/dist/sdk/endpoints/private/sync/pull/draft.js +36 -0
  58. package/dist/sdk/endpoints/private/sync/pull/index.d.ts +349 -0
  59. package/dist/sdk/endpoints/private/sync/pull/index.d.ts.map +1 -0
  60. package/dist/sdk/endpoints/private/sync/pull/index.js +6 -0
  61. package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +100 -0
  62. package/dist/sdk/endpoints/private/sync/pull/thread.d.ts.map +1 -0
  63. package/dist/sdk/endpoints/private/sync/pull/thread.js +45 -0
  64. package/dist/sdk/endpoints/private/sync/pull/user.d.ts +57 -0
  65. package/dist/sdk/endpoints/private/sync/pull/user.d.ts.map +1 -0
  66. package/dist/sdk/endpoints/private/sync/pull/user.js +33 -0
  67. package/dist/sdk/endpoints/private/sync/push/account.d.ts +151 -0
  68. package/dist/sdk/endpoints/private/sync/push/account.d.ts.map +1 -0
  69. package/dist/sdk/endpoints/private/sync/push/account.js +73 -0
  70. package/dist/sdk/endpoints/private/sync/push/draft.d.ts +206 -0
  71. package/dist/sdk/endpoints/private/sync/push/draft.d.ts.map +1 -0
  72. package/dist/sdk/endpoints/private/sync/push/draft.js +79 -0
  73. package/dist/sdk/endpoints/private/sync/push/index.d.ts +538 -0
  74. package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -0
  75. package/dist/sdk/endpoints/private/sync/push/index.js +5 -0
  76. package/dist/sdk/endpoints/private/sync/push/thread.d.ts +122 -0
  77. package/dist/sdk/endpoints/private/sync/push/thread.d.ts.map +1 -0
  78. package/dist/sdk/endpoints/private/sync/push/thread.js +79 -0
  79. package/dist/sdk/endpoints/private/sync/push/user.d.ts +64 -0
  80. package/dist/sdk/endpoints/private/sync/push/user.d.ts.map +1 -0
  81. package/dist/sdk/endpoints/private/sync/push/user.js +43 -0
  82. package/dist/sdk/endpoints/private/user/deleteUser.d.ts +10 -0
  83. package/dist/sdk/endpoints/private/user/deleteUser.d.ts.map +1 -0
  84. package/dist/sdk/endpoints/private/user/deleteUser.js +13 -0
  85. package/dist/sdk/endpoints/private/user/index.d.ts +11 -0
  86. package/dist/sdk/endpoints/private/user/index.d.ts.map +1 -0
  87. package/dist/sdk/endpoints/private/user/index.js +4 -0
  88. package/dist/sdk/endpoints/public/auth/index.d.ts +137 -0
  89. package/dist/sdk/endpoints/public/auth/index.d.ts.map +1 -0
  90. package/dist/sdk/endpoints/public/auth/index.js +8 -0
  91. package/dist/sdk/endpoints/public/auth/refreshAuth.d.ts +41 -0
  92. package/dist/sdk/endpoints/public/auth/refreshAuth.d.ts.map +1 -0
  93. package/dist/sdk/endpoints/public/auth/refreshAuth.js +33 -0
  94. package/dist/sdk/endpoints/public/auth/sendAuthCode.d.ts +27 -0
  95. package/dist/sdk/endpoints/public/auth/sendAuthCode.d.ts.map +1 -0
  96. package/dist/sdk/endpoints/public/auth/sendAuthCode.js +19 -0
  97. package/dist/sdk/endpoints/public/auth/verifyAuthCode.d.ts +72 -0
  98. package/dist/sdk/endpoints/public/auth/verifyAuthCode.d.ts.map +1 -0
  99. package/dist/sdk/endpoints/public/auth/verifyAuthCode.js +37 -0
  100. package/dist/sdk/endpoints/public/index.d.ts +136 -0
  101. package/dist/sdk/endpoints/public/index.d.ts.map +1 -1
  102. package/dist/sdk/endpoints/public/index.js +2 -0
  103. package/dist/sdk/index.d.ts +1073 -0
  104. package/dist/sdk/index.d.ts.map +1 -1
  105. package/dist/types/Endpoint.d.ts +2 -1
  106. package/dist/types/Endpoint.d.ts.map +1 -1
  107. package/dist/types/MarcoClient.d.ts +12 -0
  108. package/dist/types/MarcoClient.d.ts.map +1 -0
  109. package/dist/types/MarcoClient.js +1 -0
  110. package/dist/types/SDKError.d.ts +4 -0
  111. package/dist/types/SDKError.d.ts.map +1 -0
  112. package/dist/types/SDKError.js +1 -0
  113. package/dist/types/WS.d.ts +7 -0
  114. package/dist/types/WS.d.ts.map +1 -0
  115. package/dist/types/WS.js +1 -0
  116. package/dist/types/index.d.ts +3 -0
  117. package/dist/types/index.d.ts.map +1 -1
  118. package/dist/types/index.js +3 -0
  119. package/dist/ws.d.ts +6 -0
  120. package/dist/ws.d.ts.map +1 -0
  121. package/dist/ws.js +5 -0
  122. package/package.json +1 -2
  123. package/dist/instantDB/index.d.ts +0 -3
  124. package/dist/instantDB/index.d.ts.map +0 -1
  125. package/dist/instantDB/index.js +0 -2
  126. package/dist/instantDB/instant.perms.d.ts +0 -134
  127. package/dist/instantDB/instant.perms.d.ts.map +0 -1
  128. package/dist/instantDB/instant.perms.js +0 -133
  129. package/dist/instantDB/instant.schema.d.ts +0 -338
  130. package/dist/instantDB/instant.schema.d.ts.map +0 -1
  131. package/dist/instantDB/instant.schema.js +0 -180
@@ -1,7 +1,1080 @@
1
1
  import type { GenericSchema } from 'valibot';
2
2
  import type { EndpointConfig } from '../../types';
3
3
  export declare const endpoints: {
4
+ private: {
5
+ emailMessage: {
6
+ getAttachment: EndpointConfig<"/v1/pv/attachment/:attachmentId", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
7
+ readonly data: import("valibot").ObjectSchema<{
8
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
9
+ }, undefined>;
10
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
11
+ }, undefined>, import("valibot").ObjectSchema<{
12
+ readonly data: import("valibot").ObjectSchema<{
13
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
14
+ }, undefined>;
15
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
16
+ }, undefined>, import("valibot").ObjectSchema<{
17
+ readonly data: import("valibot").ObjectSchema<{
18
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
19
+ }, undefined>;
20
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
21
+ }, undefined>, import("valibot").ObjectSchema<{
22
+ readonly file: import("valibot").NonOptionalSchema<import("valibot").FileSchema<undefined>, undefined>;
23
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
24
+ }, undefined>], undefined>>;
25
+ getHTML: EndpointConfig<"/v1/pv/message/:messageId/html", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
26
+ readonly data: import("valibot").ObjectSchema<{
27
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
28
+ }, undefined>;
29
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
30
+ }, undefined>, import("valibot").ObjectSchema<{
31
+ readonly data: import("valibot").ObjectSchema<{
32
+ readonly code: import("valibot").LiteralSchema<"MESSAGE_NOT_FOUND", undefined>;
33
+ }, undefined>;
34
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
35
+ }, undefined>, import("valibot").ObjectSchema<{
36
+ readonly data: import("valibot").ObjectSchema<{
37
+ readonly content: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>;
38
+ readonly html: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
39
+ }, undefined>;
40
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
41
+ }, undefined>], undefined>>;
42
+ };
43
+ sync: {
44
+ pull: {
45
+ account: EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
46
+ readonly clientGroupID: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
47
+ readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
48
+ readonly order: import("valibot").StringSchema<undefined>;
49
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
50
+ }, undefined>, undefined>;
51
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
52
+ readonly data: import("valibot").ObjectSchema<{
53
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
54
+ readonly issues: import("valibot").ObjectSchema<{
55
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
56
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
57
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
58
+ }, undefined>;
59
+ }, undefined>;
60
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
61
+ }, undefined>, import("valibot").ObjectSchema<{
62
+ readonly data: import("valibot").ObjectSchema<{
63
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
64
+ }, undefined>;
65
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
66
+ }, undefined>, import("valibot").ObjectSchema<{
67
+ readonly data: import("valibot").ObjectSchema<{
68
+ readonly cookie: import("valibot").ObjectSchema<{
69
+ readonly order: import("valibot").StringSchema<undefined>;
70
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
71
+ }, undefined>;
72
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
73
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
74
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
75
+ }, undefined>, import("valibot").ObjectSchema<{
76
+ readonly key: import("valibot").StringSchema<undefined>;
77
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
78
+ }, undefined>, import("valibot").ObjectSchema<{
79
+ readonly key: import("valibot").StringSchema<undefined>;
80
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
81
+ readonly value: import("valibot").ObjectSchema<{
82
+ readonly aliases: import("valibot").ObjectSchema<{
83
+ readonly nonPrimary: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
84
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
85
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
86
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
87
+ }, undefined>, undefined>;
88
+ readonly primary: import("valibot").ObjectSchema<{
89
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
90
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
91
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
92
+ }, undefined>;
93
+ }, undefined>;
94
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
95
+ readonly imapConnectionStatus: import("valibot").PicklistSchema<readonly ["AWAITING_CONNECTION", "CONNECTED", "CONNECTION_FAILED_AUTHENTICATION_ERROR", "CONNECTION_FAILED_CONNECTION_ERROR", "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR", "CONNECTION_FAILED_QUOTA_ERROR", "CONNECTION_FAILED_UNKNOWN_ERROR"], undefined>;
96
+ readonly labels: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
97
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
98
+ readonly path: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
99
+ readonly specialUse: import("valibot").NullableSchema<import("valibot").PicklistSchema<readonly ["ARCHIVE", "INBOX", "SENT", "SPAM", "TRASH"], undefined>, undefined>;
100
+ }, undefined>, undefined>;
101
+ readonly mailCounts: import("valibot").ObjectSchema<{
102
+ readonly processed: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
103
+ readonly total: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
104
+ }, undefined>;
105
+ readonly settings: import("valibot").ObjectSchema<{
106
+ readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
107
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
108
+ }, undefined>;
109
+ }, undefined>;
110
+ }, undefined>], undefined>, undefined>;
111
+ }, undefined>;
112
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
113
+ }, undefined>], undefined>>;
114
+ contact: EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
115
+ readonly clientGroupID: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
116
+ readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
117
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
118
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
119
+ readonly order: import("valibot").StringSchema<undefined>;
120
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
121
+ readonly versionMin: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
122
+ }, undefined>, undefined>;
123
+ }, undefined>, import("valibot").ObjectSchema<{
124
+ readonly pageSize: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TransformAction<any, number>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>]>, undefined>;
125
+ }, undefined>, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
126
+ readonly data: import("valibot").ObjectSchema<{
127
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
128
+ readonly issues: import("valibot").ObjectSchema<{
129
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
130
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
131
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
132
+ }, undefined>;
133
+ }, undefined>;
134
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
135
+ }, undefined>, import("valibot").ObjectSchema<{
136
+ readonly data: import("valibot").ObjectSchema<{
137
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
138
+ }, undefined>;
139
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
140
+ }, undefined>, import("valibot").ObjectSchema<{
141
+ readonly data: import("valibot").ObjectSchema<{
142
+ readonly cookie: import("valibot").ObjectSchema<{
143
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
144
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
145
+ readonly order: import("valibot").StringSchema<undefined>;
146
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
147
+ readonly versionMin: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
148
+ }, undefined>;
149
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
150
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
151
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
152
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
153
+ }, undefined>, import("valibot").ObjectSchema<{
154
+ readonly key: import("valibot").StringSchema<undefined>;
155
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
156
+ }, undefined>, import("valibot").ObjectSchema<{
157
+ readonly key: import("valibot").StringSchema<undefined>;
158
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
159
+ readonly value: import("valibot").ObjectSchema<{
160
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
161
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
162
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
163
+ }, undefined>;
164
+ }, undefined>], undefined>, undefined>;
165
+ }, undefined>;
166
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
167
+ }, undefined>], undefined>>;
168
+ draft: EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
169
+ readonly clientGroupID: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
170
+ readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
171
+ readonly order: import("valibot").StringSchema<undefined>;
172
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
173
+ }, undefined>, undefined>;
174
+ }, undefined>, import("valibot").ObjectSchema<{
175
+ readonly pageSize: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>]>, undefined>;
176
+ }, undefined>, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
177
+ readonly data: import("valibot").ObjectSchema<{
178
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
179
+ readonly issues: import("valibot").ObjectSchema<{
180
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
181
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
182
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
183
+ }, undefined>;
184
+ }, undefined>;
185
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
186
+ }, undefined>, import("valibot").ObjectSchema<{
187
+ readonly data: import("valibot").ObjectSchema<{
188
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
189
+ }, undefined>;
190
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
191
+ }, undefined>, import("valibot").ObjectSchema<{
192
+ readonly data: import("valibot").ObjectSchema<{
193
+ readonly cookie: import("valibot").ObjectSchema<{
194
+ readonly order: import("valibot").StringSchema<undefined>;
195
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
196
+ }, undefined>;
197
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
198
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
199
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
200
+ }, undefined>, import("valibot").ObjectSchema<{
201
+ readonly key: import("valibot").StringSchema<undefined>;
202
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
203
+ }, undefined>, import("valibot").ObjectSchema<{
204
+ readonly key: import("valibot").StringSchema<undefined>;
205
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
206
+ readonly value: import("valibot").ObjectSchema<{
207
+ readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
208
+ readonly failed: import("valibot").BooleanSchema<undefined>;
209
+ readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
210
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
211
+ readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
212
+ readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
213
+ readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
214
+ readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
215
+ }, undefined>, undefined>;
216
+ readonly body: import("valibot").ObjectSchema<{
217
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
218
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
219
+ readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
220
+ readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
221
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
222
+ }, undefined>;
223
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
224
+ readonly error: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
225
+ readonly from: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
226
+ readonly fromName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
227
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
228
+ readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
229
+ readonly scheduledFor: import("valibot").NullableSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
230
+ readonly status: import("valibot").PicklistSchema<readonly ["DRAFT", "SEND_REQUESTED", "SEND_CONFIRMED", "SEND_FAILED"], undefined>;
231
+ readonly type: import("valibot").PicklistSchema<readonly ["NEW", "REPLY", "FORWARD"], undefined>;
232
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
233
+ }, undefined>;
234
+ }, undefined>], undefined>, undefined>;
235
+ }, undefined>;
236
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
237
+ }, undefined>], undefined>>;
238
+ thread: EndpointConfig<"/v1/pv/sync/pull/thread", import("valibot").ObjectSchema<{
239
+ readonly clientGroupID: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
240
+ readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
241
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
242
+ readonly order: import("valibot").NumberSchema<undefined>;
243
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
244
+ readonly windows: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
245
+ readonly sentAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
246
+ readonly seqNo: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
247
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
248
+ readonly versionMin: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
249
+ }, undefined>, undefined>;
250
+ }, undefined>, undefined>;
251
+ }, undefined>, import("valibot").ObjectSchema<{
252
+ readonly pageSize: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TransformAction<any, number>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>]>, undefined>;
253
+ }, undefined>, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
254
+ readonly data: import("valibot").ObjectSchema<{
255
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
256
+ readonly issues: import("valibot").ObjectSchema<{
257
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
258
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
259
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
260
+ }, undefined>;
261
+ }, undefined>;
262
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
263
+ }, undefined>, import("valibot").ObjectSchema<{
264
+ readonly data: import("valibot").ObjectSchema<{
265
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
266
+ }, undefined>;
267
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
268
+ }, undefined>, import("valibot").ObjectSchema<{
269
+ readonly data: import("valibot").ObjectSchema<{
270
+ readonly cookie: import("valibot").ObjectSchema<{
271
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
272
+ readonly order: import("valibot").NumberSchema<undefined>;
273
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
274
+ readonly windows: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
275
+ readonly sentAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
276
+ readonly seqNo: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
277
+ readonly versionMax: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
278
+ readonly versionMin: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
279
+ }, undefined>, undefined>;
280
+ }, undefined>;
281
+ readonly hasMore: import("valibot").BooleanSchema<undefined>;
282
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
283
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
284
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
285
+ }, undefined>, import("valibot").ObjectSchema<{
286
+ readonly key: import("valibot").StringSchema<undefined>;
287
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
288
+ }, undefined>, import("valibot").ObjectSchema<{
289
+ readonly key: import("valibot").StringSchema<undefined>;
290
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
291
+ readonly value: import("valibot").ObjectSchema<{
292
+ readonly bagOfWords: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
293
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
294
+ readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
295
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
296
+ readonly messages: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
297
+ readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
298
+ readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
299
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
300
+ readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
301
+ readonly size: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
302
+ readonly status: import("valibot").PicklistSchema<readonly ["NOT_DOWNLOADED", "DOWNLOAD_REQUESTED", "DOWNLOADED", "DOWNLOAD_FAILED"], undefined>;
303
+ }, undefined>, undefined>;
304
+ readonly bcc: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
305
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
306
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
307
+ }, undefined>, undefined>;
308
+ readonly cc: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
309
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
310
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
311
+ }, undefined>, undefined>;
312
+ readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
313
+ readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
314
+ readonly from: import("valibot").ObjectSchema<{
315
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
316
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
317
+ }, undefined>;
318
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
319
+ readonly labelIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
320
+ readonly previewText: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
321
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
322
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
323
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
324
+ }, undefined>, undefined>;
325
+ readonly to: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
326
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
327
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
328
+ }, undefined>, undefined>;
329
+ }, undefined>, undefined>;
330
+ readonly seen: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
331
+ }, undefined>;
332
+ }, undefined>], undefined>, undefined>;
333
+ }, undefined>;
334
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
335
+ }, undefined>], undefined>>;
336
+ user: EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
337
+ readonly clientGroupID: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
338
+ readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
339
+ readonly order: import("valibot").StringSchema<undefined>;
340
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
341
+ }, undefined>, undefined>;
342
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
343
+ readonly data: import("valibot").ObjectSchema<{
344
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
345
+ readonly issues: import("valibot").ObjectSchema<{
346
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
347
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
348
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
349
+ }, undefined>;
350
+ }, undefined>;
351
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
352
+ }, undefined>, import("valibot").ObjectSchema<{
353
+ readonly data: import("valibot").ObjectSchema<{
354
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
355
+ }, undefined>;
356
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
357
+ }, undefined>, import("valibot").ObjectSchema<{
358
+ readonly data: import("valibot").ObjectSchema<{
359
+ readonly cookie: import("valibot").ObjectSchema<{
360
+ readonly order: import("valibot").StringSchema<undefined>;
361
+ readonly version: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
362
+ }, undefined>;
363
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
364
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
365
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
366
+ }, undefined>, import("valibot").ObjectSchema<{
367
+ readonly key: import("valibot").StringSchema<undefined>;
368
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
369
+ }, undefined>, import("valibot").ObjectSchema<{
370
+ readonly key: import("valibot").StringSchema<undefined>;
371
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
372
+ readonly value: import("valibot").ObjectSchema<{
373
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
374
+ readonly settings: import("valibot").ObjectSchema<{
375
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
376
+ readonly notifications: import("valibot").ObjectSchema<{
377
+ readonly pushNotificationTokens: import("valibot").RecordSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, import("valibot").ObjectSchema<{
378
+ readonly createdAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
379
+ readonly deviceId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
380
+ readonly token: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
381
+ }, undefined>, undefined>;
382
+ }, undefined>;
383
+ readonly profilePicture: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
384
+ readonly undoSendEnabled: import("valibot").BooleanSchema<undefined>;
385
+ }, undefined>;
386
+ }, undefined>;
387
+ }, undefined>], undefined>, undefined>;
388
+ }, undefined>;
389
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
390
+ }, undefined>], undefined>>;
391
+ };
392
+ push: {
393
+ account: EndpointConfig<"/v1/pv/sync/push/account", import("valibot").ObjectSchema<{
394
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
395
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
396
+ readonly args: import("valibot").ObjectSchema<{
397
+ readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
398
+ readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
399
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
400
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
401
+ }, undefined>;
402
+ readonly clientID: import("valibot").StringSchema<undefined>;
403
+ readonly id: import("valibot").NumberSchema<undefined>;
404
+ readonly name: import("valibot").LiteralSchema<"createAccount", undefined>;
405
+ }, undefined> | import("valibot").ObjectSchema<{
406
+ readonly args: import("valibot").ObjectSchema<{
407
+ readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
408
+ readonly alias: import("valibot").ObjectSchema<{
409
+ readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
410
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
411
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
412
+ }, undefined>;
413
+ }, undefined>;
414
+ readonly clientID: import("valibot").StringSchema<undefined>;
415
+ readonly id: import("valibot").NumberSchema<undefined>;
416
+ readonly name: import("valibot").LiteralSchema<"createAlias", undefined>;
417
+ }, undefined> | import("valibot").ObjectSchema<{
418
+ readonly args: import("valibot").ObjectSchema<{
419
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
420
+ }, undefined>;
421
+ readonly clientID: import("valibot").StringSchema<undefined>;
422
+ readonly id: import("valibot").NumberSchema<undefined>;
423
+ readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
424
+ }, undefined> | import("valibot").ObjectSchema<{
425
+ readonly args: import("valibot").ObjectSchema<{
426
+ readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
427
+ readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
428
+ }, undefined>;
429
+ readonly clientID: import("valibot").StringSchema<undefined>;
430
+ readonly id: import("valibot").NumberSchema<undefined>;
431
+ readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
432
+ }, undefined> | import("valibot").ObjectSchema<{
433
+ readonly args: import("valibot").ObjectSchema<{
434
+ readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
435
+ readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
436
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
437
+ }, undefined>;
438
+ readonly clientID: import("valibot").StringSchema<undefined>;
439
+ readonly id: import("valibot").NumberSchema<undefined>;
440
+ readonly name: import("valibot").LiteralSchema<"setAliasName", undefined>;
441
+ }, undefined> | import("valibot").ObjectSchema<{
442
+ readonly args: import("valibot").ObjectSchema<{
443
+ readonly accountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
444
+ readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
445
+ }, undefined>;
446
+ readonly clientID: import("valibot").StringSchema<undefined>;
447
+ readonly id: import("valibot").NumberSchema<undefined>;
448
+ readonly name: import("valibot").LiteralSchema<"setAliasPrimary", undefined>;
449
+ }, undefined> | import("valibot").ObjectSchema<{
450
+ readonly args: import("valibot").ObjectSchema<{
451
+ readonly connectionConfig: import("valibot").ObjectSchema<{
452
+ readonly imapHost: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
453
+ readonly imapPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
454
+ readonly imapPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
455
+ readonly imapSocketType: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"STARTTLS", undefined>, import("valibot").LiteralSchema<"SSL", undefined>], undefined>;
456
+ readonly imapUser: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
457
+ readonly smtpHost: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
458
+ readonly smtpPassword: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
459
+ readonly smtpPort: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, number, undefined>, import("valibot").MaxValueAction<number, number, undefined>]>, undefined>;
460
+ readonly smtpSocketType: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"STARTTLS", undefined>, import("valibot").LiteralSchema<"SSL", undefined>], undefined>;
461
+ readonly smtpUser: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
462
+ }, undefined>;
463
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
464
+ }, undefined>;
465
+ readonly clientID: import("valibot").StringSchema<undefined>;
466
+ readonly id: import("valibot").NumberSchema<undefined>;
467
+ readonly name: import("valibot").LiteralSchema<"setConnectionConfigImapRaw", undefined>;
468
+ }, undefined> | import("valibot").ObjectSchema<{
469
+ readonly args: import("valibot").ObjectSchema<{
470
+ readonly connectionConfig: import("valibot").ObjectSchema<{
471
+ readonly code: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
472
+ readonly provider: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"GOOGLE", undefined>, import("valibot").LiteralSchema<"OUTLOOK", undefined>], undefined>;
473
+ readonly user: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
474
+ }, undefined>;
475
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
476
+ }, undefined>;
477
+ readonly clientID: import("valibot").StringSchema<undefined>;
478
+ readonly id: import("valibot").NumberSchema<undefined>;
479
+ readonly name: import("valibot").LiteralSchema<"setConnectionConfigOauth", undefined>;
480
+ }, undefined> | import("valibot").ObjectSchema<{
481
+ readonly args: import("valibot").ObjectSchema<{
482
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
483
+ readonly settings: Omit<import("valibot").ObjectSchema<{
484
+ readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
485
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
486
+ }, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
487
+ readonly entries: {
488
+ readonly color: import("valibot").OptionalSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
489
+ readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
490
+ };
491
+ readonly '~standard': import("valibot").StandardProps<{
492
+ color?: string | undefined;
493
+ name?: string | null | undefined;
494
+ }, {
495
+ color?: string | undefined;
496
+ name?: string | null | undefined;
497
+ }>;
498
+ readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
499
+ color?: string | undefined;
500
+ name?: string | null | undefined;
501
+ }, import("valibot").ObjectIssue | import("valibot").StringIssue | import("valibot").NonOptionalIssue | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number>>;
502
+ readonly '~types'?: {
503
+ readonly input: {
504
+ color?: string | undefined;
505
+ name?: string | null | undefined;
506
+ };
507
+ readonly output: {
508
+ color?: string | undefined;
509
+ name?: string | null | undefined;
510
+ };
511
+ readonly issue: import("valibot").ObjectIssue | import("valibot").StringIssue | import("valibot").NonOptionalIssue | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number>;
512
+ } | undefined;
513
+ };
514
+ }, undefined>;
515
+ readonly clientID: import("valibot").StringSchema<undefined>;
516
+ readonly id: import("valibot").NumberSchema<undefined>;
517
+ readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
518
+ }, undefined>)[], undefined>, undefined>;
519
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
520
+ readonly data: import("valibot").ObjectSchema<{
521
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
522
+ readonly issues: import("valibot").ObjectSchema<{
523
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
524
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
525
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
526
+ }, undefined>;
527
+ }, undefined>;
528
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
529
+ }, undefined>, import("valibot").ObjectSchema<{
530
+ readonly data: import("valibot").ObjectSchema<{
531
+ readonly code: import("valibot").LiteralSchema<"MUTATION_REJECTED", undefined>;
532
+ }, undefined>;
533
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
534
+ }, undefined>, import("valibot").ObjectSchema<{
535
+ readonly data: import("valibot").ObjectSchema<{
536
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
537
+ }, undefined>;
538
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
539
+ }, undefined>, import("valibot").ObjectSchema<{
540
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
541
+ }, undefined>], undefined>>;
542
+ draft: EndpointConfig<"/v1/pv/sync/push/draft", import("valibot").ObjectSchema<{
543
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
544
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
545
+ readonly args: import("valibot").ObjectSchema<{
546
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
547
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
548
+ }, undefined>;
549
+ readonly clientID: import("valibot").StringSchema<undefined>;
550
+ readonly id: import("valibot").NumberSchema<undefined>;
551
+ readonly name: import("valibot").LiteralSchema<"cancelSend", undefined>;
552
+ }, undefined> | import("valibot").ObjectSchema<{
553
+ readonly args: import("valibot").ObjectSchema<{
554
+ readonly attachment: import("valibot").ObjectSchema<{
555
+ readonly failed: import("valibot").BooleanSchema<undefined>;
556
+ readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
557
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
558
+ readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
559
+ readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
560
+ readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
561
+ readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
562
+ }, undefined>;
563
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
564
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
565
+ }, undefined>;
566
+ readonly clientID: import("valibot").StringSchema<undefined>;
567
+ readonly id: import("valibot").NumberSchema<undefined>;
568
+ readonly name: import("valibot").LiteralSchema<"createAttachment", undefined>;
569
+ }, undefined> | import("valibot").ObjectSchema<{
570
+ readonly args: import("valibot").ObjectSchema<{
571
+ readonly attachments: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
572
+ readonly failed: import("valibot").BooleanSchema<undefined>;
573
+ readonly fileName: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
574
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
575
+ readonly mimeType: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
576
+ readonly totalChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
577
+ readonly totalSize: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
578
+ readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
579
+ }, undefined>, undefined>;
580
+ readonly body: import("valibot").ObjectSchema<{
581
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
582
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
583
+ readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
584
+ readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
585
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
586
+ }, undefined>;
587
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
588
+ readonly error: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
589
+ readonly from: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
590
+ readonly fromName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
591
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
592
+ readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
593
+ readonly scheduledFor: import("valibot").NullableSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>, undefined>;
594
+ readonly status: import("valibot").PicklistSchema<readonly ["DRAFT", "SEND_REQUESTED", "SEND_CONFIRMED", "SEND_FAILED"], undefined>;
595
+ readonly type: import("valibot").PicklistSchema<readonly ["NEW", "REPLY", "FORWARD"], undefined>;
596
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [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<"createDraft", undefined>;
601
+ }, undefined> | import("valibot").ObjectSchema<{
602
+ readonly args: import("valibot").ObjectSchema<{
603
+ readonly attachmentId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
604
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
605
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
606
+ }, undefined>;
607
+ readonly clientID: import("valibot").StringSchema<undefined>;
608
+ readonly id: import("valibot").NumberSchema<undefined>;
609
+ readonly name: import("valibot").LiteralSchema<"deleteAttachment", undefined>;
610
+ }, undefined> | import("valibot").ObjectSchema<{
611
+ readonly args: import("valibot").ObjectSchema<{
612
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
613
+ }, undefined>;
614
+ readonly clientID: import("valibot").StringSchema<undefined>;
615
+ readonly id: import("valibot").NumberSchema<undefined>;
616
+ readonly name: import("valibot").LiteralSchema<"deleteDraft", undefined>;
617
+ }, undefined> | import("valibot").ObjectSchema<{
618
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
619
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
620
+ readonly kind: import("valibot").LiteralSchema<"IMMEDIATE", undefined>;
621
+ readonly undoMs: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
622
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
623
+ }, undefined>, import("valibot").ObjectSchema<{
624
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
625
+ readonly kind: import("valibot").LiteralSchema<"SCHEDULED", undefined>;
626
+ readonly scheduledFor: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
627
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
628
+ }, undefined>], undefined>;
629
+ readonly clientID: import("valibot").StringSchema<undefined>;
630
+ readonly id: import("valibot").NumberSchema<undefined>;
631
+ readonly name: import("valibot").LiteralSchema<"scheduleSend", undefined>;
632
+ }, undefined> | import("valibot").ObjectSchema<{
633
+ readonly args: import("valibot").ObjectSchema<{
634
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
635
+ readonly patch: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
636
+ readonly index: import("valibot").NumberSchema<undefined>;
637
+ readonly type: import("valibot").UnionSchema<[import("valibot").LiteralSchema<"INSERTION", undefined>, import("valibot").LiteralSchema<"DELETION", undefined>], undefined>;
638
+ readonly value: import("valibot").StringSchema<undefined>;
639
+ }, undefined>, undefined>;
640
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
641
+ }, undefined>;
642
+ readonly clientID: import("valibot").StringSchema<undefined>;
643
+ readonly id: import("valibot").NumberSchema<undefined>;
644
+ readonly name: import("valibot").LiteralSchema<"setContent", undefined>;
645
+ }, undefined> | import("valibot").ObjectSchema<{
646
+ readonly args: import("valibot").ObjectSchema<{
647
+ readonly envelope: Omit<import("valibot").ObjectSchema<{
648
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
649
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
650
+ readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
651
+ readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
652
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
653
+ }, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
654
+ readonly entries: Omit<{
655
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
656
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
657
+ readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
658
+ readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
659
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
660
+ }, "content">;
661
+ readonly '~standard': import("valibot").StandardProps<{
662
+ bcc: string[];
663
+ cc: string[];
664
+ to: string[];
665
+ subject: string | null;
666
+ }, {
667
+ bcc: string[];
668
+ cc: string[];
669
+ to: string[];
670
+ subject: string | null;
671
+ }>;
672
+ readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
673
+ bcc: string[];
674
+ cc: string[];
675
+ to: string[];
676
+ subject: string | null;
677
+ }, import("valibot").ObjectIssue | import("valibot").StringIssue | import("valibot").ArrayIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonOptionalIssue | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number>>;
678
+ readonly '~types'?: {
679
+ readonly input: {
680
+ bcc: string[];
681
+ cc: string[];
682
+ to: string[];
683
+ subject: string | null;
684
+ };
685
+ readonly output: {
686
+ bcc: string[];
687
+ cc: string[];
688
+ to: string[];
689
+ subject: string | null;
690
+ };
691
+ readonly issue: import("valibot").ObjectIssue | import("valibot").StringIssue | import("valibot").ArrayIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonOptionalIssue | import("valibot").NonEmptyIssue<string> | import("valibot").MaxLengthIssue<string, number>;
692
+ } | undefined;
693
+ };
694
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
695
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
696
+ }, undefined>;
697
+ readonly clientID: import("valibot").StringSchema<undefined>;
698
+ readonly id: import("valibot").NumberSchema<undefined>;
699
+ readonly name: import("valibot").LiteralSchema<"setEnvelope", undefined>;
700
+ }, undefined> | import("valibot").ObjectSchema<{
701
+ readonly args: import("valibot").ObjectSchema<{
702
+ readonly aliasId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
703
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
704
+ readonly from: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
705
+ readonly fromName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
706
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
707
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
708
+ }, undefined>;
709
+ readonly clientID: import("valibot").StringSchema<undefined>;
710
+ readonly id: import("valibot").NumberSchema<undefined>;
711
+ readonly name: import("valibot").LiteralSchema<"setFrom", undefined>;
712
+ }, undefined> | import("valibot").ObjectSchema<{
713
+ readonly args: import("valibot").ObjectSchema<{
714
+ readonly attachmentId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
715
+ readonly chunk: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").Base64Action<string, undefined>]>;
716
+ readonly chunkIndex: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
717
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
718
+ }, undefined>;
719
+ readonly clientID: import("valibot").StringSchema<undefined>;
720
+ readonly id: import("valibot").NumberSchema<undefined>;
721
+ readonly name: import("valibot").LiteralSchema<"uploadAttachmentChunk", undefined>;
722
+ }, undefined>)[], undefined>, undefined>;
723
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
724
+ readonly data: import("valibot").ObjectSchema<{
725
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
726
+ readonly issues: import("valibot").ObjectSchema<{
727
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
728
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
729
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
730
+ }, undefined>;
731
+ }, undefined>;
732
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
733
+ }, undefined>, import("valibot").ObjectSchema<{
734
+ readonly data: import("valibot").ObjectSchema<{
735
+ readonly code: import("valibot").LiteralSchema<"MUTATION_REJECTED", undefined>;
736
+ }, undefined>;
737
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
738
+ }, undefined>, import("valibot").ObjectSchema<{
739
+ readonly data: import("valibot").ObjectSchema<{
740
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
741
+ }, undefined>;
742
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
743
+ }, undefined>, import("valibot").ObjectSchema<{
744
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
745
+ }, undefined>], undefined>>;
746
+ thread: EndpointConfig<"/v1/pv/sync/push/thread", import("valibot").ObjectSchema<{
747
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
748
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
749
+ readonly args: import("valibot").ObjectSchema<{
750
+ readonly labelPath: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
751
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
752
+ }, undefined>;
753
+ readonly clientID: import("valibot").StringSchema<undefined>;
754
+ readonly id: import("valibot").NumberSchema<undefined>;
755
+ readonly name: import("valibot").LiteralSchema<"addLabel", undefined>;
756
+ }, undefined> | import("valibot").ObjectSchema<{
757
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
758
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
759
+ }, undefined>, import("valibot").ObjectSchema<{
760
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
761
+ }, undefined>], undefined>;
762
+ readonly clientID: import("valibot").StringSchema<undefined>;
763
+ readonly id: import("valibot").NumberSchema<undefined>;
764
+ readonly name: import("valibot").LiteralSchema<"delete", undefined>;
765
+ }, undefined> | import("valibot").ObjectSchema<{
766
+ readonly args: import("valibot").ObjectSchema<{
767
+ readonly labelPath: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
768
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
769
+ }, undefined>;
770
+ readonly clientID: import("valibot").StringSchema<undefined>;
771
+ readonly id: import("valibot").NumberSchema<undefined>;
772
+ readonly name: import("valibot").LiteralSchema<"removeLabel", undefined>;
773
+ }, undefined> | import("valibot").ObjectSchema<{
774
+ readonly args: import("valibot").UnionSchema<readonly [import("valibot").ObjectSchema<{
775
+ readonly attachmentId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
776
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
777
+ }, undefined>, import("valibot").ObjectSchema<{
778
+ readonly attachmentIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
779
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
780
+ }, undefined>], undefined>;
781
+ readonly clientID: import("valibot").StringSchema<undefined>;
782
+ readonly id: import("valibot").NumberSchema<undefined>;
783
+ readonly name: import("valibot").LiteralSchema<"requestAttachmentDownload", undefined>;
784
+ }, undefined> | import("valibot").ObjectSchema<{
785
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
786
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
787
+ }, undefined>, import("valibot").ObjectSchema<{
788
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
789
+ }, undefined>], undefined>;
790
+ readonly clientID: import("valibot").StringSchema<undefined>;
791
+ readonly id: import("valibot").NumberSchema<undefined>;
792
+ readonly name: import("valibot").LiteralSchema<"setArchive", undefined>;
793
+ }, undefined> | import("valibot").ObjectSchema<{
794
+ readonly args: import("valibot").UnionSchema<readonly [import("valibot").ObjectSchema<{
795
+ readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
796
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
797
+ }, undefined>, import("valibot").ObjectSchema<{
798
+ readonly flagged: import("valibot").NonOptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
799
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
800
+ }, undefined>], undefined>;
801
+ readonly clientID: import("valibot").StringSchema<undefined>;
802
+ readonly id: import("valibot").NumberSchema<undefined>;
803
+ readonly name: import("valibot").LiteralSchema<"setFlagged", undefined>;
804
+ }, undefined> | import("valibot").ObjectSchema<{
805
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
806
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
807
+ }, undefined>, import("valibot").ObjectSchema<{
808
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
809
+ }, undefined>], undefined>;
810
+ readonly clientID: import("valibot").StringSchema<undefined>;
811
+ readonly id: import("valibot").NumberSchema<undefined>;
812
+ readonly name: import("valibot").LiteralSchema<"setInbox", undefined>;
813
+ }, undefined> | import("valibot").ObjectSchema<{
814
+ readonly args: import("valibot").UnionSchema<readonly [import("valibot").ObjectSchema<{
815
+ readonly seen: import("valibot").BooleanSchema<undefined>;
816
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
817
+ }, undefined>, import("valibot").ObjectSchema<{
818
+ readonly seen: import("valibot").BooleanSchema<undefined>;
819
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
820
+ }, undefined>], undefined>;
821
+ readonly clientID: import("valibot").StringSchema<undefined>;
822
+ readonly id: import("valibot").NumberSchema<undefined>;
823
+ readonly name: import("valibot").LiteralSchema<"setSeen", undefined>;
824
+ }, undefined> | import("valibot").ObjectSchema<{
825
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
826
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
827
+ }, undefined>, import("valibot").ObjectSchema<{
828
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
829
+ }, undefined>], undefined>;
830
+ readonly clientID: import("valibot").StringSchema<undefined>;
831
+ readonly id: import("valibot").NumberSchema<undefined>;
832
+ readonly name: import("valibot").LiteralSchema<"setSpam", undefined>;
833
+ }, undefined> | import("valibot").ObjectSchema<{
834
+ readonly args: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
835
+ readonly threadId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
836
+ }, undefined>, import("valibot").ObjectSchema<{
837
+ readonly threadIds: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
838
+ }, undefined>], undefined>;
839
+ readonly clientID: import("valibot").StringSchema<undefined>;
840
+ readonly id: import("valibot").NumberSchema<undefined>;
841
+ readonly name: import("valibot").LiteralSchema<"setTrash", undefined>;
842
+ }, undefined>)[], undefined>, undefined>;
843
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
844
+ readonly data: import("valibot").ObjectSchema<{
845
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
846
+ readonly issues: import("valibot").ObjectSchema<{
847
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
848
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
849
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
850
+ }, undefined>;
851
+ }, undefined>;
852
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
853
+ }, undefined>, import("valibot").ObjectSchema<{
854
+ readonly data: import("valibot").ObjectSchema<{
855
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
856
+ }, undefined>;
857
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
858
+ }, undefined>, import("valibot").ObjectSchema<{
859
+ readonly data: import("valibot").ObjectSchema<{
860
+ readonly code: import("valibot").LiteralSchema<"MUTATION_REJECTED", undefined>;
861
+ }, undefined>;
862
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
863
+ }, undefined>, import("valibot").ObjectSchema<{
864
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
865
+ }, undefined>], undefined>>;
866
+ user: EndpointConfig<"/v1/pv/sync/push/user", import("valibot").ObjectSchema<{
867
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
868
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
869
+ readonly args: import("valibot").ObjectSchema<{
870
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
871
+ readonly token: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
872
+ }, undefined>;
873
+ readonly clientID: import("valibot").StringSchema<undefined>;
874
+ readonly id: import("valibot").NumberSchema<undefined>;
875
+ readonly name: import("valibot").LiteralSchema<"deleteSettingsPushNotificationToken", undefined>;
876
+ }, undefined> | import("valibot").ObjectSchema<{
877
+ readonly args: import("valibot").ObjectSchema<{
878
+ readonly deviceId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
879
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
880
+ }, undefined>;
881
+ readonly clientID: import("valibot").StringSchema<undefined>;
882
+ readonly id: import("valibot").NumberSchema<undefined>;
883
+ readonly name: import("valibot").LiteralSchema<"deleteSettingsPushNotificationTokenForDevice", undefined>;
884
+ }, undefined> | import("valibot").ObjectSchema<{
885
+ readonly args: import("valibot").ObjectSchema<{
886
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
887
+ readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
888
+ }, undefined>;
889
+ readonly clientID: import("valibot").StringSchema<undefined>;
890
+ readonly id: import("valibot").NumberSchema<undefined>;
891
+ readonly name: import("valibot").LiteralSchema<"setSettingsName", undefined>;
892
+ }, undefined> | import("valibot").ObjectSchema<{
893
+ readonly args: import("valibot").ObjectSchema<{
894
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
895
+ readonly pushNotificationToken: import("valibot").ObjectSchema<{
896
+ readonly createdAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
897
+ readonly deviceId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
898
+ readonly token: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
899
+ }, undefined>;
900
+ }, undefined>;
901
+ readonly clientID: import("valibot").StringSchema<undefined>;
902
+ readonly id: import("valibot").NumberSchema<undefined>;
903
+ readonly name: import("valibot").LiteralSchema<"setSettingsPushNotificationToken", undefined>;
904
+ }, undefined>)[], undefined>, undefined>;
905
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
906
+ readonly data: import("valibot").ObjectSchema<{
907
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
908
+ readonly issues: import("valibot").ObjectSchema<{
909
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
910
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
911
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
912
+ }, undefined>;
913
+ }, undefined>;
914
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
915
+ }, undefined>, import("valibot").ObjectSchema<{
916
+ readonly data: import("valibot").ObjectSchema<{
917
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
918
+ }, undefined>;
919
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
920
+ }, undefined>, import("valibot").ObjectSchema<{
921
+ readonly data: import("valibot").ObjectSchema<{
922
+ readonly code: import("valibot").LiteralSchema<"MUTATION_REJECTED", undefined>;
923
+ }, undefined>;
924
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
925
+ }, undefined>, import("valibot").ObjectSchema<{
926
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
927
+ }, undefined>], undefined>>;
928
+ };
929
+ };
930
+ user: {
931
+ deleteUser: EndpointConfig<"/v1/pv/user", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
932
+ readonly data: import("valibot").ObjectSchema<{
933
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
934
+ }, undefined>;
935
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
936
+ }, undefined>, import("valibot").ObjectSchema<{
937
+ readonly status: import("valibot").LiteralSchema<204, undefined>;
938
+ }, undefined>], undefined>>;
939
+ };
940
+ };
4
941
  public: {
942
+ auth: {
943
+ refreshAuth: EndpointConfig<"/v1/pb/auth/refresh", import("valibot").ObjectSchema<{
944
+ readonly refreshToken: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
945
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
946
+ readonly data: import("valibot").ObjectSchema<{
947
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
948
+ readonly issues: import("valibot").ObjectSchema<{
949
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
950
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
951
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
952
+ }, undefined>;
953
+ }, undefined>;
954
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
955
+ }, undefined>, import("valibot").ObjectSchema<{
956
+ readonly data: import("valibot").ObjectSchema<{
957
+ readonly code: import("valibot").LiteralSchema<"AUTH_REFRESH_TOKEN_INVALID", undefined>;
958
+ }, undefined>;
959
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
960
+ }, undefined>, import("valibot").ObjectSchema<{
961
+ readonly data: import("valibot").ObjectSchema<{
962
+ readonly code: import("valibot").LiteralSchema<"AUTH_SERVER_RESPONSE_UNEXPECTED", undefined>;
963
+ }, undefined>;
964
+ readonly status: import("valibot").LiteralSchema<502, undefined>;
965
+ }, undefined>, import("valibot").ObjectSchema<{
966
+ readonly data: import("valibot").ObjectSchema<{
967
+ readonly accessToken: import("valibot").StringSchema<undefined>;
968
+ readonly refreshToken: import("valibot").StringSchema<undefined>;
969
+ readonly user: import("valibot").ObjectSchema<{
970
+ readonly createdAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
971
+ readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
972
+ readonly emailVerified: import("valibot").BooleanSchema<undefined>;
973
+ readonly firstName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
974
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
975
+ readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
976
+ readonly profilePictureUrl: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
977
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
978
+ }, undefined>;
979
+ }, undefined>;
980
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
981
+ }, undefined>], undefined>>;
982
+ sendAuthCode: EndpointConfig<"/v1/pb/auth/send-code", import("valibot").ObjectSchema<{
983
+ readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
984
+ }, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
985
+ readonly data: import("valibot").ObjectSchema<{
986
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
987
+ readonly issues: import("valibot").ObjectSchema<{
988
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
989
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
990
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
991
+ }, undefined>;
992
+ }, undefined>;
993
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
994
+ }, undefined>, import("valibot").ObjectSchema<{
995
+ readonly data: import("valibot").ObjectSchema<{
996
+ readonly code: import("valibot").LiteralSchema<"AUTH_SERVER_RESPONSE_UNEXPECTED", undefined>;
997
+ }, undefined>;
998
+ readonly status: import("valibot").LiteralSchema<502, undefined>;
999
+ }, undefined>, import("valibot").ObjectSchema<{
1000
+ readonly data: import("valibot").ObjectSchema<{
1001
+ readonly code: import("valibot").LiteralSchema<"INVITE_NOT_FOUND", undefined>;
1002
+ }, undefined>;
1003
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
1004
+ }, undefined>, import("valibot").ObjectSchema<{
1005
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
1006
+ }, undefined>], undefined>>;
1007
+ verifyAuthCode: EndpointConfig<"/v1/pb/auth/verify-code", import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
1008
+ readonly authType: import("valibot").LiteralSchema<"CODE", undefined>;
1009
+ readonly code: import("valibot").StringSchema<undefined>;
1010
+ readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
1011
+ }, undefined>, import("valibot").ObjectSchema<{
1012
+ readonly authType: import("valibot").LiteralSchema<"PASSWORD", undefined>;
1013
+ readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
1014
+ readonly password: import("valibot").StringSchema<undefined>;
1015
+ }, undefined>], undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
1016
+ readonly data: import("valibot").ObjectSchema<{
1017
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
1018
+ readonly issues: import("valibot").ObjectSchema<{
1019
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
1020
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1021
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1022
+ }, undefined>;
1023
+ }, undefined>;
1024
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
1025
+ }, undefined>, import("valibot").ObjectSchema<{
1026
+ readonly data: import("valibot").ObjectSchema<{
1027
+ readonly code: import("valibot").LiteralSchema<"AUTH_CODE_EXPIRED", undefined>;
1028
+ }, undefined>;
1029
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
1030
+ }, undefined>, import("valibot").ObjectSchema<{
1031
+ readonly data: import("valibot").ObjectSchema<{
1032
+ readonly code: import("valibot").LiteralSchema<"AUTH_CODE_INVALID", undefined>;
1033
+ }, undefined>;
1034
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
1035
+ }, undefined>, import("valibot").ObjectSchema<{
1036
+ readonly data: import("valibot").ObjectSchema<{
1037
+ readonly code: import("valibot").LiteralSchema<"AUTH_CODE_PREVIOUSLY_USED", undefined>;
1038
+ }, undefined>;
1039
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
1040
+ }, undefined>, import("valibot").ObjectSchema<{
1041
+ readonly data: import("valibot").ObjectSchema<{
1042
+ readonly code: import("valibot").LiteralSchema<"AUTH_TOO_MANY_ATTEMPTS", undefined>;
1043
+ }, undefined>;
1044
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
1045
+ }, undefined>, import("valibot").ObjectSchema<{
1046
+ readonly data: import("valibot").ObjectSchema<{
1047
+ readonly code: import("valibot").LiteralSchema<"AUTH_SERVER_RESPONSE_UNEXPECTED", undefined>;
1048
+ }, undefined>;
1049
+ readonly status: import("valibot").LiteralSchema<502, undefined>;
1050
+ }, undefined>, import("valibot").ObjectSchema<{
1051
+ readonly data: import("valibot").ObjectSchema<{
1052
+ readonly code: import("valibot").LiteralSchema<"USER_NOT_FOUND", undefined>;
1053
+ }, undefined>;
1054
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
1055
+ }, undefined>, import("valibot").ObjectSchema<{
1056
+ readonly data: import("valibot").ObjectSchema<{
1057
+ readonly code: import("valibot").LiteralSchema<"USER_MARKED_FOR_DELETION", undefined>;
1058
+ }, undefined>;
1059
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
1060
+ }, undefined>, import("valibot").ObjectSchema<{
1061
+ readonly data: import("valibot").ObjectSchema<{
1062
+ readonly accessToken: import("valibot").StringSchema<undefined>;
1063
+ readonly refreshToken: import("valibot").StringSchema<undefined>;
1064
+ readonly user: import("valibot").ObjectSchema<{
1065
+ readonly createdAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1066
+ readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
1067
+ readonly emailVerified: import("valibot").BooleanSchema<undefined>;
1068
+ readonly firstName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1069
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1070
+ readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1071
+ readonly profilePictureUrl: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1072
+ readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
1073
+ }, undefined>;
1074
+ }, undefined>;
1075
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
1076
+ }, undefined>], undefined>>;
1077
+ };
5
1078
  config: EndpointConfig<"/v1/pb/config", GenericSchema | undefined, GenericSchema | undefined, import("valibot").ObjectSchema<{
6
1079
  readonly data: import("valibot").ObjectSchema<{
7
1080
  readonly app: import("valibot").ObjectSchema<{