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