@remit/api-zod-schemas 0.0.45 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +1 -1
- package/schemas.d.ts +925 -7
- package/schemas.d.ts.map +1 -1
- package/schemas.js +11 -1
- package/schemas.js.map +1 -1
- package/schemas.ts +13 -1
package/schemas.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare const SemanticSearchChunkTypeSchema: z.ZodEnum<["sender", "recipi
|
|
|
47
47
|
export declare const OutboxMessageStatusSchema: z.ZodEnum<["draft", "queued", "sending", "sent", "unfiled", "failed", "blocked"]>;
|
|
48
48
|
export declare const OutboxAttachmentStateSchema: z.ZodEnum<["Pending", "Stored"]>;
|
|
49
49
|
export declare const OutboxAttachmentRejectionReasonSchema: z.ZodEnum<["EmptyFile", "UnusableFilename", "FileTooLarge", "MessageTooLarge", "TooManyAttachments", "ReservationExpired", "UploadMissing", "SizeMismatch"]>;
|
|
50
|
-
export declare const AddressFlagKeySchema: z.ZodEnum<["trusted", "blocked", "muted", "vip", "junkOnly", "category", "autoArchive", "unsubscribed"]>;
|
|
50
|
+
export declare const AddressFlagKeySchema: z.ZodEnum<["trusted", "blocked", "muted", "vip", "junkOnly", "category", "autoArchive", "unsubscribed", "neverSpam"]>;
|
|
51
51
|
export declare const MessageClassificationStateSchema: z.ZodEnum<["NotExamined", "Examined"]>;
|
|
52
52
|
export declare const AuthenticityVerdictSchema: z.ZodEnum<["NotEvaluated", "NotChecked", "Aligned", "Authenticated", "Routine", "Caution", "Impersonation"]>;
|
|
53
53
|
export declare const AuthResultVerdictSchema: z.ZodEnum<["Pass", "Fail", "None", "Neutral", "Softfail"]>;
|
|
@@ -67,6 +67,7 @@ export declare const MessageKeywordFlagSchema: z.ZodEnum<["$Forwarded", "$MDNSen
|
|
|
67
67
|
export declare const MailboxAttributeSchema: z.ZodEnum<["\\NonExistent", "\\Noinferiors", "\\Noselect", "\\HasChildren", "\\HasNoChildren", "\\Marked", "\\Unmarked", "\\Subscribed", "\\Remote"]>;
|
|
68
68
|
export declare const StorageTypeSchema: z.ZodEnum<["s3", "filesystem", "inline", "database"]>;
|
|
69
69
|
export declare const ContentEncodingSchema: z.ZodEnum<["none", "gzip", "zstd"]>;
|
|
70
|
+
export declare const SenderOverrideSchema: z.ZodEnum<["none", "blocked", "neverSpam"]>;
|
|
70
71
|
export declare const AccountSettingNameSchema: z.ZodEnum<["Theme", "Density", "DefaultComposerFormat", "PinnedFolders", "AccountSignaturePlainText", "AccountSignatureHtml", "AccountDisplayName", "AccountMuted", "AccountComposeLanguages", "MailboxDisplayName", "MailboxMuted", "FolderRoleAppointment", "FolderRoleAppointmentLabel", "MailboxRole"]>;
|
|
71
72
|
export declare const ConfigImportStateSchema: z.ZodEnum<["Pending", "Complete"]>;
|
|
72
73
|
export declare const ConfigImportRefKindSchema: z.ZodEnum<["FolderRole", "MailboxOverride", "FilterAction"]>;
|
|
@@ -4579,6 +4580,25 @@ export declare const BlockedFlagSchema: z.ZodObject<{
|
|
|
4579
4580
|
setBy?: string | undefined;
|
|
4580
4581
|
reason?: string | undefined;
|
|
4581
4582
|
}>;
|
|
4583
|
+
export declare const NeverSpamFlagSchema: z.ZodObject<{
|
|
4584
|
+
setAt: z.ZodNumber;
|
|
4585
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
4586
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
4587
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4588
|
+
value: z.ZodBoolean;
|
|
4589
|
+
}, "strip", z.ZodTypeAny, {
|
|
4590
|
+
value: boolean;
|
|
4591
|
+
setAt: number;
|
|
4592
|
+
expiresAt?: number | undefined;
|
|
4593
|
+
setBy?: string | undefined;
|
|
4594
|
+
reason?: string | undefined;
|
|
4595
|
+
}, {
|
|
4596
|
+
value: boolean;
|
|
4597
|
+
setAt: number;
|
|
4598
|
+
expiresAt?: number | undefined;
|
|
4599
|
+
setBy?: string | undefined;
|
|
4600
|
+
reason?: string | undefined;
|
|
4601
|
+
}>;
|
|
4582
4602
|
export declare const VipFlagSchema: z.ZodObject<{
|
|
4583
4603
|
setAt: z.ZodNumber;
|
|
4584
4604
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4732,6 +4752,25 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4732
4752
|
setBy?: string | undefined;
|
|
4733
4753
|
reason?: string | undefined;
|
|
4734
4754
|
}>>;
|
|
4755
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
4756
|
+
setAt: z.ZodNumber;
|
|
4757
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
4758
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
4759
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4760
|
+
value: z.ZodBoolean;
|
|
4761
|
+
}, "strip", z.ZodTypeAny, {
|
|
4762
|
+
value: boolean;
|
|
4763
|
+
setAt: number;
|
|
4764
|
+
expiresAt?: number | undefined;
|
|
4765
|
+
setBy?: string | undefined;
|
|
4766
|
+
reason?: string | undefined;
|
|
4767
|
+
}, {
|
|
4768
|
+
value: boolean;
|
|
4769
|
+
setAt: number;
|
|
4770
|
+
expiresAt?: number | undefined;
|
|
4771
|
+
setBy?: string | undefined;
|
|
4772
|
+
reason?: string | undefined;
|
|
4773
|
+
}>>;
|
|
4735
4774
|
muted: z.ZodOptional<z.ZodObject<{
|
|
4736
4775
|
setAt: z.ZodNumber;
|
|
4737
4776
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4929,6 +4968,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4929
4968
|
setBy?: string | undefined;
|
|
4930
4969
|
reason?: string | undefined;
|
|
4931
4970
|
} | undefined;
|
|
4971
|
+
neverSpam?: {
|
|
4972
|
+
value: boolean;
|
|
4973
|
+
setAt: number;
|
|
4974
|
+
expiresAt?: number | undefined;
|
|
4975
|
+
setBy?: string | undefined;
|
|
4976
|
+
reason?: string | undefined;
|
|
4977
|
+
} | undefined;
|
|
4932
4978
|
}, {
|
|
4933
4979
|
wellknown?: {
|
|
4934
4980
|
value: boolean;
|
|
@@ -4993,6 +5039,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4993
5039
|
setBy?: string | undefined;
|
|
4994
5040
|
reason?: string | undefined;
|
|
4995
5041
|
} | undefined;
|
|
5042
|
+
neverSpam?: {
|
|
5043
|
+
value: boolean;
|
|
5044
|
+
setAt: number;
|
|
5045
|
+
expiresAt?: number | undefined;
|
|
5046
|
+
setBy?: string | undefined;
|
|
5047
|
+
reason?: string | undefined;
|
|
5048
|
+
} | undefined;
|
|
4996
5049
|
}>;
|
|
4997
5050
|
export declare const AddressSchema: z.ZodObject<{
|
|
4998
5051
|
addressId: z.ZodString;
|
|
@@ -5041,6 +5094,25 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5041
5094
|
setBy?: string | undefined;
|
|
5042
5095
|
reason?: string | undefined;
|
|
5043
5096
|
}>>;
|
|
5097
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
5098
|
+
setAt: z.ZodNumber;
|
|
5099
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
5100
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
5101
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5102
|
+
value: z.ZodBoolean;
|
|
5103
|
+
}, "strip", z.ZodTypeAny, {
|
|
5104
|
+
value: boolean;
|
|
5105
|
+
setAt: number;
|
|
5106
|
+
expiresAt?: number | undefined;
|
|
5107
|
+
setBy?: string | undefined;
|
|
5108
|
+
reason?: string | undefined;
|
|
5109
|
+
}, {
|
|
5110
|
+
value: boolean;
|
|
5111
|
+
setAt: number;
|
|
5112
|
+
expiresAt?: number | undefined;
|
|
5113
|
+
setBy?: string | undefined;
|
|
5114
|
+
reason?: string | undefined;
|
|
5115
|
+
}>>;
|
|
5044
5116
|
muted: z.ZodOptional<z.ZodObject<{
|
|
5045
5117
|
setAt: z.ZodNumber;
|
|
5046
5118
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5238,6 +5310,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5238
5310
|
setBy?: string | undefined;
|
|
5239
5311
|
reason?: string | undefined;
|
|
5240
5312
|
} | undefined;
|
|
5313
|
+
neverSpam?: {
|
|
5314
|
+
value: boolean;
|
|
5315
|
+
setAt: number;
|
|
5316
|
+
expiresAt?: number | undefined;
|
|
5317
|
+
setBy?: string | undefined;
|
|
5318
|
+
reason?: string | undefined;
|
|
5319
|
+
} | undefined;
|
|
5241
5320
|
}, {
|
|
5242
5321
|
wellknown?: {
|
|
5243
5322
|
value: boolean;
|
|
@@ -5302,6 +5381,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5302
5381
|
setBy?: string | undefined;
|
|
5303
5382
|
reason?: string | undefined;
|
|
5304
5383
|
} | undefined;
|
|
5384
|
+
neverSpam?: {
|
|
5385
|
+
value: boolean;
|
|
5386
|
+
setAt: number;
|
|
5387
|
+
expiresAt?: number | undefined;
|
|
5388
|
+
setBy?: string | undefined;
|
|
5389
|
+
reason?: string | undefined;
|
|
5390
|
+
} | undefined;
|
|
5305
5391
|
}>;
|
|
5306
5392
|
inboundCount: z.ZodNumber;
|
|
5307
5393
|
outboundCount: z.ZodNumber;
|
|
@@ -5389,6 +5475,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5389
5475
|
setBy?: string | undefined;
|
|
5390
5476
|
reason?: string | undefined;
|
|
5391
5477
|
} | undefined;
|
|
5478
|
+
neverSpam?: {
|
|
5479
|
+
value: boolean;
|
|
5480
|
+
setAt: number;
|
|
5481
|
+
expiresAt?: number | undefined;
|
|
5482
|
+
setBy?: string | undefined;
|
|
5483
|
+
reason?: string | undefined;
|
|
5484
|
+
} | undefined;
|
|
5392
5485
|
};
|
|
5393
5486
|
displayName?: string | undefined;
|
|
5394
5487
|
lastOutboundAt?: number | undefined;
|
|
@@ -5470,6 +5563,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5470
5563
|
setBy?: string | undefined;
|
|
5471
5564
|
reason?: string | undefined;
|
|
5472
5565
|
} | undefined;
|
|
5566
|
+
neverSpam?: {
|
|
5567
|
+
value: boolean;
|
|
5568
|
+
setAt: number;
|
|
5569
|
+
expiresAt?: number | undefined;
|
|
5570
|
+
setBy?: string | undefined;
|
|
5571
|
+
reason?: string | undefined;
|
|
5572
|
+
} | undefined;
|
|
5473
5573
|
};
|
|
5474
5574
|
displayName?: string | undefined;
|
|
5475
5575
|
lastOutboundAt?: number | undefined;
|
|
@@ -5520,6 +5620,25 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5520
5620
|
setBy?: string | undefined;
|
|
5521
5621
|
reason?: string | undefined;
|
|
5522
5622
|
}>>;
|
|
5623
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
5624
|
+
setAt: z.ZodNumber;
|
|
5625
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
5626
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
5627
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5628
|
+
value: z.ZodBoolean;
|
|
5629
|
+
}, "strip", z.ZodTypeAny, {
|
|
5630
|
+
value: boolean;
|
|
5631
|
+
setAt: number;
|
|
5632
|
+
expiresAt?: number | undefined;
|
|
5633
|
+
setBy?: string | undefined;
|
|
5634
|
+
reason?: string | undefined;
|
|
5635
|
+
}, {
|
|
5636
|
+
value: boolean;
|
|
5637
|
+
setAt: number;
|
|
5638
|
+
expiresAt?: number | undefined;
|
|
5639
|
+
setBy?: string | undefined;
|
|
5640
|
+
reason?: string | undefined;
|
|
5641
|
+
}>>;
|
|
5523
5642
|
muted: z.ZodOptional<z.ZodObject<{
|
|
5524
5643
|
setAt: z.ZodNumber;
|
|
5525
5644
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5717,6 +5836,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5717
5836
|
setBy?: string | undefined;
|
|
5718
5837
|
reason?: string | undefined;
|
|
5719
5838
|
} | undefined;
|
|
5839
|
+
neverSpam?: {
|
|
5840
|
+
value: boolean;
|
|
5841
|
+
setAt: number;
|
|
5842
|
+
expiresAt?: number | undefined;
|
|
5843
|
+
setBy?: string | undefined;
|
|
5844
|
+
reason?: string | undefined;
|
|
5845
|
+
} | undefined;
|
|
5720
5846
|
}, {
|
|
5721
5847
|
wellknown?: {
|
|
5722
5848
|
value: boolean;
|
|
@@ -5781,6 +5907,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5781
5907
|
setBy?: string | undefined;
|
|
5782
5908
|
reason?: string | undefined;
|
|
5783
5909
|
} | undefined;
|
|
5910
|
+
neverSpam?: {
|
|
5911
|
+
value: boolean;
|
|
5912
|
+
setAt: number;
|
|
5913
|
+
expiresAt?: number | undefined;
|
|
5914
|
+
setBy?: string | undefined;
|
|
5915
|
+
reason?: string | undefined;
|
|
5916
|
+
} | undefined;
|
|
5784
5917
|
}>;
|
|
5785
5918
|
inboundCount: z.ZodNumber;
|
|
5786
5919
|
outboundCount: z.ZodNumber;
|
|
@@ -5866,6 +5999,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5866
5999
|
setBy?: string | undefined;
|
|
5867
6000
|
reason?: string | undefined;
|
|
5868
6001
|
} | undefined;
|
|
6002
|
+
neverSpam?: {
|
|
6003
|
+
value: boolean;
|
|
6004
|
+
setAt: number;
|
|
6005
|
+
expiresAt?: number | undefined;
|
|
6006
|
+
setBy?: string | undefined;
|
|
6007
|
+
reason?: string | undefined;
|
|
6008
|
+
} | undefined;
|
|
5869
6009
|
};
|
|
5870
6010
|
displayName?: string | undefined;
|
|
5871
6011
|
}, {
|
|
@@ -5945,6 +6085,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5945
6085
|
setBy?: string | undefined;
|
|
5946
6086
|
reason?: string | undefined;
|
|
5947
6087
|
} | undefined;
|
|
6088
|
+
neverSpam?: {
|
|
6089
|
+
value: boolean;
|
|
6090
|
+
setAt: number;
|
|
6091
|
+
expiresAt?: number | undefined;
|
|
6092
|
+
setBy?: string | undefined;
|
|
6093
|
+
reason?: string | undefined;
|
|
6094
|
+
} | undefined;
|
|
5948
6095
|
};
|
|
5949
6096
|
displayName?: string | undefined;
|
|
5950
6097
|
}>;
|
|
@@ -5987,6 +6134,25 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
5987
6134
|
setBy?: string | undefined;
|
|
5988
6135
|
reason?: string | undefined;
|
|
5989
6136
|
}>, z.ZodUnknown]>>;
|
|
6137
|
+
neverSpam: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6138
|
+
setAt: z.ZodNumber;
|
|
6139
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6140
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6141
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6142
|
+
value: z.ZodBoolean;
|
|
6143
|
+
}, "strip", z.ZodTypeAny, {
|
|
6144
|
+
value: boolean;
|
|
6145
|
+
setAt: number;
|
|
6146
|
+
expiresAt?: number | undefined;
|
|
6147
|
+
setBy?: string | undefined;
|
|
6148
|
+
reason?: string | undefined;
|
|
6149
|
+
}, {
|
|
6150
|
+
value: boolean;
|
|
6151
|
+
setAt: number;
|
|
6152
|
+
expiresAt?: number | undefined;
|
|
6153
|
+
setBy?: string | undefined;
|
|
6154
|
+
reason?: string | undefined;
|
|
6155
|
+
}>, z.ZodUnknown]>>;
|
|
5990
6156
|
muted: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5991
6157
|
setAt: z.ZodNumber;
|
|
5992
6158
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6130,6 +6296,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
6130
6296
|
category?: unknown;
|
|
6131
6297
|
autoArchive?: unknown;
|
|
6132
6298
|
unsubscribed?: unknown;
|
|
6299
|
+
neverSpam?: unknown;
|
|
6133
6300
|
}, {
|
|
6134
6301
|
wellknown?: unknown;
|
|
6135
6302
|
vip?: unknown;
|
|
@@ -6140,6 +6307,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
6140
6307
|
category?: unknown;
|
|
6141
6308
|
autoArchive?: unknown;
|
|
6142
6309
|
unsubscribed?: unknown;
|
|
6310
|
+
neverSpam?: unknown;
|
|
6143
6311
|
}>;
|
|
6144
6312
|
export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
6145
6313
|
flags: z.ZodOptional<z.ZodObject<{
|
|
@@ -6181,6 +6349,25 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6181
6349
|
setBy?: string | undefined;
|
|
6182
6350
|
reason?: string | undefined;
|
|
6183
6351
|
}>, z.ZodUnknown]>>;
|
|
6352
|
+
neverSpam: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6353
|
+
setAt: z.ZodNumber;
|
|
6354
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6355
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6356
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6357
|
+
value: z.ZodBoolean;
|
|
6358
|
+
}, "strip", z.ZodTypeAny, {
|
|
6359
|
+
value: boolean;
|
|
6360
|
+
setAt: number;
|
|
6361
|
+
expiresAt?: number | undefined;
|
|
6362
|
+
setBy?: string | undefined;
|
|
6363
|
+
reason?: string | undefined;
|
|
6364
|
+
}, {
|
|
6365
|
+
value: boolean;
|
|
6366
|
+
setAt: number;
|
|
6367
|
+
expiresAt?: number | undefined;
|
|
6368
|
+
setBy?: string | undefined;
|
|
6369
|
+
reason?: string | undefined;
|
|
6370
|
+
}>, z.ZodUnknown]>>;
|
|
6184
6371
|
muted: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6185
6372
|
setAt: z.ZodNumber;
|
|
6186
6373
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6324,6 +6511,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6324
6511
|
category?: unknown;
|
|
6325
6512
|
autoArchive?: unknown;
|
|
6326
6513
|
unsubscribed?: unknown;
|
|
6514
|
+
neverSpam?: unknown;
|
|
6327
6515
|
}, {
|
|
6328
6516
|
wellknown?: unknown;
|
|
6329
6517
|
vip?: unknown;
|
|
@@ -6334,8 +6522,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6334
6522
|
category?: unknown;
|
|
6335
6523
|
autoArchive?: unknown;
|
|
6336
6524
|
unsubscribed?: unknown;
|
|
6525
|
+
neverSpam?: unknown;
|
|
6337
6526
|
}>>;
|
|
6338
|
-
clearFlags: z.ZodOptional<z.ZodArray<z.ZodEnum<["trusted", "blocked", "muted", "vip", "junkOnly", "category", "autoArchive", "unsubscribed"]>, "many">>;
|
|
6527
|
+
clearFlags: z.ZodOptional<z.ZodArray<z.ZodEnum<["trusted", "blocked", "muted", "vip", "junkOnly", "category", "autoArchive", "unsubscribed", "neverSpam"]>, "many">>;
|
|
6339
6528
|
}, "strip", z.ZodTypeAny, {
|
|
6340
6529
|
flags?: {
|
|
6341
6530
|
wellknown?: unknown;
|
|
@@ -6347,8 +6536,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6347
6536
|
category?: unknown;
|
|
6348
6537
|
autoArchive?: unknown;
|
|
6349
6538
|
unsubscribed?: unknown;
|
|
6539
|
+
neverSpam?: unknown;
|
|
6350
6540
|
} | undefined;
|
|
6351
|
-
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed")[] | undefined;
|
|
6541
|
+
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed" | "neverSpam")[] | undefined;
|
|
6352
6542
|
}, {
|
|
6353
6543
|
flags?: {
|
|
6354
6544
|
wellknown?: unknown;
|
|
@@ -6360,8 +6550,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6360
6550
|
category?: unknown;
|
|
6361
6551
|
autoArchive?: unknown;
|
|
6362
6552
|
unsubscribed?: unknown;
|
|
6553
|
+
neverSpam?: unknown;
|
|
6363
6554
|
} | undefined;
|
|
6364
|
-
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed")[] | undefined;
|
|
6555
|
+
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed" | "neverSpam")[] | undefined;
|
|
6365
6556
|
}>;
|
|
6366
6557
|
export declare const MessageSummaryResponseSchema: z.ZodObject<{
|
|
6367
6558
|
messageId: z.ZodString;
|
|
@@ -6561,6 +6752,25 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6561
6752
|
setBy?: string | undefined;
|
|
6562
6753
|
reason?: string | undefined;
|
|
6563
6754
|
}>>;
|
|
6755
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
6756
|
+
setAt: z.ZodNumber;
|
|
6757
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6758
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6759
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6760
|
+
value: z.ZodBoolean;
|
|
6761
|
+
}, "strip", z.ZodTypeAny, {
|
|
6762
|
+
value: boolean;
|
|
6763
|
+
setAt: number;
|
|
6764
|
+
expiresAt?: number | undefined;
|
|
6765
|
+
setBy?: string | undefined;
|
|
6766
|
+
reason?: string | undefined;
|
|
6767
|
+
}, {
|
|
6768
|
+
value: boolean;
|
|
6769
|
+
setAt: number;
|
|
6770
|
+
expiresAt?: number | undefined;
|
|
6771
|
+
setBy?: string | undefined;
|
|
6772
|
+
reason?: string | undefined;
|
|
6773
|
+
}>>;
|
|
6564
6774
|
muted: z.ZodOptional<z.ZodObject<{
|
|
6565
6775
|
setAt: z.ZodNumber;
|
|
6566
6776
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6758,6 +6968,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6758
6968
|
setBy?: string | undefined;
|
|
6759
6969
|
reason?: string | undefined;
|
|
6760
6970
|
} | undefined;
|
|
6971
|
+
neverSpam?: {
|
|
6972
|
+
value: boolean;
|
|
6973
|
+
setAt: number;
|
|
6974
|
+
expiresAt?: number | undefined;
|
|
6975
|
+
setBy?: string | undefined;
|
|
6976
|
+
reason?: string | undefined;
|
|
6977
|
+
} | undefined;
|
|
6761
6978
|
}, {
|
|
6762
6979
|
wellknown?: {
|
|
6763
6980
|
value: boolean;
|
|
@@ -6822,6 +7039,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6822
7039
|
setBy?: string | undefined;
|
|
6823
7040
|
reason?: string | undefined;
|
|
6824
7041
|
} | undefined;
|
|
7042
|
+
neverSpam?: {
|
|
7043
|
+
value: boolean;
|
|
7044
|
+
setAt: number;
|
|
7045
|
+
expiresAt?: number | undefined;
|
|
7046
|
+
setBy?: string | undefined;
|
|
7047
|
+
reason?: string | undefined;
|
|
7048
|
+
} | undefined;
|
|
6825
7049
|
}>>;
|
|
6826
7050
|
}, "strip", z.ZodTypeAny, {
|
|
6827
7051
|
addressId: string;
|
|
@@ -6893,6 +7117,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6893
7117
|
setBy?: string | undefined;
|
|
6894
7118
|
reason?: string | undefined;
|
|
6895
7119
|
} | undefined;
|
|
7120
|
+
neverSpam?: {
|
|
7121
|
+
value: boolean;
|
|
7122
|
+
setAt: number;
|
|
7123
|
+
expiresAt?: number | undefined;
|
|
7124
|
+
setBy?: string | undefined;
|
|
7125
|
+
reason?: string | undefined;
|
|
7126
|
+
} | undefined;
|
|
6896
7127
|
} | undefined;
|
|
6897
7128
|
}, {
|
|
6898
7129
|
addressId: string;
|
|
@@ -6964,6 +7195,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6964
7195
|
setBy?: string | undefined;
|
|
6965
7196
|
reason?: string | undefined;
|
|
6966
7197
|
} | undefined;
|
|
7198
|
+
neverSpam?: {
|
|
7199
|
+
value: boolean;
|
|
7200
|
+
setAt: number;
|
|
7201
|
+
expiresAt?: number | undefined;
|
|
7202
|
+
setBy?: string | undefined;
|
|
7203
|
+
reason?: string | undefined;
|
|
7204
|
+
} | undefined;
|
|
6967
7205
|
} | undefined;
|
|
6968
7206
|
}>;
|
|
6969
7207
|
export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
@@ -7016,6 +7254,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7016
7254
|
setBy?: string | undefined;
|
|
7017
7255
|
reason?: string | undefined;
|
|
7018
7256
|
}>>;
|
|
7257
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
7258
|
+
setAt: z.ZodNumber;
|
|
7259
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
7260
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
7261
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
7262
|
+
value: z.ZodBoolean;
|
|
7263
|
+
}, "strip", z.ZodTypeAny, {
|
|
7264
|
+
value: boolean;
|
|
7265
|
+
setAt: number;
|
|
7266
|
+
expiresAt?: number | undefined;
|
|
7267
|
+
setBy?: string | undefined;
|
|
7268
|
+
reason?: string | undefined;
|
|
7269
|
+
}, {
|
|
7270
|
+
value: boolean;
|
|
7271
|
+
setAt: number;
|
|
7272
|
+
expiresAt?: number | undefined;
|
|
7273
|
+
setBy?: string | undefined;
|
|
7274
|
+
reason?: string | undefined;
|
|
7275
|
+
}>>;
|
|
7019
7276
|
muted: z.ZodOptional<z.ZodObject<{
|
|
7020
7277
|
setAt: z.ZodNumber;
|
|
7021
7278
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7213,6 +7470,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7213
7470
|
setBy?: string | undefined;
|
|
7214
7471
|
reason?: string | undefined;
|
|
7215
7472
|
} | undefined;
|
|
7473
|
+
neverSpam?: {
|
|
7474
|
+
value: boolean;
|
|
7475
|
+
setAt: number;
|
|
7476
|
+
expiresAt?: number | undefined;
|
|
7477
|
+
setBy?: string | undefined;
|
|
7478
|
+
reason?: string | undefined;
|
|
7479
|
+
} | undefined;
|
|
7216
7480
|
}, {
|
|
7217
7481
|
wellknown?: {
|
|
7218
7482
|
value: boolean;
|
|
@@ -7277,6 +7541,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7277
7541
|
setBy?: string | undefined;
|
|
7278
7542
|
reason?: string | undefined;
|
|
7279
7543
|
} | undefined;
|
|
7544
|
+
neverSpam?: {
|
|
7545
|
+
value: boolean;
|
|
7546
|
+
setAt: number;
|
|
7547
|
+
expiresAt?: number | undefined;
|
|
7548
|
+
setBy?: string | undefined;
|
|
7549
|
+
reason?: string | undefined;
|
|
7550
|
+
} | undefined;
|
|
7280
7551
|
}>>;
|
|
7281
7552
|
}, "strip", z.ZodTypeAny, {
|
|
7282
7553
|
addressId: string;
|
|
@@ -7348,6 +7619,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7348
7619
|
setBy?: string | undefined;
|
|
7349
7620
|
reason?: string | undefined;
|
|
7350
7621
|
} | undefined;
|
|
7622
|
+
neverSpam?: {
|
|
7623
|
+
value: boolean;
|
|
7624
|
+
setAt: number;
|
|
7625
|
+
expiresAt?: number | undefined;
|
|
7626
|
+
setBy?: string | undefined;
|
|
7627
|
+
reason?: string | undefined;
|
|
7628
|
+
} | undefined;
|
|
7351
7629
|
} | undefined;
|
|
7352
7630
|
}, {
|
|
7353
7631
|
addressId: string;
|
|
@@ -7419,6 +7697,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7419
7697
|
setBy?: string | undefined;
|
|
7420
7698
|
reason?: string | undefined;
|
|
7421
7699
|
} | undefined;
|
|
7700
|
+
neverSpam?: {
|
|
7701
|
+
value: boolean;
|
|
7702
|
+
setAt: number;
|
|
7703
|
+
expiresAt?: number | undefined;
|
|
7704
|
+
setBy?: string | undefined;
|
|
7705
|
+
reason?: string | undefined;
|
|
7706
|
+
} | undefined;
|
|
7422
7707
|
} | undefined;
|
|
7423
7708
|
}>, "many">;
|
|
7424
7709
|
to: z.ZodArray<z.ZodObject<{
|
|
@@ -7466,6 +7751,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7466
7751
|
setBy?: string | undefined;
|
|
7467
7752
|
reason?: string | undefined;
|
|
7468
7753
|
}>>;
|
|
7754
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
7755
|
+
setAt: z.ZodNumber;
|
|
7756
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
7757
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
7758
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
7759
|
+
value: z.ZodBoolean;
|
|
7760
|
+
}, "strip", z.ZodTypeAny, {
|
|
7761
|
+
value: boolean;
|
|
7762
|
+
setAt: number;
|
|
7763
|
+
expiresAt?: number | undefined;
|
|
7764
|
+
setBy?: string | undefined;
|
|
7765
|
+
reason?: string | undefined;
|
|
7766
|
+
}, {
|
|
7767
|
+
value: boolean;
|
|
7768
|
+
setAt: number;
|
|
7769
|
+
expiresAt?: number | undefined;
|
|
7770
|
+
setBy?: string | undefined;
|
|
7771
|
+
reason?: string | undefined;
|
|
7772
|
+
}>>;
|
|
7469
7773
|
muted: z.ZodOptional<z.ZodObject<{
|
|
7470
7774
|
setAt: z.ZodNumber;
|
|
7471
7775
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7663,6 +7967,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7663
7967
|
setBy?: string | undefined;
|
|
7664
7968
|
reason?: string | undefined;
|
|
7665
7969
|
} | undefined;
|
|
7970
|
+
neverSpam?: {
|
|
7971
|
+
value: boolean;
|
|
7972
|
+
setAt: number;
|
|
7973
|
+
expiresAt?: number | undefined;
|
|
7974
|
+
setBy?: string | undefined;
|
|
7975
|
+
reason?: string | undefined;
|
|
7976
|
+
} | undefined;
|
|
7666
7977
|
}, {
|
|
7667
7978
|
wellknown?: {
|
|
7668
7979
|
value: boolean;
|
|
@@ -7727,6 +8038,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7727
8038
|
setBy?: string | undefined;
|
|
7728
8039
|
reason?: string | undefined;
|
|
7729
8040
|
} | undefined;
|
|
8041
|
+
neverSpam?: {
|
|
8042
|
+
value: boolean;
|
|
8043
|
+
setAt: number;
|
|
8044
|
+
expiresAt?: number | undefined;
|
|
8045
|
+
setBy?: string | undefined;
|
|
8046
|
+
reason?: string | undefined;
|
|
8047
|
+
} | undefined;
|
|
7730
8048
|
}>>;
|
|
7731
8049
|
}, "strip", z.ZodTypeAny, {
|
|
7732
8050
|
addressId: string;
|
|
@@ -7798,6 +8116,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7798
8116
|
setBy?: string | undefined;
|
|
7799
8117
|
reason?: string | undefined;
|
|
7800
8118
|
} | undefined;
|
|
8119
|
+
neverSpam?: {
|
|
8120
|
+
value: boolean;
|
|
8121
|
+
setAt: number;
|
|
8122
|
+
expiresAt?: number | undefined;
|
|
8123
|
+
setBy?: string | undefined;
|
|
8124
|
+
reason?: string | undefined;
|
|
8125
|
+
} | undefined;
|
|
7801
8126
|
} | undefined;
|
|
7802
8127
|
}, {
|
|
7803
8128
|
addressId: string;
|
|
@@ -7869,6 +8194,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7869
8194
|
setBy?: string | undefined;
|
|
7870
8195
|
reason?: string | undefined;
|
|
7871
8196
|
} | undefined;
|
|
8197
|
+
neverSpam?: {
|
|
8198
|
+
value: boolean;
|
|
8199
|
+
setAt: number;
|
|
8200
|
+
expiresAt?: number | undefined;
|
|
8201
|
+
setBy?: string | undefined;
|
|
8202
|
+
reason?: string | undefined;
|
|
8203
|
+
} | undefined;
|
|
7872
8204
|
} | undefined;
|
|
7873
8205
|
}>, "many">;
|
|
7874
8206
|
cc: z.ZodArray<z.ZodObject<{
|
|
@@ -7897,7 +8229,26 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7897
8229
|
setBy?: string | undefined;
|
|
7898
8230
|
reason?: string | undefined;
|
|
7899
8231
|
}>>;
|
|
7900
|
-
blocked: z.ZodOptional<z.ZodObject<{
|
|
8232
|
+
blocked: z.ZodOptional<z.ZodObject<{
|
|
8233
|
+
setAt: z.ZodNumber;
|
|
8234
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
8235
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
8236
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
8237
|
+
value: z.ZodBoolean;
|
|
8238
|
+
}, "strip", z.ZodTypeAny, {
|
|
8239
|
+
value: boolean;
|
|
8240
|
+
setAt: number;
|
|
8241
|
+
expiresAt?: number | undefined;
|
|
8242
|
+
setBy?: string | undefined;
|
|
8243
|
+
reason?: string | undefined;
|
|
8244
|
+
}, {
|
|
8245
|
+
value: boolean;
|
|
8246
|
+
setAt: number;
|
|
8247
|
+
expiresAt?: number | undefined;
|
|
8248
|
+
setBy?: string | undefined;
|
|
8249
|
+
reason?: string | undefined;
|
|
8250
|
+
}>>;
|
|
8251
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
7901
8252
|
setAt: z.ZodNumber;
|
|
7902
8253
|
setBy: z.ZodOptional<z.ZodString>;
|
|
7903
8254
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8113,6 +8464,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8113
8464
|
setBy?: string | undefined;
|
|
8114
8465
|
reason?: string | undefined;
|
|
8115
8466
|
} | undefined;
|
|
8467
|
+
neverSpam?: {
|
|
8468
|
+
value: boolean;
|
|
8469
|
+
setAt: number;
|
|
8470
|
+
expiresAt?: number | undefined;
|
|
8471
|
+
setBy?: string | undefined;
|
|
8472
|
+
reason?: string | undefined;
|
|
8473
|
+
} | undefined;
|
|
8116
8474
|
}, {
|
|
8117
8475
|
wellknown?: {
|
|
8118
8476
|
value: boolean;
|
|
@@ -8177,6 +8535,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8177
8535
|
setBy?: string | undefined;
|
|
8178
8536
|
reason?: string | undefined;
|
|
8179
8537
|
} | undefined;
|
|
8538
|
+
neverSpam?: {
|
|
8539
|
+
value: boolean;
|
|
8540
|
+
setAt: number;
|
|
8541
|
+
expiresAt?: number | undefined;
|
|
8542
|
+
setBy?: string | undefined;
|
|
8543
|
+
reason?: string | undefined;
|
|
8544
|
+
} | undefined;
|
|
8180
8545
|
}>>;
|
|
8181
8546
|
}, "strip", z.ZodTypeAny, {
|
|
8182
8547
|
addressId: string;
|
|
@@ -8248,6 +8613,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8248
8613
|
setBy?: string | undefined;
|
|
8249
8614
|
reason?: string | undefined;
|
|
8250
8615
|
} | undefined;
|
|
8616
|
+
neverSpam?: {
|
|
8617
|
+
value: boolean;
|
|
8618
|
+
setAt: number;
|
|
8619
|
+
expiresAt?: number | undefined;
|
|
8620
|
+
setBy?: string | undefined;
|
|
8621
|
+
reason?: string | undefined;
|
|
8622
|
+
} | undefined;
|
|
8251
8623
|
} | undefined;
|
|
8252
8624
|
}, {
|
|
8253
8625
|
addressId: string;
|
|
@@ -8319,6 +8691,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8319
8691
|
setBy?: string | undefined;
|
|
8320
8692
|
reason?: string | undefined;
|
|
8321
8693
|
} | undefined;
|
|
8694
|
+
neverSpam?: {
|
|
8695
|
+
value: boolean;
|
|
8696
|
+
setAt: number;
|
|
8697
|
+
expiresAt?: number | undefined;
|
|
8698
|
+
setBy?: string | undefined;
|
|
8699
|
+
reason?: string | undefined;
|
|
8700
|
+
} | undefined;
|
|
8322
8701
|
} | undefined;
|
|
8323
8702
|
}>, "many">;
|
|
8324
8703
|
bcc: z.ZodArray<z.ZodObject<{
|
|
@@ -8366,6 +8745,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8366
8745
|
setBy?: string | undefined;
|
|
8367
8746
|
reason?: string | undefined;
|
|
8368
8747
|
}>>;
|
|
8748
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
8749
|
+
setAt: z.ZodNumber;
|
|
8750
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
8751
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
8752
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
8753
|
+
value: z.ZodBoolean;
|
|
8754
|
+
}, "strip", z.ZodTypeAny, {
|
|
8755
|
+
value: boolean;
|
|
8756
|
+
setAt: number;
|
|
8757
|
+
expiresAt?: number | undefined;
|
|
8758
|
+
setBy?: string | undefined;
|
|
8759
|
+
reason?: string | undefined;
|
|
8760
|
+
}, {
|
|
8761
|
+
value: boolean;
|
|
8762
|
+
setAt: number;
|
|
8763
|
+
expiresAt?: number | undefined;
|
|
8764
|
+
setBy?: string | undefined;
|
|
8765
|
+
reason?: string | undefined;
|
|
8766
|
+
}>>;
|
|
8369
8767
|
muted: z.ZodOptional<z.ZodObject<{
|
|
8370
8768
|
setAt: z.ZodNumber;
|
|
8371
8769
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -8563,6 +8961,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8563
8961
|
setBy?: string | undefined;
|
|
8564
8962
|
reason?: string | undefined;
|
|
8565
8963
|
} | undefined;
|
|
8964
|
+
neverSpam?: {
|
|
8965
|
+
value: boolean;
|
|
8966
|
+
setAt: number;
|
|
8967
|
+
expiresAt?: number | undefined;
|
|
8968
|
+
setBy?: string | undefined;
|
|
8969
|
+
reason?: string | undefined;
|
|
8970
|
+
} | undefined;
|
|
8566
8971
|
}, {
|
|
8567
8972
|
wellknown?: {
|
|
8568
8973
|
value: boolean;
|
|
@@ -8627,6 +9032,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8627
9032
|
setBy?: string | undefined;
|
|
8628
9033
|
reason?: string | undefined;
|
|
8629
9034
|
} | undefined;
|
|
9035
|
+
neverSpam?: {
|
|
9036
|
+
value: boolean;
|
|
9037
|
+
setAt: number;
|
|
9038
|
+
expiresAt?: number | undefined;
|
|
9039
|
+
setBy?: string | undefined;
|
|
9040
|
+
reason?: string | undefined;
|
|
9041
|
+
} | undefined;
|
|
8630
9042
|
}>>;
|
|
8631
9043
|
}, "strip", z.ZodTypeAny, {
|
|
8632
9044
|
addressId: string;
|
|
@@ -8698,6 +9110,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8698
9110
|
setBy?: string | undefined;
|
|
8699
9111
|
reason?: string | undefined;
|
|
8700
9112
|
} | undefined;
|
|
9113
|
+
neverSpam?: {
|
|
9114
|
+
value: boolean;
|
|
9115
|
+
setAt: number;
|
|
9116
|
+
expiresAt?: number | undefined;
|
|
9117
|
+
setBy?: string | undefined;
|
|
9118
|
+
reason?: string | undefined;
|
|
9119
|
+
} | undefined;
|
|
8701
9120
|
} | undefined;
|
|
8702
9121
|
}, {
|
|
8703
9122
|
addressId: string;
|
|
@@ -8769,6 +9188,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8769
9188
|
setBy?: string | undefined;
|
|
8770
9189
|
reason?: string | undefined;
|
|
8771
9190
|
} | undefined;
|
|
9191
|
+
neverSpam?: {
|
|
9192
|
+
value: boolean;
|
|
9193
|
+
setAt: number;
|
|
9194
|
+
expiresAt?: number | undefined;
|
|
9195
|
+
setBy?: string | undefined;
|
|
9196
|
+
reason?: string | undefined;
|
|
9197
|
+
} | undefined;
|
|
8772
9198
|
} | undefined;
|
|
8773
9199
|
}>, "many">;
|
|
8774
9200
|
replyTo: z.ZodArray<z.ZodObject<{
|
|
@@ -8816,6 +9242,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8816
9242
|
setBy?: string | undefined;
|
|
8817
9243
|
reason?: string | undefined;
|
|
8818
9244
|
}>>;
|
|
9245
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
9246
|
+
setAt: z.ZodNumber;
|
|
9247
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
9248
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
9249
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
9250
|
+
value: z.ZodBoolean;
|
|
9251
|
+
}, "strip", z.ZodTypeAny, {
|
|
9252
|
+
value: boolean;
|
|
9253
|
+
setAt: number;
|
|
9254
|
+
expiresAt?: number | undefined;
|
|
9255
|
+
setBy?: string | undefined;
|
|
9256
|
+
reason?: string | undefined;
|
|
9257
|
+
}, {
|
|
9258
|
+
value: boolean;
|
|
9259
|
+
setAt: number;
|
|
9260
|
+
expiresAt?: number | undefined;
|
|
9261
|
+
setBy?: string | undefined;
|
|
9262
|
+
reason?: string | undefined;
|
|
9263
|
+
}>>;
|
|
8819
9264
|
muted: z.ZodOptional<z.ZodObject<{
|
|
8820
9265
|
setAt: z.ZodNumber;
|
|
8821
9266
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -9013,6 +9458,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9013
9458
|
setBy?: string | undefined;
|
|
9014
9459
|
reason?: string | undefined;
|
|
9015
9460
|
} | undefined;
|
|
9461
|
+
neverSpam?: {
|
|
9462
|
+
value: boolean;
|
|
9463
|
+
setAt: number;
|
|
9464
|
+
expiresAt?: number | undefined;
|
|
9465
|
+
setBy?: string | undefined;
|
|
9466
|
+
reason?: string | undefined;
|
|
9467
|
+
} | undefined;
|
|
9016
9468
|
}, {
|
|
9017
9469
|
wellknown?: {
|
|
9018
9470
|
value: boolean;
|
|
@@ -9077,6 +9529,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9077
9529
|
setBy?: string | undefined;
|
|
9078
9530
|
reason?: string | undefined;
|
|
9079
9531
|
} | undefined;
|
|
9532
|
+
neverSpam?: {
|
|
9533
|
+
value: boolean;
|
|
9534
|
+
setAt: number;
|
|
9535
|
+
expiresAt?: number | undefined;
|
|
9536
|
+
setBy?: string | undefined;
|
|
9537
|
+
reason?: string | undefined;
|
|
9538
|
+
} | undefined;
|
|
9080
9539
|
}>>;
|
|
9081
9540
|
}, "strip", z.ZodTypeAny, {
|
|
9082
9541
|
addressId: string;
|
|
@@ -9148,6 +9607,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9148
9607
|
setBy?: string | undefined;
|
|
9149
9608
|
reason?: string | undefined;
|
|
9150
9609
|
} | undefined;
|
|
9610
|
+
neverSpam?: {
|
|
9611
|
+
value: boolean;
|
|
9612
|
+
setAt: number;
|
|
9613
|
+
expiresAt?: number | undefined;
|
|
9614
|
+
setBy?: string | undefined;
|
|
9615
|
+
reason?: string | undefined;
|
|
9616
|
+
} | undefined;
|
|
9151
9617
|
} | undefined;
|
|
9152
9618
|
}, {
|
|
9153
9619
|
addressId: string;
|
|
@@ -9219,6 +9685,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9219
9685
|
setBy?: string | undefined;
|
|
9220
9686
|
reason?: string | undefined;
|
|
9221
9687
|
} | undefined;
|
|
9688
|
+
neverSpam?: {
|
|
9689
|
+
value: boolean;
|
|
9690
|
+
setAt: number;
|
|
9691
|
+
expiresAt?: number | undefined;
|
|
9692
|
+
setBy?: string | undefined;
|
|
9693
|
+
reason?: string | undefined;
|
|
9694
|
+
} | undefined;
|
|
9222
9695
|
} | undefined;
|
|
9223
9696
|
}>, "many">;
|
|
9224
9697
|
category: z.ZodEnum<["uncategorized", "personal", "newsletter", "marketing", "automated", "transactional", "social"]>;
|
|
@@ -9295,6 +9768,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9295
9768
|
setBy?: string | undefined;
|
|
9296
9769
|
reason?: string | undefined;
|
|
9297
9770
|
} | undefined;
|
|
9771
|
+
neverSpam?: {
|
|
9772
|
+
value: boolean;
|
|
9773
|
+
setAt: number;
|
|
9774
|
+
expiresAt?: number | undefined;
|
|
9775
|
+
setBy?: string | undefined;
|
|
9776
|
+
reason?: string | undefined;
|
|
9777
|
+
} | undefined;
|
|
9298
9778
|
} | undefined;
|
|
9299
9779
|
}[];
|
|
9300
9780
|
to: {
|
|
@@ -9367,6 +9847,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9367
9847
|
setBy?: string | undefined;
|
|
9368
9848
|
reason?: string | undefined;
|
|
9369
9849
|
} | undefined;
|
|
9850
|
+
neverSpam?: {
|
|
9851
|
+
value: boolean;
|
|
9852
|
+
setAt: number;
|
|
9853
|
+
expiresAt?: number | undefined;
|
|
9854
|
+
setBy?: string | undefined;
|
|
9855
|
+
reason?: string | undefined;
|
|
9856
|
+
} | undefined;
|
|
9370
9857
|
} | undefined;
|
|
9371
9858
|
}[];
|
|
9372
9859
|
cc: {
|
|
@@ -9439,6 +9926,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9439
9926
|
setBy?: string | undefined;
|
|
9440
9927
|
reason?: string | undefined;
|
|
9441
9928
|
} | undefined;
|
|
9929
|
+
neverSpam?: {
|
|
9930
|
+
value: boolean;
|
|
9931
|
+
setAt: number;
|
|
9932
|
+
expiresAt?: number | undefined;
|
|
9933
|
+
setBy?: string | undefined;
|
|
9934
|
+
reason?: string | undefined;
|
|
9935
|
+
} | undefined;
|
|
9442
9936
|
} | undefined;
|
|
9443
9937
|
}[];
|
|
9444
9938
|
bcc: {
|
|
@@ -9511,6 +10005,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9511
10005
|
setBy?: string | undefined;
|
|
9512
10006
|
reason?: string | undefined;
|
|
9513
10007
|
} | undefined;
|
|
10008
|
+
neverSpam?: {
|
|
10009
|
+
value: boolean;
|
|
10010
|
+
setAt: number;
|
|
10011
|
+
expiresAt?: number | undefined;
|
|
10012
|
+
setBy?: string | undefined;
|
|
10013
|
+
reason?: string | undefined;
|
|
10014
|
+
} | undefined;
|
|
9514
10015
|
} | undefined;
|
|
9515
10016
|
}[];
|
|
9516
10017
|
date: number;
|
|
@@ -9586,6 +10087,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9586
10087
|
setBy?: string | undefined;
|
|
9587
10088
|
reason?: string | undefined;
|
|
9588
10089
|
} | undefined;
|
|
10090
|
+
neverSpam?: {
|
|
10091
|
+
value: boolean;
|
|
10092
|
+
setAt: number;
|
|
10093
|
+
expiresAt?: number | undefined;
|
|
10094
|
+
setBy?: string | undefined;
|
|
10095
|
+
reason?: string | undefined;
|
|
10096
|
+
} | undefined;
|
|
9589
10097
|
} | undefined;
|
|
9590
10098
|
}[];
|
|
9591
10099
|
subject?: string | undefined;
|
|
@@ -9662,6 +10170,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9662
10170
|
setBy?: string | undefined;
|
|
9663
10171
|
reason?: string | undefined;
|
|
9664
10172
|
} | undefined;
|
|
10173
|
+
neverSpam?: {
|
|
10174
|
+
value: boolean;
|
|
10175
|
+
setAt: number;
|
|
10176
|
+
expiresAt?: number | undefined;
|
|
10177
|
+
setBy?: string | undefined;
|
|
10178
|
+
reason?: string | undefined;
|
|
10179
|
+
} | undefined;
|
|
9665
10180
|
} | undefined;
|
|
9666
10181
|
}[];
|
|
9667
10182
|
to: {
|
|
@@ -9734,6 +10249,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9734
10249
|
setBy?: string | undefined;
|
|
9735
10250
|
reason?: string | undefined;
|
|
9736
10251
|
} | undefined;
|
|
10252
|
+
neverSpam?: {
|
|
10253
|
+
value: boolean;
|
|
10254
|
+
setAt: number;
|
|
10255
|
+
expiresAt?: number | undefined;
|
|
10256
|
+
setBy?: string | undefined;
|
|
10257
|
+
reason?: string | undefined;
|
|
10258
|
+
} | undefined;
|
|
9737
10259
|
} | undefined;
|
|
9738
10260
|
}[];
|
|
9739
10261
|
cc: {
|
|
@@ -9806,6 +10328,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9806
10328
|
setBy?: string | undefined;
|
|
9807
10329
|
reason?: string | undefined;
|
|
9808
10330
|
} | undefined;
|
|
10331
|
+
neverSpam?: {
|
|
10332
|
+
value: boolean;
|
|
10333
|
+
setAt: number;
|
|
10334
|
+
expiresAt?: number | undefined;
|
|
10335
|
+
setBy?: string | undefined;
|
|
10336
|
+
reason?: string | undefined;
|
|
10337
|
+
} | undefined;
|
|
9809
10338
|
} | undefined;
|
|
9810
10339
|
}[];
|
|
9811
10340
|
bcc: {
|
|
@@ -9878,6 +10407,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9878
10407
|
setBy?: string | undefined;
|
|
9879
10408
|
reason?: string | undefined;
|
|
9880
10409
|
} | undefined;
|
|
10410
|
+
neverSpam?: {
|
|
10411
|
+
value: boolean;
|
|
10412
|
+
setAt: number;
|
|
10413
|
+
expiresAt?: number | undefined;
|
|
10414
|
+
setBy?: string | undefined;
|
|
10415
|
+
reason?: string | undefined;
|
|
10416
|
+
} | undefined;
|
|
9881
10417
|
} | undefined;
|
|
9882
10418
|
}[];
|
|
9883
10419
|
date: number;
|
|
@@ -9953,6 +10489,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9953
10489
|
setBy?: string | undefined;
|
|
9954
10490
|
reason?: string | undefined;
|
|
9955
10491
|
} | undefined;
|
|
10492
|
+
neverSpam?: {
|
|
10493
|
+
value: boolean;
|
|
10494
|
+
setAt: number;
|
|
10495
|
+
expiresAt?: number | undefined;
|
|
10496
|
+
setBy?: string | undefined;
|
|
10497
|
+
reason?: string | undefined;
|
|
10498
|
+
} | undefined;
|
|
9956
10499
|
} | undefined;
|
|
9957
10500
|
}[];
|
|
9958
10501
|
subject?: string | undefined;
|
|
@@ -10206,6 +10749,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10206
10749
|
setBy?: string | undefined;
|
|
10207
10750
|
reason?: string | undefined;
|
|
10208
10751
|
}>>;
|
|
10752
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
10753
|
+
setAt: z.ZodNumber;
|
|
10754
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
10755
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
10756
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
10757
|
+
value: z.ZodBoolean;
|
|
10758
|
+
}, "strip", z.ZodTypeAny, {
|
|
10759
|
+
value: boolean;
|
|
10760
|
+
setAt: number;
|
|
10761
|
+
expiresAt?: number | undefined;
|
|
10762
|
+
setBy?: string | undefined;
|
|
10763
|
+
reason?: string | undefined;
|
|
10764
|
+
}, {
|
|
10765
|
+
value: boolean;
|
|
10766
|
+
setAt: number;
|
|
10767
|
+
expiresAt?: number | undefined;
|
|
10768
|
+
setBy?: string | undefined;
|
|
10769
|
+
reason?: string | undefined;
|
|
10770
|
+
}>>;
|
|
10209
10771
|
muted: z.ZodOptional<z.ZodObject<{
|
|
10210
10772
|
setAt: z.ZodNumber;
|
|
10211
10773
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10403,6 +10965,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10403
10965
|
setBy?: string | undefined;
|
|
10404
10966
|
reason?: string | undefined;
|
|
10405
10967
|
} | undefined;
|
|
10968
|
+
neverSpam?: {
|
|
10969
|
+
value: boolean;
|
|
10970
|
+
setAt: number;
|
|
10971
|
+
expiresAt?: number | undefined;
|
|
10972
|
+
setBy?: string | undefined;
|
|
10973
|
+
reason?: string | undefined;
|
|
10974
|
+
} | undefined;
|
|
10406
10975
|
}, {
|
|
10407
10976
|
wellknown?: {
|
|
10408
10977
|
value: boolean;
|
|
@@ -10467,6 +11036,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10467
11036
|
setBy?: string | undefined;
|
|
10468
11037
|
reason?: string | undefined;
|
|
10469
11038
|
} | undefined;
|
|
11039
|
+
neverSpam?: {
|
|
11040
|
+
value: boolean;
|
|
11041
|
+
setAt: number;
|
|
11042
|
+
expiresAt?: number | undefined;
|
|
11043
|
+
setBy?: string | undefined;
|
|
11044
|
+
reason?: string | undefined;
|
|
11045
|
+
} | undefined;
|
|
10470
11046
|
}>>;
|
|
10471
11047
|
}, "strip", z.ZodTypeAny, {
|
|
10472
11048
|
addressId: string;
|
|
@@ -10538,6 +11114,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10538
11114
|
setBy?: string | undefined;
|
|
10539
11115
|
reason?: string | undefined;
|
|
10540
11116
|
} | undefined;
|
|
11117
|
+
neverSpam?: {
|
|
11118
|
+
value: boolean;
|
|
11119
|
+
setAt: number;
|
|
11120
|
+
expiresAt?: number | undefined;
|
|
11121
|
+
setBy?: string | undefined;
|
|
11122
|
+
reason?: string | undefined;
|
|
11123
|
+
} | undefined;
|
|
10541
11124
|
} | undefined;
|
|
10542
11125
|
}, {
|
|
10543
11126
|
addressId: string;
|
|
@@ -10609,6 +11192,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10609
11192
|
setBy?: string | undefined;
|
|
10610
11193
|
reason?: string | undefined;
|
|
10611
11194
|
} | undefined;
|
|
11195
|
+
neverSpam?: {
|
|
11196
|
+
value: boolean;
|
|
11197
|
+
setAt: number;
|
|
11198
|
+
expiresAt?: number | undefined;
|
|
11199
|
+
setBy?: string | undefined;
|
|
11200
|
+
reason?: string | undefined;
|
|
11201
|
+
} | undefined;
|
|
10612
11202
|
} | undefined;
|
|
10613
11203
|
}>, "many">;
|
|
10614
11204
|
to: z.ZodArray<z.ZodObject<{
|
|
@@ -10656,6 +11246,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10656
11246
|
setBy?: string | undefined;
|
|
10657
11247
|
reason?: string | undefined;
|
|
10658
11248
|
}>>;
|
|
11249
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
11250
|
+
setAt: z.ZodNumber;
|
|
11251
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
11252
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
11253
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
11254
|
+
value: z.ZodBoolean;
|
|
11255
|
+
}, "strip", z.ZodTypeAny, {
|
|
11256
|
+
value: boolean;
|
|
11257
|
+
setAt: number;
|
|
11258
|
+
expiresAt?: number | undefined;
|
|
11259
|
+
setBy?: string | undefined;
|
|
11260
|
+
reason?: string | undefined;
|
|
11261
|
+
}, {
|
|
11262
|
+
value: boolean;
|
|
11263
|
+
setAt: number;
|
|
11264
|
+
expiresAt?: number | undefined;
|
|
11265
|
+
setBy?: string | undefined;
|
|
11266
|
+
reason?: string | undefined;
|
|
11267
|
+
}>>;
|
|
10659
11268
|
muted: z.ZodOptional<z.ZodObject<{
|
|
10660
11269
|
setAt: z.ZodNumber;
|
|
10661
11270
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10853,6 +11462,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10853
11462
|
setBy?: string | undefined;
|
|
10854
11463
|
reason?: string | undefined;
|
|
10855
11464
|
} | undefined;
|
|
11465
|
+
neverSpam?: {
|
|
11466
|
+
value: boolean;
|
|
11467
|
+
setAt: number;
|
|
11468
|
+
expiresAt?: number | undefined;
|
|
11469
|
+
setBy?: string | undefined;
|
|
11470
|
+
reason?: string | undefined;
|
|
11471
|
+
} | undefined;
|
|
10856
11472
|
}, {
|
|
10857
11473
|
wellknown?: {
|
|
10858
11474
|
value: boolean;
|
|
@@ -10917,6 +11533,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10917
11533
|
setBy?: string | undefined;
|
|
10918
11534
|
reason?: string | undefined;
|
|
10919
11535
|
} | undefined;
|
|
11536
|
+
neverSpam?: {
|
|
11537
|
+
value: boolean;
|
|
11538
|
+
setAt: number;
|
|
11539
|
+
expiresAt?: number | undefined;
|
|
11540
|
+
setBy?: string | undefined;
|
|
11541
|
+
reason?: string | undefined;
|
|
11542
|
+
} | undefined;
|
|
10920
11543
|
}>>;
|
|
10921
11544
|
}, "strip", z.ZodTypeAny, {
|
|
10922
11545
|
addressId: string;
|
|
@@ -10974,14 +11597,21 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10974
11597
|
setBy?: string | undefined;
|
|
10975
11598
|
reason?: string | undefined;
|
|
10976
11599
|
} | undefined;
|
|
10977
|
-
autoArchive?: {
|
|
11600
|
+
autoArchive?: {
|
|
11601
|
+
value: boolean;
|
|
11602
|
+
setAt: number;
|
|
11603
|
+
expiresAt?: number | undefined;
|
|
11604
|
+
setBy?: string | undefined;
|
|
11605
|
+
reason?: string | undefined;
|
|
11606
|
+
} | undefined;
|
|
11607
|
+
unsubscribed?: {
|
|
10978
11608
|
value: boolean;
|
|
10979
11609
|
setAt: number;
|
|
10980
11610
|
expiresAt?: number | undefined;
|
|
10981
11611
|
setBy?: string | undefined;
|
|
10982
11612
|
reason?: string | undefined;
|
|
10983
11613
|
} | undefined;
|
|
10984
|
-
|
|
11614
|
+
neverSpam?: {
|
|
10985
11615
|
value: boolean;
|
|
10986
11616
|
setAt: number;
|
|
10987
11617
|
expiresAt?: number | undefined;
|
|
@@ -11059,6 +11689,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11059
11689
|
setBy?: string | undefined;
|
|
11060
11690
|
reason?: string | undefined;
|
|
11061
11691
|
} | undefined;
|
|
11692
|
+
neverSpam?: {
|
|
11693
|
+
value: boolean;
|
|
11694
|
+
setAt: number;
|
|
11695
|
+
expiresAt?: number | undefined;
|
|
11696
|
+
setBy?: string | undefined;
|
|
11697
|
+
reason?: string | undefined;
|
|
11698
|
+
} | undefined;
|
|
11062
11699
|
} | undefined;
|
|
11063
11700
|
}>, "many">;
|
|
11064
11701
|
cc: z.ZodArray<z.ZodObject<{
|
|
@@ -11106,6 +11743,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11106
11743
|
setBy?: string | undefined;
|
|
11107
11744
|
reason?: string | undefined;
|
|
11108
11745
|
}>>;
|
|
11746
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
11747
|
+
setAt: z.ZodNumber;
|
|
11748
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
11749
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
11750
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
11751
|
+
value: z.ZodBoolean;
|
|
11752
|
+
}, "strip", z.ZodTypeAny, {
|
|
11753
|
+
value: boolean;
|
|
11754
|
+
setAt: number;
|
|
11755
|
+
expiresAt?: number | undefined;
|
|
11756
|
+
setBy?: string | undefined;
|
|
11757
|
+
reason?: string | undefined;
|
|
11758
|
+
}, {
|
|
11759
|
+
value: boolean;
|
|
11760
|
+
setAt: number;
|
|
11761
|
+
expiresAt?: number | undefined;
|
|
11762
|
+
setBy?: string | undefined;
|
|
11763
|
+
reason?: string | undefined;
|
|
11764
|
+
}>>;
|
|
11109
11765
|
muted: z.ZodOptional<z.ZodObject<{
|
|
11110
11766
|
setAt: z.ZodNumber;
|
|
11111
11767
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -11303,6 +11959,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11303
11959
|
setBy?: string | undefined;
|
|
11304
11960
|
reason?: string | undefined;
|
|
11305
11961
|
} | undefined;
|
|
11962
|
+
neverSpam?: {
|
|
11963
|
+
value: boolean;
|
|
11964
|
+
setAt: number;
|
|
11965
|
+
expiresAt?: number | undefined;
|
|
11966
|
+
setBy?: string | undefined;
|
|
11967
|
+
reason?: string | undefined;
|
|
11968
|
+
} | undefined;
|
|
11306
11969
|
}, {
|
|
11307
11970
|
wellknown?: {
|
|
11308
11971
|
value: boolean;
|
|
@@ -11367,6 +12030,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11367
12030
|
setBy?: string | undefined;
|
|
11368
12031
|
reason?: string | undefined;
|
|
11369
12032
|
} | undefined;
|
|
12033
|
+
neverSpam?: {
|
|
12034
|
+
value: boolean;
|
|
12035
|
+
setAt: number;
|
|
12036
|
+
expiresAt?: number | undefined;
|
|
12037
|
+
setBy?: string | undefined;
|
|
12038
|
+
reason?: string | undefined;
|
|
12039
|
+
} | undefined;
|
|
11370
12040
|
}>>;
|
|
11371
12041
|
}, "strip", z.ZodTypeAny, {
|
|
11372
12042
|
addressId: string;
|
|
@@ -11438,6 +12108,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11438
12108
|
setBy?: string | undefined;
|
|
11439
12109
|
reason?: string | undefined;
|
|
11440
12110
|
} | undefined;
|
|
12111
|
+
neverSpam?: {
|
|
12112
|
+
value: boolean;
|
|
12113
|
+
setAt: number;
|
|
12114
|
+
expiresAt?: number | undefined;
|
|
12115
|
+
setBy?: string | undefined;
|
|
12116
|
+
reason?: string | undefined;
|
|
12117
|
+
} | undefined;
|
|
11441
12118
|
} | undefined;
|
|
11442
12119
|
}, {
|
|
11443
12120
|
addressId: string;
|
|
@@ -11509,6 +12186,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11509
12186
|
setBy?: string | undefined;
|
|
11510
12187
|
reason?: string | undefined;
|
|
11511
12188
|
} | undefined;
|
|
12189
|
+
neverSpam?: {
|
|
12190
|
+
value: boolean;
|
|
12191
|
+
setAt: number;
|
|
12192
|
+
expiresAt?: number | undefined;
|
|
12193
|
+
setBy?: string | undefined;
|
|
12194
|
+
reason?: string | undefined;
|
|
12195
|
+
} | undefined;
|
|
11512
12196
|
} | undefined;
|
|
11513
12197
|
}>, "many">;
|
|
11514
12198
|
bcc: z.ZodArray<z.ZodObject<{
|
|
@@ -11556,6 +12240,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11556
12240
|
setBy?: string | undefined;
|
|
11557
12241
|
reason?: string | undefined;
|
|
11558
12242
|
}>>;
|
|
12243
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
12244
|
+
setAt: z.ZodNumber;
|
|
12245
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
12246
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
12247
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
12248
|
+
value: z.ZodBoolean;
|
|
12249
|
+
}, "strip", z.ZodTypeAny, {
|
|
12250
|
+
value: boolean;
|
|
12251
|
+
setAt: number;
|
|
12252
|
+
expiresAt?: number | undefined;
|
|
12253
|
+
setBy?: string | undefined;
|
|
12254
|
+
reason?: string | undefined;
|
|
12255
|
+
}, {
|
|
12256
|
+
value: boolean;
|
|
12257
|
+
setAt: number;
|
|
12258
|
+
expiresAt?: number | undefined;
|
|
12259
|
+
setBy?: string | undefined;
|
|
12260
|
+
reason?: string | undefined;
|
|
12261
|
+
}>>;
|
|
11559
12262
|
muted: z.ZodOptional<z.ZodObject<{
|
|
11560
12263
|
setAt: z.ZodNumber;
|
|
11561
12264
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -11753,6 +12456,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11753
12456
|
setBy?: string | undefined;
|
|
11754
12457
|
reason?: string | undefined;
|
|
11755
12458
|
} | undefined;
|
|
12459
|
+
neverSpam?: {
|
|
12460
|
+
value: boolean;
|
|
12461
|
+
setAt: number;
|
|
12462
|
+
expiresAt?: number | undefined;
|
|
12463
|
+
setBy?: string | undefined;
|
|
12464
|
+
reason?: string | undefined;
|
|
12465
|
+
} | undefined;
|
|
11756
12466
|
}, {
|
|
11757
12467
|
wellknown?: {
|
|
11758
12468
|
value: boolean;
|
|
@@ -11817,6 +12527,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11817
12527
|
setBy?: string | undefined;
|
|
11818
12528
|
reason?: string | undefined;
|
|
11819
12529
|
} | undefined;
|
|
12530
|
+
neverSpam?: {
|
|
12531
|
+
value: boolean;
|
|
12532
|
+
setAt: number;
|
|
12533
|
+
expiresAt?: number | undefined;
|
|
12534
|
+
setBy?: string | undefined;
|
|
12535
|
+
reason?: string | undefined;
|
|
12536
|
+
} | undefined;
|
|
11820
12537
|
}>>;
|
|
11821
12538
|
}, "strip", z.ZodTypeAny, {
|
|
11822
12539
|
addressId: string;
|
|
@@ -11888,6 +12605,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11888
12605
|
setBy?: string | undefined;
|
|
11889
12606
|
reason?: string | undefined;
|
|
11890
12607
|
} | undefined;
|
|
12608
|
+
neverSpam?: {
|
|
12609
|
+
value: boolean;
|
|
12610
|
+
setAt: number;
|
|
12611
|
+
expiresAt?: number | undefined;
|
|
12612
|
+
setBy?: string | undefined;
|
|
12613
|
+
reason?: string | undefined;
|
|
12614
|
+
} | undefined;
|
|
11891
12615
|
} | undefined;
|
|
11892
12616
|
}, {
|
|
11893
12617
|
addressId: string;
|
|
@@ -11959,6 +12683,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11959
12683
|
setBy?: string | undefined;
|
|
11960
12684
|
reason?: string | undefined;
|
|
11961
12685
|
} | undefined;
|
|
12686
|
+
neverSpam?: {
|
|
12687
|
+
value: boolean;
|
|
12688
|
+
setAt: number;
|
|
12689
|
+
expiresAt?: number | undefined;
|
|
12690
|
+
setBy?: string | undefined;
|
|
12691
|
+
reason?: string | undefined;
|
|
12692
|
+
} | undefined;
|
|
11962
12693
|
} | undefined;
|
|
11963
12694
|
}>, "many">;
|
|
11964
12695
|
replyTo: z.ZodArray<z.ZodObject<{
|
|
@@ -12006,6 +12737,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12006
12737
|
setBy?: string | undefined;
|
|
12007
12738
|
reason?: string | undefined;
|
|
12008
12739
|
}>>;
|
|
12740
|
+
neverSpam: z.ZodOptional<z.ZodObject<{
|
|
12741
|
+
setAt: z.ZodNumber;
|
|
12742
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
12743
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
12744
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
12745
|
+
value: z.ZodBoolean;
|
|
12746
|
+
}, "strip", z.ZodTypeAny, {
|
|
12747
|
+
value: boolean;
|
|
12748
|
+
setAt: number;
|
|
12749
|
+
expiresAt?: number | undefined;
|
|
12750
|
+
setBy?: string | undefined;
|
|
12751
|
+
reason?: string | undefined;
|
|
12752
|
+
}, {
|
|
12753
|
+
value: boolean;
|
|
12754
|
+
setAt: number;
|
|
12755
|
+
expiresAt?: number | undefined;
|
|
12756
|
+
setBy?: string | undefined;
|
|
12757
|
+
reason?: string | undefined;
|
|
12758
|
+
}>>;
|
|
12009
12759
|
muted: z.ZodOptional<z.ZodObject<{
|
|
12010
12760
|
setAt: z.ZodNumber;
|
|
12011
12761
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -12203,6 +12953,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12203
12953
|
setBy?: string | undefined;
|
|
12204
12954
|
reason?: string | undefined;
|
|
12205
12955
|
} | undefined;
|
|
12956
|
+
neverSpam?: {
|
|
12957
|
+
value: boolean;
|
|
12958
|
+
setAt: number;
|
|
12959
|
+
expiresAt?: number | undefined;
|
|
12960
|
+
setBy?: string | undefined;
|
|
12961
|
+
reason?: string | undefined;
|
|
12962
|
+
} | undefined;
|
|
12206
12963
|
}, {
|
|
12207
12964
|
wellknown?: {
|
|
12208
12965
|
value: boolean;
|
|
@@ -12267,6 +13024,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12267
13024
|
setBy?: string | undefined;
|
|
12268
13025
|
reason?: string | undefined;
|
|
12269
13026
|
} | undefined;
|
|
13027
|
+
neverSpam?: {
|
|
13028
|
+
value: boolean;
|
|
13029
|
+
setAt: number;
|
|
13030
|
+
expiresAt?: number | undefined;
|
|
13031
|
+
setBy?: string | undefined;
|
|
13032
|
+
reason?: string | undefined;
|
|
13033
|
+
} | undefined;
|
|
12270
13034
|
}>>;
|
|
12271
13035
|
}, "strip", z.ZodTypeAny, {
|
|
12272
13036
|
addressId: string;
|
|
@@ -12338,6 +13102,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12338
13102
|
setBy?: string | undefined;
|
|
12339
13103
|
reason?: string | undefined;
|
|
12340
13104
|
} | undefined;
|
|
13105
|
+
neverSpam?: {
|
|
13106
|
+
value: boolean;
|
|
13107
|
+
setAt: number;
|
|
13108
|
+
expiresAt?: number | undefined;
|
|
13109
|
+
setBy?: string | undefined;
|
|
13110
|
+
reason?: string | undefined;
|
|
13111
|
+
} | undefined;
|
|
12341
13112
|
} | undefined;
|
|
12342
13113
|
}, {
|
|
12343
13114
|
addressId: string;
|
|
@@ -12409,6 +13180,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12409
13180
|
setBy?: string | undefined;
|
|
12410
13181
|
reason?: string | undefined;
|
|
12411
13182
|
} | undefined;
|
|
13183
|
+
neverSpam?: {
|
|
13184
|
+
value: boolean;
|
|
13185
|
+
setAt: number;
|
|
13186
|
+
expiresAt?: number | undefined;
|
|
13187
|
+
setBy?: string | undefined;
|
|
13188
|
+
reason?: string | undefined;
|
|
13189
|
+
} | undefined;
|
|
12412
13190
|
} | undefined;
|
|
12413
13191
|
}>, "many">;
|
|
12414
13192
|
category: z.ZodEnum<["uncategorized", "personal", "newsletter", "marketing", "automated", "transactional", "social"]>;
|
|
@@ -12485,6 +13263,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12485
13263
|
setBy?: string | undefined;
|
|
12486
13264
|
reason?: string | undefined;
|
|
12487
13265
|
} | undefined;
|
|
13266
|
+
neverSpam?: {
|
|
13267
|
+
value: boolean;
|
|
13268
|
+
setAt: number;
|
|
13269
|
+
expiresAt?: number | undefined;
|
|
13270
|
+
setBy?: string | undefined;
|
|
13271
|
+
reason?: string | undefined;
|
|
13272
|
+
} | undefined;
|
|
12488
13273
|
} | undefined;
|
|
12489
13274
|
}[];
|
|
12490
13275
|
to: {
|
|
@@ -12557,6 +13342,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12557
13342
|
setBy?: string | undefined;
|
|
12558
13343
|
reason?: string | undefined;
|
|
12559
13344
|
} | undefined;
|
|
13345
|
+
neverSpam?: {
|
|
13346
|
+
value: boolean;
|
|
13347
|
+
setAt: number;
|
|
13348
|
+
expiresAt?: number | undefined;
|
|
13349
|
+
setBy?: string | undefined;
|
|
13350
|
+
reason?: string | undefined;
|
|
13351
|
+
} | undefined;
|
|
12560
13352
|
} | undefined;
|
|
12561
13353
|
}[];
|
|
12562
13354
|
cc: {
|
|
@@ -12629,6 +13421,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12629
13421
|
setBy?: string | undefined;
|
|
12630
13422
|
reason?: string | undefined;
|
|
12631
13423
|
} | undefined;
|
|
13424
|
+
neverSpam?: {
|
|
13425
|
+
value: boolean;
|
|
13426
|
+
setAt: number;
|
|
13427
|
+
expiresAt?: number | undefined;
|
|
13428
|
+
setBy?: string | undefined;
|
|
13429
|
+
reason?: string | undefined;
|
|
13430
|
+
} | undefined;
|
|
12632
13431
|
} | undefined;
|
|
12633
13432
|
}[];
|
|
12634
13433
|
bcc: {
|
|
@@ -12701,6 +13500,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12701
13500
|
setBy?: string | undefined;
|
|
12702
13501
|
reason?: string | undefined;
|
|
12703
13502
|
} | undefined;
|
|
13503
|
+
neverSpam?: {
|
|
13504
|
+
value: boolean;
|
|
13505
|
+
setAt: number;
|
|
13506
|
+
expiresAt?: number | undefined;
|
|
13507
|
+
setBy?: string | undefined;
|
|
13508
|
+
reason?: string | undefined;
|
|
13509
|
+
} | undefined;
|
|
12704
13510
|
} | undefined;
|
|
12705
13511
|
}[];
|
|
12706
13512
|
date: number;
|
|
@@ -12776,6 +13582,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12776
13582
|
setBy?: string | undefined;
|
|
12777
13583
|
reason?: string | undefined;
|
|
12778
13584
|
} | undefined;
|
|
13585
|
+
neverSpam?: {
|
|
13586
|
+
value: boolean;
|
|
13587
|
+
setAt: number;
|
|
13588
|
+
expiresAt?: number | undefined;
|
|
13589
|
+
setBy?: string | undefined;
|
|
13590
|
+
reason?: string | undefined;
|
|
13591
|
+
} | undefined;
|
|
12779
13592
|
} | undefined;
|
|
12780
13593
|
}[];
|
|
12781
13594
|
subject?: string | undefined;
|
|
@@ -12852,6 +13665,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12852
13665
|
setBy?: string | undefined;
|
|
12853
13666
|
reason?: string | undefined;
|
|
12854
13667
|
} | undefined;
|
|
13668
|
+
neverSpam?: {
|
|
13669
|
+
value: boolean;
|
|
13670
|
+
setAt: number;
|
|
13671
|
+
expiresAt?: number | undefined;
|
|
13672
|
+
setBy?: string | undefined;
|
|
13673
|
+
reason?: string | undefined;
|
|
13674
|
+
} | undefined;
|
|
12855
13675
|
} | undefined;
|
|
12856
13676
|
}[];
|
|
12857
13677
|
to: {
|
|
@@ -12924,6 +13744,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12924
13744
|
setBy?: string | undefined;
|
|
12925
13745
|
reason?: string | undefined;
|
|
12926
13746
|
} | undefined;
|
|
13747
|
+
neverSpam?: {
|
|
13748
|
+
value: boolean;
|
|
13749
|
+
setAt: number;
|
|
13750
|
+
expiresAt?: number | undefined;
|
|
13751
|
+
setBy?: string | undefined;
|
|
13752
|
+
reason?: string | undefined;
|
|
13753
|
+
} | undefined;
|
|
12927
13754
|
} | undefined;
|
|
12928
13755
|
}[];
|
|
12929
13756
|
cc: {
|
|
@@ -12996,6 +13823,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12996
13823
|
setBy?: string | undefined;
|
|
12997
13824
|
reason?: string | undefined;
|
|
12998
13825
|
} | undefined;
|
|
13826
|
+
neverSpam?: {
|
|
13827
|
+
value: boolean;
|
|
13828
|
+
setAt: number;
|
|
13829
|
+
expiresAt?: number | undefined;
|
|
13830
|
+
setBy?: string | undefined;
|
|
13831
|
+
reason?: string | undefined;
|
|
13832
|
+
} | undefined;
|
|
12999
13833
|
} | undefined;
|
|
13000
13834
|
}[];
|
|
13001
13835
|
bcc: {
|
|
@@ -13068,6 +13902,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13068
13902
|
setBy?: string | undefined;
|
|
13069
13903
|
reason?: string | undefined;
|
|
13070
13904
|
} | undefined;
|
|
13905
|
+
neverSpam?: {
|
|
13906
|
+
value: boolean;
|
|
13907
|
+
setAt: number;
|
|
13908
|
+
expiresAt?: number | undefined;
|
|
13909
|
+
setBy?: string | undefined;
|
|
13910
|
+
reason?: string | undefined;
|
|
13911
|
+
} | undefined;
|
|
13071
13912
|
} | undefined;
|
|
13072
13913
|
}[];
|
|
13073
13914
|
date: number;
|
|
@@ -13143,6 +13984,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13143
13984
|
setBy?: string | undefined;
|
|
13144
13985
|
reason?: string | undefined;
|
|
13145
13986
|
} | undefined;
|
|
13987
|
+
neverSpam?: {
|
|
13988
|
+
value: boolean;
|
|
13989
|
+
setAt: number;
|
|
13990
|
+
expiresAt?: number | undefined;
|
|
13991
|
+
setBy?: string | undefined;
|
|
13992
|
+
reason?: string | undefined;
|
|
13993
|
+
} | undefined;
|
|
13146
13994
|
} | undefined;
|
|
13147
13995
|
}[];
|
|
13148
13996
|
subject?: string | undefined;
|
|
@@ -13309,6 +14157,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13309
14157
|
setBy?: string | undefined;
|
|
13310
14158
|
reason?: string | undefined;
|
|
13311
14159
|
} | undefined;
|
|
14160
|
+
neverSpam?: {
|
|
14161
|
+
value: boolean;
|
|
14162
|
+
setAt: number;
|
|
14163
|
+
expiresAt?: number | undefined;
|
|
14164
|
+
setBy?: string | undefined;
|
|
14165
|
+
reason?: string | undefined;
|
|
14166
|
+
} | undefined;
|
|
13312
14167
|
} | undefined;
|
|
13313
14168
|
}[];
|
|
13314
14169
|
to: {
|
|
@@ -13381,6 +14236,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13381
14236
|
setBy?: string | undefined;
|
|
13382
14237
|
reason?: string | undefined;
|
|
13383
14238
|
} | undefined;
|
|
14239
|
+
neverSpam?: {
|
|
14240
|
+
value: boolean;
|
|
14241
|
+
setAt: number;
|
|
14242
|
+
expiresAt?: number | undefined;
|
|
14243
|
+
setBy?: string | undefined;
|
|
14244
|
+
reason?: string | undefined;
|
|
14245
|
+
} | undefined;
|
|
13384
14246
|
} | undefined;
|
|
13385
14247
|
}[];
|
|
13386
14248
|
cc: {
|
|
@@ -13453,6 +14315,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13453
14315
|
setBy?: string | undefined;
|
|
13454
14316
|
reason?: string | undefined;
|
|
13455
14317
|
} | undefined;
|
|
14318
|
+
neverSpam?: {
|
|
14319
|
+
value: boolean;
|
|
14320
|
+
setAt: number;
|
|
14321
|
+
expiresAt?: number | undefined;
|
|
14322
|
+
setBy?: string | undefined;
|
|
14323
|
+
reason?: string | undefined;
|
|
14324
|
+
} | undefined;
|
|
13456
14325
|
} | undefined;
|
|
13457
14326
|
}[];
|
|
13458
14327
|
bcc: {
|
|
@@ -13525,6 +14394,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13525
14394
|
setBy?: string | undefined;
|
|
13526
14395
|
reason?: string | undefined;
|
|
13527
14396
|
} | undefined;
|
|
14397
|
+
neverSpam?: {
|
|
14398
|
+
value: boolean;
|
|
14399
|
+
setAt: number;
|
|
14400
|
+
expiresAt?: number | undefined;
|
|
14401
|
+
setBy?: string | undefined;
|
|
14402
|
+
reason?: string | undefined;
|
|
14403
|
+
} | undefined;
|
|
13528
14404
|
} | undefined;
|
|
13529
14405
|
}[];
|
|
13530
14406
|
date: number;
|
|
@@ -13600,6 +14476,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13600
14476
|
setBy?: string | undefined;
|
|
13601
14477
|
reason?: string | undefined;
|
|
13602
14478
|
} | undefined;
|
|
14479
|
+
neverSpam?: {
|
|
14480
|
+
value: boolean;
|
|
14481
|
+
setAt: number;
|
|
14482
|
+
expiresAt?: number | undefined;
|
|
14483
|
+
setBy?: string | undefined;
|
|
14484
|
+
reason?: string | undefined;
|
|
14485
|
+
} | undefined;
|
|
13603
14486
|
} | undefined;
|
|
13604
14487
|
}[];
|
|
13605
14488
|
subject?: string | undefined;
|
|
@@ -13732,6 +14615,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13732
14615
|
setBy?: string | undefined;
|
|
13733
14616
|
reason?: string | undefined;
|
|
13734
14617
|
} | undefined;
|
|
14618
|
+
neverSpam?: {
|
|
14619
|
+
value: boolean;
|
|
14620
|
+
setAt: number;
|
|
14621
|
+
expiresAt?: number | undefined;
|
|
14622
|
+
setBy?: string | undefined;
|
|
14623
|
+
reason?: string | undefined;
|
|
14624
|
+
} | undefined;
|
|
13735
14625
|
} | undefined;
|
|
13736
14626
|
}[];
|
|
13737
14627
|
to: {
|
|
@@ -13804,6 +14694,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13804
14694
|
setBy?: string | undefined;
|
|
13805
14695
|
reason?: string | undefined;
|
|
13806
14696
|
} | undefined;
|
|
14697
|
+
neverSpam?: {
|
|
14698
|
+
value: boolean;
|
|
14699
|
+
setAt: number;
|
|
14700
|
+
expiresAt?: number | undefined;
|
|
14701
|
+
setBy?: string | undefined;
|
|
14702
|
+
reason?: string | undefined;
|
|
14703
|
+
} | undefined;
|
|
13807
14704
|
} | undefined;
|
|
13808
14705
|
}[];
|
|
13809
14706
|
cc: {
|
|
@@ -13876,6 +14773,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13876
14773
|
setBy?: string | undefined;
|
|
13877
14774
|
reason?: string | undefined;
|
|
13878
14775
|
} | undefined;
|
|
14776
|
+
neverSpam?: {
|
|
14777
|
+
value: boolean;
|
|
14778
|
+
setAt: number;
|
|
14779
|
+
expiresAt?: number | undefined;
|
|
14780
|
+
setBy?: string | undefined;
|
|
14781
|
+
reason?: string | undefined;
|
|
14782
|
+
} | undefined;
|
|
13879
14783
|
} | undefined;
|
|
13880
14784
|
}[];
|
|
13881
14785
|
bcc: {
|
|
@@ -13948,6 +14852,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13948
14852
|
setBy?: string | undefined;
|
|
13949
14853
|
reason?: string | undefined;
|
|
13950
14854
|
} | undefined;
|
|
14855
|
+
neverSpam?: {
|
|
14856
|
+
value: boolean;
|
|
14857
|
+
setAt: number;
|
|
14858
|
+
expiresAt?: number | undefined;
|
|
14859
|
+
setBy?: string | undefined;
|
|
14860
|
+
reason?: string | undefined;
|
|
14861
|
+
} | undefined;
|
|
13951
14862
|
} | undefined;
|
|
13952
14863
|
}[];
|
|
13953
14864
|
date: number;
|
|
@@ -14023,6 +14934,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
14023
14934
|
setBy?: string | undefined;
|
|
14024
14935
|
reason?: string | undefined;
|
|
14025
14936
|
} | undefined;
|
|
14937
|
+
neverSpam?: {
|
|
14938
|
+
value: boolean;
|
|
14939
|
+
setAt: number;
|
|
14940
|
+
expiresAt?: number | undefined;
|
|
14941
|
+
setBy?: string | undefined;
|
|
14942
|
+
reason?: string | undefined;
|
|
14943
|
+
} | undefined;
|
|
14026
14944
|
} | undefined;
|
|
14027
14945
|
}[];
|
|
14028
14946
|
subject?: string | undefined;
|