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