@remit/api-zod-schemas 0.0.44 → 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 +928 -7
- package/schemas.d.ts.map +1 -1
- package/schemas.js +13 -2
- package/schemas.js.map +1 -1
- package/schemas.ts +15 -2
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"]>;
|
|
@@ -2436,14 +2437,17 @@ export declare const OrganizePreviewResponseSchema: z.ZodObject<{
|
|
|
2436
2437
|
matchedCount: z.ZodNumber;
|
|
2437
2438
|
messageIds: z.ZodArray<z.ZodString, "many">;
|
|
2438
2439
|
semanticUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
2440
|
+
semanticIndexEmpty: z.ZodOptional<z.ZodBoolean>;
|
|
2439
2441
|
}, "strip", z.ZodTypeAny, {
|
|
2440
2442
|
matchedCount: number;
|
|
2441
2443
|
messageIds: string[];
|
|
2442
2444
|
semanticUnavailable?: boolean | undefined;
|
|
2445
|
+
semanticIndexEmpty?: boolean | undefined;
|
|
2443
2446
|
}, {
|
|
2444
2447
|
matchedCount: number;
|
|
2445
2448
|
messageIds: string[];
|
|
2446
2449
|
semanticUnavailable?: boolean | undefined;
|
|
2450
|
+
semanticIndexEmpty?: boolean | undefined;
|
|
2447
2451
|
}>;
|
|
2448
2452
|
export declare const OrganizeJobRequestSchema: z.ZodObject<{
|
|
2449
2453
|
organizeJobId: z.ZodString;
|
|
@@ -4576,6 +4580,25 @@ export declare const BlockedFlagSchema: z.ZodObject<{
|
|
|
4576
4580
|
setBy?: string | undefined;
|
|
4577
4581
|
reason?: string | undefined;
|
|
4578
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
|
+
}>;
|
|
4579
4602
|
export declare const VipFlagSchema: z.ZodObject<{
|
|
4580
4603
|
setAt: z.ZodNumber;
|
|
4581
4604
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4729,6 +4752,25 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4729
4752
|
setBy?: string | undefined;
|
|
4730
4753
|
reason?: string | undefined;
|
|
4731
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
|
+
}>>;
|
|
4732
4774
|
muted: z.ZodOptional<z.ZodObject<{
|
|
4733
4775
|
setAt: z.ZodNumber;
|
|
4734
4776
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4926,6 +4968,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4926
4968
|
setBy?: string | undefined;
|
|
4927
4969
|
reason?: string | undefined;
|
|
4928
4970
|
} | undefined;
|
|
4971
|
+
neverSpam?: {
|
|
4972
|
+
value: boolean;
|
|
4973
|
+
setAt: number;
|
|
4974
|
+
expiresAt?: number | undefined;
|
|
4975
|
+
setBy?: string | undefined;
|
|
4976
|
+
reason?: string | undefined;
|
|
4977
|
+
} | undefined;
|
|
4929
4978
|
}, {
|
|
4930
4979
|
wellknown?: {
|
|
4931
4980
|
value: boolean;
|
|
@@ -4990,6 +5039,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
4990
5039
|
setBy?: string | undefined;
|
|
4991
5040
|
reason?: string | undefined;
|
|
4992
5041
|
} | undefined;
|
|
5042
|
+
neverSpam?: {
|
|
5043
|
+
value: boolean;
|
|
5044
|
+
setAt: number;
|
|
5045
|
+
expiresAt?: number | undefined;
|
|
5046
|
+
setBy?: string | undefined;
|
|
5047
|
+
reason?: string | undefined;
|
|
5048
|
+
} | undefined;
|
|
4993
5049
|
}>;
|
|
4994
5050
|
export declare const AddressSchema: z.ZodObject<{
|
|
4995
5051
|
addressId: z.ZodString;
|
|
@@ -5038,6 +5094,25 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5038
5094
|
setBy?: string | undefined;
|
|
5039
5095
|
reason?: string | undefined;
|
|
5040
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
|
+
}>>;
|
|
5041
5116
|
muted: z.ZodOptional<z.ZodObject<{
|
|
5042
5117
|
setAt: z.ZodNumber;
|
|
5043
5118
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5235,6 +5310,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5235
5310
|
setBy?: string | undefined;
|
|
5236
5311
|
reason?: string | undefined;
|
|
5237
5312
|
} | undefined;
|
|
5313
|
+
neverSpam?: {
|
|
5314
|
+
value: boolean;
|
|
5315
|
+
setAt: number;
|
|
5316
|
+
expiresAt?: number | undefined;
|
|
5317
|
+
setBy?: string | undefined;
|
|
5318
|
+
reason?: string | undefined;
|
|
5319
|
+
} | undefined;
|
|
5238
5320
|
}, {
|
|
5239
5321
|
wellknown?: {
|
|
5240
5322
|
value: boolean;
|
|
@@ -5299,6 +5381,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5299
5381
|
setBy?: string | undefined;
|
|
5300
5382
|
reason?: string | undefined;
|
|
5301
5383
|
} | undefined;
|
|
5384
|
+
neverSpam?: {
|
|
5385
|
+
value: boolean;
|
|
5386
|
+
setAt: number;
|
|
5387
|
+
expiresAt?: number | undefined;
|
|
5388
|
+
setBy?: string | undefined;
|
|
5389
|
+
reason?: string | undefined;
|
|
5390
|
+
} | undefined;
|
|
5302
5391
|
}>;
|
|
5303
5392
|
inboundCount: z.ZodNumber;
|
|
5304
5393
|
outboundCount: z.ZodNumber;
|
|
@@ -5386,6 +5475,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5386
5475
|
setBy?: string | undefined;
|
|
5387
5476
|
reason?: string | undefined;
|
|
5388
5477
|
} | undefined;
|
|
5478
|
+
neverSpam?: {
|
|
5479
|
+
value: boolean;
|
|
5480
|
+
setAt: number;
|
|
5481
|
+
expiresAt?: number | undefined;
|
|
5482
|
+
setBy?: string | undefined;
|
|
5483
|
+
reason?: string | undefined;
|
|
5484
|
+
} | undefined;
|
|
5389
5485
|
};
|
|
5390
5486
|
displayName?: string | undefined;
|
|
5391
5487
|
lastOutboundAt?: number | undefined;
|
|
@@ -5467,6 +5563,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
5467
5563
|
setBy?: string | undefined;
|
|
5468
5564
|
reason?: string | undefined;
|
|
5469
5565
|
} | undefined;
|
|
5566
|
+
neverSpam?: {
|
|
5567
|
+
value: boolean;
|
|
5568
|
+
setAt: number;
|
|
5569
|
+
expiresAt?: number | undefined;
|
|
5570
|
+
setBy?: string | undefined;
|
|
5571
|
+
reason?: string | undefined;
|
|
5572
|
+
} | undefined;
|
|
5470
5573
|
};
|
|
5471
5574
|
displayName?: string | undefined;
|
|
5472
5575
|
lastOutboundAt?: number | undefined;
|
|
@@ -5517,6 +5620,25 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5517
5620
|
setBy?: string | undefined;
|
|
5518
5621
|
reason?: string | undefined;
|
|
5519
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
|
+
}>>;
|
|
5520
5642
|
muted: z.ZodOptional<z.ZodObject<{
|
|
5521
5643
|
setAt: z.ZodNumber;
|
|
5522
5644
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5714,6 +5836,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5714
5836
|
setBy?: string | undefined;
|
|
5715
5837
|
reason?: string | undefined;
|
|
5716
5838
|
} | undefined;
|
|
5839
|
+
neverSpam?: {
|
|
5840
|
+
value: boolean;
|
|
5841
|
+
setAt: number;
|
|
5842
|
+
expiresAt?: number | undefined;
|
|
5843
|
+
setBy?: string | undefined;
|
|
5844
|
+
reason?: string | undefined;
|
|
5845
|
+
} | undefined;
|
|
5717
5846
|
}, {
|
|
5718
5847
|
wellknown?: {
|
|
5719
5848
|
value: boolean;
|
|
@@ -5778,6 +5907,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5778
5907
|
setBy?: string | undefined;
|
|
5779
5908
|
reason?: string | undefined;
|
|
5780
5909
|
} | undefined;
|
|
5910
|
+
neverSpam?: {
|
|
5911
|
+
value: boolean;
|
|
5912
|
+
setAt: number;
|
|
5913
|
+
expiresAt?: number | undefined;
|
|
5914
|
+
setBy?: string | undefined;
|
|
5915
|
+
reason?: string | undefined;
|
|
5916
|
+
} | undefined;
|
|
5781
5917
|
}>;
|
|
5782
5918
|
inboundCount: z.ZodNumber;
|
|
5783
5919
|
outboundCount: z.ZodNumber;
|
|
@@ -5863,6 +5999,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5863
5999
|
setBy?: string | undefined;
|
|
5864
6000
|
reason?: string | undefined;
|
|
5865
6001
|
} | undefined;
|
|
6002
|
+
neverSpam?: {
|
|
6003
|
+
value: boolean;
|
|
6004
|
+
setAt: number;
|
|
6005
|
+
expiresAt?: number | undefined;
|
|
6006
|
+
setBy?: string | undefined;
|
|
6007
|
+
reason?: string | undefined;
|
|
6008
|
+
} | undefined;
|
|
5866
6009
|
};
|
|
5867
6010
|
displayName?: string | undefined;
|
|
5868
6011
|
}, {
|
|
@@ -5942,6 +6085,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
5942
6085
|
setBy?: string | undefined;
|
|
5943
6086
|
reason?: string | undefined;
|
|
5944
6087
|
} | undefined;
|
|
6088
|
+
neverSpam?: {
|
|
6089
|
+
value: boolean;
|
|
6090
|
+
setAt: number;
|
|
6091
|
+
expiresAt?: number | undefined;
|
|
6092
|
+
setBy?: string | undefined;
|
|
6093
|
+
reason?: string | undefined;
|
|
6094
|
+
} | undefined;
|
|
5945
6095
|
};
|
|
5946
6096
|
displayName?: string | undefined;
|
|
5947
6097
|
}>;
|
|
@@ -5984,6 +6134,25 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
5984
6134
|
setBy?: string | undefined;
|
|
5985
6135
|
reason?: string | undefined;
|
|
5986
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]>>;
|
|
5987
6156
|
muted: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5988
6157
|
setAt: z.ZodNumber;
|
|
5989
6158
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6127,6 +6296,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
6127
6296
|
category?: unknown;
|
|
6128
6297
|
autoArchive?: unknown;
|
|
6129
6298
|
unsubscribed?: unknown;
|
|
6299
|
+
neverSpam?: unknown;
|
|
6130
6300
|
}, {
|
|
6131
6301
|
wellknown?: unknown;
|
|
6132
6302
|
vip?: unknown;
|
|
@@ -6137,6 +6307,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
6137
6307
|
category?: unknown;
|
|
6138
6308
|
autoArchive?: unknown;
|
|
6139
6309
|
unsubscribed?: unknown;
|
|
6310
|
+
neverSpam?: unknown;
|
|
6140
6311
|
}>;
|
|
6141
6312
|
export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
6142
6313
|
flags: z.ZodOptional<z.ZodObject<{
|
|
@@ -6178,6 +6349,25 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6178
6349
|
setBy?: string | undefined;
|
|
6179
6350
|
reason?: string | undefined;
|
|
6180
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]>>;
|
|
6181
6371
|
muted: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6182
6372
|
setAt: z.ZodNumber;
|
|
6183
6373
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6321,6 +6511,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6321
6511
|
category?: unknown;
|
|
6322
6512
|
autoArchive?: unknown;
|
|
6323
6513
|
unsubscribed?: unknown;
|
|
6514
|
+
neverSpam?: unknown;
|
|
6324
6515
|
}, {
|
|
6325
6516
|
wellknown?: unknown;
|
|
6326
6517
|
vip?: unknown;
|
|
@@ -6331,8 +6522,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6331
6522
|
category?: unknown;
|
|
6332
6523
|
autoArchive?: unknown;
|
|
6333
6524
|
unsubscribed?: unknown;
|
|
6525
|
+
neverSpam?: unknown;
|
|
6334
6526
|
}>>;
|
|
6335
|
-
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">>;
|
|
6336
6528
|
}, "strip", z.ZodTypeAny, {
|
|
6337
6529
|
flags?: {
|
|
6338
6530
|
wellknown?: unknown;
|
|
@@ -6344,8 +6536,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6344
6536
|
category?: unknown;
|
|
6345
6537
|
autoArchive?: unknown;
|
|
6346
6538
|
unsubscribed?: unknown;
|
|
6539
|
+
neverSpam?: unknown;
|
|
6347
6540
|
} | undefined;
|
|
6348
|
-
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed")[] | undefined;
|
|
6541
|
+
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed" | "neverSpam")[] | undefined;
|
|
6349
6542
|
}, {
|
|
6350
6543
|
flags?: {
|
|
6351
6544
|
wellknown?: unknown;
|
|
@@ -6357,8 +6550,9 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
6357
6550
|
category?: unknown;
|
|
6358
6551
|
autoArchive?: unknown;
|
|
6359
6552
|
unsubscribed?: unknown;
|
|
6553
|
+
neverSpam?: unknown;
|
|
6360
6554
|
} | undefined;
|
|
6361
|
-
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed")[] | undefined;
|
|
6555
|
+
clearFlags?: ("vip" | "blocked" | "trusted" | "muted" | "junkOnly" | "category" | "autoArchive" | "unsubscribed" | "neverSpam")[] | undefined;
|
|
6362
6556
|
}>;
|
|
6363
6557
|
export declare const MessageSummaryResponseSchema: z.ZodObject<{
|
|
6364
6558
|
messageId: z.ZodString;
|
|
@@ -6558,6 +6752,25 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6558
6752
|
setBy?: string | undefined;
|
|
6559
6753
|
reason?: string | undefined;
|
|
6560
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
|
+
}>>;
|
|
6561
6774
|
muted: z.ZodOptional<z.ZodObject<{
|
|
6562
6775
|
setAt: z.ZodNumber;
|
|
6563
6776
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6755,6 +6968,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6755
6968
|
setBy?: string | undefined;
|
|
6756
6969
|
reason?: string | undefined;
|
|
6757
6970
|
} | undefined;
|
|
6971
|
+
neverSpam?: {
|
|
6972
|
+
value: boolean;
|
|
6973
|
+
setAt: number;
|
|
6974
|
+
expiresAt?: number | undefined;
|
|
6975
|
+
setBy?: string | undefined;
|
|
6976
|
+
reason?: string | undefined;
|
|
6977
|
+
} | undefined;
|
|
6758
6978
|
}, {
|
|
6759
6979
|
wellknown?: {
|
|
6760
6980
|
value: boolean;
|
|
@@ -6819,6 +7039,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6819
7039
|
setBy?: string | undefined;
|
|
6820
7040
|
reason?: string | undefined;
|
|
6821
7041
|
} | undefined;
|
|
7042
|
+
neverSpam?: {
|
|
7043
|
+
value: boolean;
|
|
7044
|
+
setAt: number;
|
|
7045
|
+
expiresAt?: number | undefined;
|
|
7046
|
+
setBy?: string | undefined;
|
|
7047
|
+
reason?: string | undefined;
|
|
7048
|
+
} | undefined;
|
|
6822
7049
|
}>>;
|
|
6823
7050
|
}, "strip", z.ZodTypeAny, {
|
|
6824
7051
|
addressId: string;
|
|
@@ -6890,6 +7117,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6890
7117
|
setBy?: string | undefined;
|
|
6891
7118
|
reason?: string | undefined;
|
|
6892
7119
|
} | undefined;
|
|
7120
|
+
neverSpam?: {
|
|
7121
|
+
value: boolean;
|
|
7122
|
+
setAt: number;
|
|
7123
|
+
expiresAt?: number | undefined;
|
|
7124
|
+
setBy?: string | undefined;
|
|
7125
|
+
reason?: string | undefined;
|
|
7126
|
+
} | undefined;
|
|
6893
7127
|
} | undefined;
|
|
6894
7128
|
}, {
|
|
6895
7129
|
addressId: string;
|
|
@@ -6961,6 +7195,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
6961
7195
|
setBy?: string | undefined;
|
|
6962
7196
|
reason?: string | undefined;
|
|
6963
7197
|
} | undefined;
|
|
7198
|
+
neverSpam?: {
|
|
7199
|
+
value: boolean;
|
|
7200
|
+
setAt: number;
|
|
7201
|
+
expiresAt?: number | undefined;
|
|
7202
|
+
setBy?: string | undefined;
|
|
7203
|
+
reason?: string | undefined;
|
|
7204
|
+
} | undefined;
|
|
6964
7205
|
} | undefined;
|
|
6965
7206
|
}>;
|
|
6966
7207
|
export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
@@ -7013,6 +7254,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7013
7254
|
setBy?: string | undefined;
|
|
7014
7255
|
reason?: string | undefined;
|
|
7015
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
|
+
}>>;
|
|
7016
7276
|
muted: z.ZodOptional<z.ZodObject<{
|
|
7017
7277
|
setAt: z.ZodNumber;
|
|
7018
7278
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7210,6 +7470,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7210
7470
|
setBy?: string | undefined;
|
|
7211
7471
|
reason?: string | undefined;
|
|
7212
7472
|
} | undefined;
|
|
7473
|
+
neverSpam?: {
|
|
7474
|
+
value: boolean;
|
|
7475
|
+
setAt: number;
|
|
7476
|
+
expiresAt?: number | undefined;
|
|
7477
|
+
setBy?: string | undefined;
|
|
7478
|
+
reason?: string | undefined;
|
|
7479
|
+
} | undefined;
|
|
7213
7480
|
}, {
|
|
7214
7481
|
wellknown?: {
|
|
7215
7482
|
value: boolean;
|
|
@@ -7274,6 +7541,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7274
7541
|
setBy?: string | undefined;
|
|
7275
7542
|
reason?: string | undefined;
|
|
7276
7543
|
} | undefined;
|
|
7544
|
+
neverSpam?: {
|
|
7545
|
+
value: boolean;
|
|
7546
|
+
setAt: number;
|
|
7547
|
+
expiresAt?: number | undefined;
|
|
7548
|
+
setBy?: string | undefined;
|
|
7549
|
+
reason?: string | undefined;
|
|
7550
|
+
} | undefined;
|
|
7277
7551
|
}>>;
|
|
7278
7552
|
}, "strip", z.ZodTypeAny, {
|
|
7279
7553
|
addressId: string;
|
|
@@ -7345,6 +7619,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7345
7619
|
setBy?: string | undefined;
|
|
7346
7620
|
reason?: string | undefined;
|
|
7347
7621
|
} | undefined;
|
|
7622
|
+
neverSpam?: {
|
|
7623
|
+
value: boolean;
|
|
7624
|
+
setAt: number;
|
|
7625
|
+
expiresAt?: number | undefined;
|
|
7626
|
+
setBy?: string | undefined;
|
|
7627
|
+
reason?: string | undefined;
|
|
7628
|
+
} | undefined;
|
|
7348
7629
|
} | undefined;
|
|
7349
7630
|
}, {
|
|
7350
7631
|
addressId: string;
|
|
@@ -7416,6 +7697,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7416
7697
|
setBy?: string | undefined;
|
|
7417
7698
|
reason?: string | undefined;
|
|
7418
7699
|
} | undefined;
|
|
7700
|
+
neverSpam?: {
|
|
7701
|
+
value: boolean;
|
|
7702
|
+
setAt: number;
|
|
7703
|
+
expiresAt?: number | undefined;
|
|
7704
|
+
setBy?: string | undefined;
|
|
7705
|
+
reason?: string | undefined;
|
|
7706
|
+
} | undefined;
|
|
7419
7707
|
} | undefined;
|
|
7420
7708
|
}>, "many">;
|
|
7421
7709
|
to: z.ZodArray<z.ZodObject<{
|
|
@@ -7463,6 +7751,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7463
7751
|
setBy?: string | undefined;
|
|
7464
7752
|
reason?: string | undefined;
|
|
7465
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
|
+
}>>;
|
|
7466
7773
|
muted: z.ZodOptional<z.ZodObject<{
|
|
7467
7774
|
setAt: z.ZodNumber;
|
|
7468
7775
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7660,6 +7967,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7660
7967
|
setBy?: string | undefined;
|
|
7661
7968
|
reason?: string | undefined;
|
|
7662
7969
|
} | undefined;
|
|
7970
|
+
neverSpam?: {
|
|
7971
|
+
value: boolean;
|
|
7972
|
+
setAt: number;
|
|
7973
|
+
expiresAt?: number | undefined;
|
|
7974
|
+
setBy?: string | undefined;
|
|
7975
|
+
reason?: string | undefined;
|
|
7976
|
+
} | undefined;
|
|
7663
7977
|
}, {
|
|
7664
7978
|
wellknown?: {
|
|
7665
7979
|
value: boolean;
|
|
@@ -7724,6 +8038,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7724
8038
|
setBy?: string | undefined;
|
|
7725
8039
|
reason?: string | undefined;
|
|
7726
8040
|
} | undefined;
|
|
8041
|
+
neverSpam?: {
|
|
8042
|
+
value: boolean;
|
|
8043
|
+
setAt: number;
|
|
8044
|
+
expiresAt?: number | undefined;
|
|
8045
|
+
setBy?: string | undefined;
|
|
8046
|
+
reason?: string | undefined;
|
|
8047
|
+
} | undefined;
|
|
7727
8048
|
}>>;
|
|
7728
8049
|
}, "strip", z.ZodTypeAny, {
|
|
7729
8050
|
addressId: string;
|
|
@@ -7795,6 +8116,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7795
8116
|
setBy?: string | undefined;
|
|
7796
8117
|
reason?: string | undefined;
|
|
7797
8118
|
} | undefined;
|
|
8119
|
+
neverSpam?: {
|
|
8120
|
+
value: boolean;
|
|
8121
|
+
setAt: number;
|
|
8122
|
+
expiresAt?: number | undefined;
|
|
8123
|
+
setBy?: string | undefined;
|
|
8124
|
+
reason?: string | undefined;
|
|
8125
|
+
} | undefined;
|
|
7798
8126
|
} | undefined;
|
|
7799
8127
|
}, {
|
|
7800
8128
|
addressId: string;
|
|
@@ -7866,6 +8194,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7866
8194
|
setBy?: string | undefined;
|
|
7867
8195
|
reason?: string | undefined;
|
|
7868
8196
|
} | undefined;
|
|
8197
|
+
neverSpam?: {
|
|
8198
|
+
value: boolean;
|
|
8199
|
+
setAt: number;
|
|
8200
|
+
expiresAt?: number | undefined;
|
|
8201
|
+
setBy?: string | undefined;
|
|
8202
|
+
reason?: string | undefined;
|
|
8203
|
+
} | undefined;
|
|
7869
8204
|
} | undefined;
|
|
7870
8205
|
}>, "many">;
|
|
7871
8206
|
cc: z.ZodArray<z.ZodObject<{
|
|
@@ -7894,7 +8229,26 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7894
8229
|
setBy?: string | undefined;
|
|
7895
8230
|
reason?: string | undefined;
|
|
7896
8231
|
}>>;
|
|
7897
|
-
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<{
|
|
7898
8252
|
setAt: z.ZodNumber;
|
|
7899
8253
|
setBy: z.ZodOptional<z.ZodString>;
|
|
7900
8254
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8110,6 +8464,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8110
8464
|
setBy?: string | undefined;
|
|
8111
8465
|
reason?: string | undefined;
|
|
8112
8466
|
} | undefined;
|
|
8467
|
+
neverSpam?: {
|
|
8468
|
+
value: boolean;
|
|
8469
|
+
setAt: number;
|
|
8470
|
+
expiresAt?: number | undefined;
|
|
8471
|
+
setBy?: string | undefined;
|
|
8472
|
+
reason?: string | undefined;
|
|
8473
|
+
} | undefined;
|
|
8113
8474
|
}, {
|
|
8114
8475
|
wellknown?: {
|
|
8115
8476
|
value: boolean;
|
|
@@ -8174,6 +8535,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8174
8535
|
setBy?: string | undefined;
|
|
8175
8536
|
reason?: string | undefined;
|
|
8176
8537
|
} | undefined;
|
|
8538
|
+
neverSpam?: {
|
|
8539
|
+
value: boolean;
|
|
8540
|
+
setAt: number;
|
|
8541
|
+
expiresAt?: number | undefined;
|
|
8542
|
+
setBy?: string | undefined;
|
|
8543
|
+
reason?: string | undefined;
|
|
8544
|
+
} | undefined;
|
|
8177
8545
|
}>>;
|
|
8178
8546
|
}, "strip", z.ZodTypeAny, {
|
|
8179
8547
|
addressId: string;
|
|
@@ -8245,6 +8613,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8245
8613
|
setBy?: string | undefined;
|
|
8246
8614
|
reason?: string | undefined;
|
|
8247
8615
|
} | undefined;
|
|
8616
|
+
neverSpam?: {
|
|
8617
|
+
value: boolean;
|
|
8618
|
+
setAt: number;
|
|
8619
|
+
expiresAt?: number | undefined;
|
|
8620
|
+
setBy?: string | undefined;
|
|
8621
|
+
reason?: string | undefined;
|
|
8622
|
+
} | undefined;
|
|
8248
8623
|
} | undefined;
|
|
8249
8624
|
}, {
|
|
8250
8625
|
addressId: string;
|
|
@@ -8316,6 +8691,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8316
8691
|
setBy?: string | undefined;
|
|
8317
8692
|
reason?: string | undefined;
|
|
8318
8693
|
} | undefined;
|
|
8694
|
+
neverSpam?: {
|
|
8695
|
+
value: boolean;
|
|
8696
|
+
setAt: number;
|
|
8697
|
+
expiresAt?: number | undefined;
|
|
8698
|
+
setBy?: string | undefined;
|
|
8699
|
+
reason?: string | undefined;
|
|
8700
|
+
} | undefined;
|
|
8319
8701
|
} | undefined;
|
|
8320
8702
|
}>, "many">;
|
|
8321
8703
|
bcc: z.ZodArray<z.ZodObject<{
|
|
@@ -8363,6 +8745,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8363
8745
|
setBy?: string | undefined;
|
|
8364
8746
|
reason?: string | undefined;
|
|
8365
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
|
+
}>>;
|
|
8366
8767
|
muted: z.ZodOptional<z.ZodObject<{
|
|
8367
8768
|
setAt: z.ZodNumber;
|
|
8368
8769
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -8560,6 +8961,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8560
8961
|
setBy?: string | undefined;
|
|
8561
8962
|
reason?: string | undefined;
|
|
8562
8963
|
} | undefined;
|
|
8964
|
+
neverSpam?: {
|
|
8965
|
+
value: boolean;
|
|
8966
|
+
setAt: number;
|
|
8967
|
+
expiresAt?: number | undefined;
|
|
8968
|
+
setBy?: string | undefined;
|
|
8969
|
+
reason?: string | undefined;
|
|
8970
|
+
} | undefined;
|
|
8563
8971
|
}, {
|
|
8564
8972
|
wellknown?: {
|
|
8565
8973
|
value: boolean;
|
|
@@ -8624,6 +9032,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8624
9032
|
setBy?: string | undefined;
|
|
8625
9033
|
reason?: string | undefined;
|
|
8626
9034
|
} | undefined;
|
|
9035
|
+
neverSpam?: {
|
|
9036
|
+
value: boolean;
|
|
9037
|
+
setAt: number;
|
|
9038
|
+
expiresAt?: number | undefined;
|
|
9039
|
+
setBy?: string | undefined;
|
|
9040
|
+
reason?: string | undefined;
|
|
9041
|
+
} | undefined;
|
|
8627
9042
|
}>>;
|
|
8628
9043
|
}, "strip", z.ZodTypeAny, {
|
|
8629
9044
|
addressId: string;
|
|
@@ -8695,6 +9110,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8695
9110
|
setBy?: string | undefined;
|
|
8696
9111
|
reason?: string | undefined;
|
|
8697
9112
|
} | undefined;
|
|
9113
|
+
neverSpam?: {
|
|
9114
|
+
value: boolean;
|
|
9115
|
+
setAt: number;
|
|
9116
|
+
expiresAt?: number | undefined;
|
|
9117
|
+
setBy?: string | undefined;
|
|
9118
|
+
reason?: string | undefined;
|
|
9119
|
+
} | undefined;
|
|
8698
9120
|
} | undefined;
|
|
8699
9121
|
}, {
|
|
8700
9122
|
addressId: string;
|
|
@@ -8766,6 +9188,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8766
9188
|
setBy?: string | undefined;
|
|
8767
9189
|
reason?: string | undefined;
|
|
8768
9190
|
} | undefined;
|
|
9191
|
+
neverSpam?: {
|
|
9192
|
+
value: boolean;
|
|
9193
|
+
setAt: number;
|
|
9194
|
+
expiresAt?: number | undefined;
|
|
9195
|
+
setBy?: string | undefined;
|
|
9196
|
+
reason?: string | undefined;
|
|
9197
|
+
} | undefined;
|
|
8769
9198
|
} | undefined;
|
|
8770
9199
|
}>, "many">;
|
|
8771
9200
|
replyTo: z.ZodArray<z.ZodObject<{
|
|
@@ -8813,6 +9242,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8813
9242
|
setBy?: string | undefined;
|
|
8814
9243
|
reason?: string | undefined;
|
|
8815
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
|
+
}>>;
|
|
8816
9264
|
muted: z.ZodOptional<z.ZodObject<{
|
|
8817
9265
|
setAt: z.ZodNumber;
|
|
8818
9266
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -9010,6 +9458,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9010
9458
|
setBy?: string | undefined;
|
|
9011
9459
|
reason?: string | undefined;
|
|
9012
9460
|
} | undefined;
|
|
9461
|
+
neverSpam?: {
|
|
9462
|
+
value: boolean;
|
|
9463
|
+
setAt: number;
|
|
9464
|
+
expiresAt?: number | undefined;
|
|
9465
|
+
setBy?: string | undefined;
|
|
9466
|
+
reason?: string | undefined;
|
|
9467
|
+
} | undefined;
|
|
9013
9468
|
}, {
|
|
9014
9469
|
wellknown?: {
|
|
9015
9470
|
value: boolean;
|
|
@@ -9074,6 +9529,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9074
9529
|
setBy?: string | undefined;
|
|
9075
9530
|
reason?: string | undefined;
|
|
9076
9531
|
} | undefined;
|
|
9532
|
+
neverSpam?: {
|
|
9533
|
+
value: boolean;
|
|
9534
|
+
setAt: number;
|
|
9535
|
+
expiresAt?: number | undefined;
|
|
9536
|
+
setBy?: string | undefined;
|
|
9537
|
+
reason?: string | undefined;
|
|
9538
|
+
} | undefined;
|
|
9077
9539
|
}>>;
|
|
9078
9540
|
}, "strip", z.ZodTypeAny, {
|
|
9079
9541
|
addressId: string;
|
|
@@ -9145,6 +9607,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9145
9607
|
setBy?: string | undefined;
|
|
9146
9608
|
reason?: string | undefined;
|
|
9147
9609
|
} | undefined;
|
|
9610
|
+
neverSpam?: {
|
|
9611
|
+
value: boolean;
|
|
9612
|
+
setAt: number;
|
|
9613
|
+
expiresAt?: number | undefined;
|
|
9614
|
+
setBy?: string | undefined;
|
|
9615
|
+
reason?: string | undefined;
|
|
9616
|
+
} | undefined;
|
|
9148
9617
|
} | undefined;
|
|
9149
9618
|
}, {
|
|
9150
9619
|
addressId: string;
|
|
@@ -9216,6 +9685,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9216
9685
|
setBy?: string | undefined;
|
|
9217
9686
|
reason?: string | undefined;
|
|
9218
9687
|
} | undefined;
|
|
9688
|
+
neverSpam?: {
|
|
9689
|
+
value: boolean;
|
|
9690
|
+
setAt: number;
|
|
9691
|
+
expiresAt?: number | undefined;
|
|
9692
|
+
setBy?: string | undefined;
|
|
9693
|
+
reason?: string | undefined;
|
|
9694
|
+
} | undefined;
|
|
9219
9695
|
} | undefined;
|
|
9220
9696
|
}>, "many">;
|
|
9221
9697
|
category: z.ZodEnum<["uncategorized", "personal", "newsletter", "marketing", "automated", "transactional", "social"]>;
|
|
@@ -9292,6 +9768,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9292
9768
|
setBy?: string | undefined;
|
|
9293
9769
|
reason?: string | undefined;
|
|
9294
9770
|
} | undefined;
|
|
9771
|
+
neverSpam?: {
|
|
9772
|
+
value: boolean;
|
|
9773
|
+
setAt: number;
|
|
9774
|
+
expiresAt?: number | undefined;
|
|
9775
|
+
setBy?: string | undefined;
|
|
9776
|
+
reason?: string | undefined;
|
|
9777
|
+
} | undefined;
|
|
9295
9778
|
} | undefined;
|
|
9296
9779
|
}[];
|
|
9297
9780
|
to: {
|
|
@@ -9364,6 +9847,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9364
9847
|
setBy?: string | undefined;
|
|
9365
9848
|
reason?: string | undefined;
|
|
9366
9849
|
} | undefined;
|
|
9850
|
+
neverSpam?: {
|
|
9851
|
+
value: boolean;
|
|
9852
|
+
setAt: number;
|
|
9853
|
+
expiresAt?: number | undefined;
|
|
9854
|
+
setBy?: string | undefined;
|
|
9855
|
+
reason?: string | undefined;
|
|
9856
|
+
} | undefined;
|
|
9367
9857
|
} | undefined;
|
|
9368
9858
|
}[];
|
|
9369
9859
|
cc: {
|
|
@@ -9436,6 +9926,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9436
9926
|
setBy?: string | undefined;
|
|
9437
9927
|
reason?: string | undefined;
|
|
9438
9928
|
} | undefined;
|
|
9929
|
+
neverSpam?: {
|
|
9930
|
+
value: boolean;
|
|
9931
|
+
setAt: number;
|
|
9932
|
+
expiresAt?: number | undefined;
|
|
9933
|
+
setBy?: string | undefined;
|
|
9934
|
+
reason?: string | undefined;
|
|
9935
|
+
} | undefined;
|
|
9439
9936
|
} | undefined;
|
|
9440
9937
|
}[];
|
|
9441
9938
|
bcc: {
|
|
@@ -9508,6 +10005,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9508
10005
|
setBy?: string | undefined;
|
|
9509
10006
|
reason?: string | undefined;
|
|
9510
10007
|
} | undefined;
|
|
10008
|
+
neverSpam?: {
|
|
10009
|
+
value: boolean;
|
|
10010
|
+
setAt: number;
|
|
10011
|
+
expiresAt?: number | undefined;
|
|
10012
|
+
setBy?: string | undefined;
|
|
10013
|
+
reason?: string | undefined;
|
|
10014
|
+
} | undefined;
|
|
9511
10015
|
} | undefined;
|
|
9512
10016
|
}[];
|
|
9513
10017
|
date: number;
|
|
@@ -9583,6 +10087,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9583
10087
|
setBy?: string | undefined;
|
|
9584
10088
|
reason?: string | undefined;
|
|
9585
10089
|
} | undefined;
|
|
10090
|
+
neverSpam?: {
|
|
10091
|
+
value: boolean;
|
|
10092
|
+
setAt: number;
|
|
10093
|
+
expiresAt?: number | undefined;
|
|
10094
|
+
setBy?: string | undefined;
|
|
10095
|
+
reason?: string | undefined;
|
|
10096
|
+
} | undefined;
|
|
9586
10097
|
} | undefined;
|
|
9587
10098
|
}[];
|
|
9588
10099
|
subject?: string | undefined;
|
|
@@ -9659,6 +10170,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9659
10170
|
setBy?: string | undefined;
|
|
9660
10171
|
reason?: string | undefined;
|
|
9661
10172
|
} | undefined;
|
|
10173
|
+
neverSpam?: {
|
|
10174
|
+
value: boolean;
|
|
10175
|
+
setAt: number;
|
|
10176
|
+
expiresAt?: number | undefined;
|
|
10177
|
+
setBy?: string | undefined;
|
|
10178
|
+
reason?: string | undefined;
|
|
10179
|
+
} | undefined;
|
|
9662
10180
|
} | undefined;
|
|
9663
10181
|
}[];
|
|
9664
10182
|
to: {
|
|
@@ -9731,6 +10249,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9731
10249
|
setBy?: string | undefined;
|
|
9732
10250
|
reason?: string | undefined;
|
|
9733
10251
|
} | undefined;
|
|
10252
|
+
neverSpam?: {
|
|
10253
|
+
value: boolean;
|
|
10254
|
+
setAt: number;
|
|
10255
|
+
expiresAt?: number | undefined;
|
|
10256
|
+
setBy?: string | undefined;
|
|
10257
|
+
reason?: string | undefined;
|
|
10258
|
+
} | undefined;
|
|
9734
10259
|
} | undefined;
|
|
9735
10260
|
}[];
|
|
9736
10261
|
cc: {
|
|
@@ -9803,6 +10328,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9803
10328
|
setBy?: string | undefined;
|
|
9804
10329
|
reason?: string | undefined;
|
|
9805
10330
|
} | undefined;
|
|
10331
|
+
neverSpam?: {
|
|
10332
|
+
value: boolean;
|
|
10333
|
+
setAt: number;
|
|
10334
|
+
expiresAt?: number | undefined;
|
|
10335
|
+
setBy?: string | undefined;
|
|
10336
|
+
reason?: string | undefined;
|
|
10337
|
+
} | undefined;
|
|
9806
10338
|
} | undefined;
|
|
9807
10339
|
}[];
|
|
9808
10340
|
bcc: {
|
|
@@ -9875,6 +10407,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9875
10407
|
setBy?: string | undefined;
|
|
9876
10408
|
reason?: string | undefined;
|
|
9877
10409
|
} | undefined;
|
|
10410
|
+
neverSpam?: {
|
|
10411
|
+
value: boolean;
|
|
10412
|
+
setAt: number;
|
|
10413
|
+
expiresAt?: number | undefined;
|
|
10414
|
+
setBy?: string | undefined;
|
|
10415
|
+
reason?: string | undefined;
|
|
10416
|
+
} | undefined;
|
|
9878
10417
|
} | undefined;
|
|
9879
10418
|
}[];
|
|
9880
10419
|
date: number;
|
|
@@ -9950,6 +10489,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
9950
10489
|
setBy?: string | undefined;
|
|
9951
10490
|
reason?: string | undefined;
|
|
9952
10491
|
} | undefined;
|
|
10492
|
+
neverSpam?: {
|
|
10493
|
+
value: boolean;
|
|
10494
|
+
setAt: number;
|
|
10495
|
+
expiresAt?: number | undefined;
|
|
10496
|
+
setBy?: string | undefined;
|
|
10497
|
+
reason?: string | undefined;
|
|
10498
|
+
} | undefined;
|
|
9953
10499
|
} | undefined;
|
|
9954
10500
|
}[];
|
|
9955
10501
|
subject?: string | undefined;
|
|
@@ -10203,6 +10749,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10203
10749
|
setBy?: string | undefined;
|
|
10204
10750
|
reason?: string | undefined;
|
|
10205
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
|
+
}>>;
|
|
10206
10771
|
muted: z.ZodOptional<z.ZodObject<{
|
|
10207
10772
|
setAt: z.ZodNumber;
|
|
10208
10773
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10400,6 +10965,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10400
10965
|
setBy?: string | undefined;
|
|
10401
10966
|
reason?: string | undefined;
|
|
10402
10967
|
} | undefined;
|
|
10968
|
+
neverSpam?: {
|
|
10969
|
+
value: boolean;
|
|
10970
|
+
setAt: number;
|
|
10971
|
+
expiresAt?: number | undefined;
|
|
10972
|
+
setBy?: string | undefined;
|
|
10973
|
+
reason?: string | undefined;
|
|
10974
|
+
} | undefined;
|
|
10403
10975
|
}, {
|
|
10404
10976
|
wellknown?: {
|
|
10405
10977
|
value: boolean;
|
|
@@ -10464,6 +11036,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10464
11036
|
setBy?: string | undefined;
|
|
10465
11037
|
reason?: string | undefined;
|
|
10466
11038
|
} | undefined;
|
|
11039
|
+
neverSpam?: {
|
|
11040
|
+
value: boolean;
|
|
11041
|
+
setAt: number;
|
|
11042
|
+
expiresAt?: number | undefined;
|
|
11043
|
+
setBy?: string | undefined;
|
|
11044
|
+
reason?: string | undefined;
|
|
11045
|
+
} | undefined;
|
|
10467
11046
|
}>>;
|
|
10468
11047
|
}, "strip", z.ZodTypeAny, {
|
|
10469
11048
|
addressId: string;
|
|
@@ -10535,6 +11114,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10535
11114
|
setBy?: string | undefined;
|
|
10536
11115
|
reason?: string | undefined;
|
|
10537
11116
|
} | undefined;
|
|
11117
|
+
neverSpam?: {
|
|
11118
|
+
value: boolean;
|
|
11119
|
+
setAt: number;
|
|
11120
|
+
expiresAt?: number | undefined;
|
|
11121
|
+
setBy?: string | undefined;
|
|
11122
|
+
reason?: string | undefined;
|
|
11123
|
+
} | undefined;
|
|
10538
11124
|
} | undefined;
|
|
10539
11125
|
}, {
|
|
10540
11126
|
addressId: string;
|
|
@@ -10606,6 +11192,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10606
11192
|
setBy?: string | undefined;
|
|
10607
11193
|
reason?: string | undefined;
|
|
10608
11194
|
} | undefined;
|
|
11195
|
+
neverSpam?: {
|
|
11196
|
+
value: boolean;
|
|
11197
|
+
setAt: number;
|
|
11198
|
+
expiresAt?: number | undefined;
|
|
11199
|
+
setBy?: string | undefined;
|
|
11200
|
+
reason?: string | undefined;
|
|
11201
|
+
} | undefined;
|
|
10609
11202
|
} | undefined;
|
|
10610
11203
|
}>, "many">;
|
|
10611
11204
|
to: z.ZodArray<z.ZodObject<{
|
|
@@ -10653,6 +11246,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10653
11246
|
setBy?: string | undefined;
|
|
10654
11247
|
reason?: string | undefined;
|
|
10655
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
|
+
}>>;
|
|
10656
11268
|
muted: z.ZodOptional<z.ZodObject<{
|
|
10657
11269
|
setAt: z.ZodNumber;
|
|
10658
11270
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10850,6 +11462,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10850
11462
|
setBy?: string | undefined;
|
|
10851
11463
|
reason?: string | undefined;
|
|
10852
11464
|
} | undefined;
|
|
11465
|
+
neverSpam?: {
|
|
11466
|
+
value: boolean;
|
|
11467
|
+
setAt: number;
|
|
11468
|
+
expiresAt?: number | undefined;
|
|
11469
|
+
setBy?: string | undefined;
|
|
11470
|
+
reason?: string | undefined;
|
|
11471
|
+
} | undefined;
|
|
10853
11472
|
}, {
|
|
10854
11473
|
wellknown?: {
|
|
10855
11474
|
value: boolean;
|
|
@@ -10914,6 +11533,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10914
11533
|
setBy?: string | undefined;
|
|
10915
11534
|
reason?: string | undefined;
|
|
10916
11535
|
} | undefined;
|
|
11536
|
+
neverSpam?: {
|
|
11537
|
+
value: boolean;
|
|
11538
|
+
setAt: number;
|
|
11539
|
+
expiresAt?: number | undefined;
|
|
11540
|
+
setBy?: string | undefined;
|
|
11541
|
+
reason?: string | undefined;
|
|
11542
|
+
} | undefined;
|
|
10917
11543
|
}>>;
|
|
10918
11544
|
}, "strip", z.ZodTypeAny, {
|
|
10919
11545
|
addressId: string;
|
|
@@ -10971,14 +11597,21 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10971
11597
|
setBy?: string | undefined;
|
|
10972
11598
|
reason?: string | undefined;
|
|
10973
11599
|
} | undefined;
|
|
10974
|
-
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?: {
|
|
10975
11608
|
value: boolean;
|
|
10976
11609
|
setAt: number;
|
|
10977
11610
|
expiresAt?: number | undefined;
|
|
10978
11611
|
setBy?: string | undefined;
|
|
10979
11612
|
reason?: string | undefined;
|
|
10980
11613
|
} | undefined;
|
|
10981
|
-
|
|
11614
|
+
neverSpam?: {
|
|
10982
11615
|
value: boolean;
|
|
10983
11616
|
setAt: number;
|
|
10984
11617
|
expiresAt?: number | undefined;
|
|
@@ -11056,6 +11689,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11056
11689
|
setBy?: string | undefined;
|
|
11057
11690
|
reason?: string | undefined;
|
|
11058
11691
|
} | undefined;
|
|
11692
|
+
neverSpam?: {
|
|
11693
|
+
value: boolean;
|
|
11694
|
+
setAt: number;
|
|
11695
|
+
expiresAt?: number | undefined;
|
|
11696
|
+
setBy?: string | undefined;
|
|
11697
|
+
reason?: string | undefined;
|
|
11698
|
+
} | undefined;
|
|
11059
11699
|
} | undefined;
|
|
11060
11700
|
}>, "many">;
|
|
11061
11701
|
cc: z.ZodArray<z.ZodObject<{
|
|
@@ -11103,6 +11743,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11103
11743
|
setBy?: string | undefined;
|
|
11104
11744
|
reason?: string | undefined;
|
|
11105
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
|
+
}>>;
|
|
11106
11765
|
muted: z.ZodOptional<z.ZodObject<{
|
|
11107
11766
|
setAt: z.ZodNumber;
|
|
11108
11767
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -11300,6 +11959,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11300
11959
|
setBy?: string | undefined;
|
|
11301
11960
|
reason?: string | undefined;
|
|
11302
11961
|
} | undefined;
|
|
11962
|
+
neverSpam?: {
|
|
11963
|
+
value: boolean;
|
|
11964
|
+
setAt: number;
|
|
11965
|
+
expiresAt?: number | undefined;
|
|
11966
|
+
setBy?: string | undefined;
|
|
11967
|
+
reason?: string | undefined;
|
|
11968
|
+
} | undefined;
|
|
11303
11969
|
}, {
|
|
11304
11970
|
wellknown?: {
|
|
11305
11971
|
value: boolean;
|
|
@@ -11364,6 +12030,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11364
12030
|
setBy?: string | undefined;
|
|
11365
12031
|
reason?: string | undefined;
|
|
11366
12032
|
} | undefined;
|
|
12033
|
+
neverSpam?: {
|
|
12034
|
+
value: boolean;
|
|
12035
|
+
setAt: number;
|
|
12036
|
+
expiresAt?: number | undefined;
|
|
12037
|
+
setBy?: string | undefined;
|
|
12038
|
+
reason?: string | undefined;
|
|
12039
|
+
} | undefined;
|
|
11367
12040
|
}>>;
|
|
11368
12041
|
}, "strip", z.ZodTypeAny, {
|
|
11369
12042
|
addressId: string;
|
|
@@ -11435,6 +12108,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11435
12108
|
setBy?: string | undefined;
|
|
11436
12109
|
reason?: string | undefined;
|
|
11437
12110
|
} | undefined;
|
|
12111
|
+
neverSpam?: {
|
|
12112
|
+
value: boolean;
|
|
12113
|
+
setAt: number;
|
|
12114
|
+
expiresAt?: number | undefined;
|
|
12115
|
+
setBy?: string | undefined;
|
|
12116
|
+
reason?: string | undefined;
|
|
12117
|
+
} | undefined;
|
|
11438
12118
|
} | undefined;
|
|
11439
12119
|
}, {
|
|
11440
12120
|
addressId: string;
|
|
@@ -11506,6 +12186,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11506
12186
|
setBy?: string | undefined;
|
|
11507
12187
|
reason?: string | undefined;
|
|
11508
12188
|
} | undefined;
|
|
12189
|
+
neverSpam?: {
|
|
12190
|
+
value: boolean;
|
|
12191
|
+
setAt: number;
|
|
12192
|
+
expiresAt?: number | undefined;
|
|
12193
|
+
setBy?: string | undefined;
|
|
12194
|
+
reason?: string | undefined;
|
|
12195
|
+
} | undefined;
|
|
11509
12196
|
} | undefined;
|
|
11510
12197
|
}>, "many">;
|
|
11511
12198
|
bcc: z.ZodArray<z.ZodObject<{
|
|
@@ -11553,6 +12240,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11553
12240
|
setBy?: string | undefined;
|
|
11554
12241
|
reason?: string | undefined;
|
|
11555
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
|
+
}>>;
|
|
11556
12262
|
muted: z.ZodOptional<z.ZodObject<{
|
|
11557
12263
|
setAt: z.ZodNumber;
|
|
11558
12264
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -11750,6 +12456,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11750
12456
|
setBy?: string | undefined;
|
|
11751
12457
|
reason?: string | undefined;
|
|
11752
12458
|
} | undefined;
|
|
12459
|
+
neverSpam?: {
|
|
12460
|
+
value: boolean;
|
|
12461
|
+
setAt: number;
|
|
12462
|
+
expiresAt?: number | undefined;
|
|
12463
|
+
setBy?: string | undefined;
|
|
12464
|
+
reason?: string | undefined;
|
|
12465
|
+
} | undefined;
|
|
11753
12466
|
}, {
|
|
11754
12467
|
wellknown?: {
|
|
11755
12468
|
value: boolean;
|
|
@@ -11814,6 +12527,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11814
12527
|
setBy?: string | undefined;
|
|
11815
12528
|
reason?: string | undefined;
|
|
11816
12529
|
} | undefined;
|
|
12530
|
+
neverSpam?: {
|
|
12531
|
+
value: boolean;
|
|
12532
|
+
setAt: number;
|
|
12533
|
+
expiresAt?: number | undefined;
|
|
12534
|
+
setBy?: string | undefined;
|
|
12535
|
+
reason?: string | undefined;
|
|
12536
|
+
} | undefined;
|
|
11817
12537
|
}>>;
|
|
11818
12538
|
}, "strip", z.ZodTypeAny, {
|
|
11819
12539
|
addressId: string;
|
|
@@ -11885,6 +12605,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11885
12605
|
setBy?: string | undefined;
|
|
11886
12606
|
reason?: string | undefined;
|
|
11887
12607
|
} | undefined;
|
|
12608
|
+
neverSpam?: {
|
|
12609
|
+
value: boolean;
|
|
12610
|
+
setAt: number;
|
|
12611
|
+
expiresAt?: number | undefined;
|
|
12612
|
+
setBy?: string | undefined;
|
|
12613
|
+
reason?: string | undefined;
|
|
12614
|
+
} | undefined;
|
|
11888
12615
|
} | undefined;
|
|
11889
12616
|
}, {
|
|
11890
12617
|
addressId: string;
|
|
@@ -11956,6 +12683,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11956
12683
|
setBy?: string | undefined;
|
|
11957
12684
|
reason?: string | undefined;
|
|
11958
12685
|
} | undefined;
|
|
12686
|
+
neverSpam?: {
|
|
12687
|
+
value: boolean;
|
|
12688
|
+
setAt: number;
|
|
12689
|
+
expiresAt?: number | undefined;
|
|
12690
|
+
setBy?: string | undefined;
|
|
12691
|
+
reason?: string | undefined;
|
|
12692
|
+
} | undefined;
|
|
11959
12693
|
} | undefined;
|
|
11960
12694
|
}>, "many">;
|
|
11961
12695
|
replyTo: z.ZodArray<z.ZodObject<{
|
|
@@ -12003,6 +12737,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12003
12737
|
setBy?: string | undefined;
|
|
12004
12738
|
reason?: string | undefined;
|
|
12005
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
|
+
}>>;
|
|
12006
12759
|
muted: z.ZodOptional<z.ZodObject<{
|
|
12007
12760
|
setAt: z.ZodNumber;
|
|
12008
12761
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -12200,6 +12953,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12200
12953
|
setBy?: string | undefined;
|
|
12201
12954
|
reason?: string | undefined;
|
|
12202
12955
|
} | undefined;
|
|
12956
|
+
neverSpam?: {
|
|
12957
|
+
value: boolean;
|
|
12958
|
+
setAt: number;
|
|
12959
|
+
expiresAt?: number | undefined;
|
|
12960
|
+
setBy?: string | undefined;
|
|
12961
|
+
reason?: string | undefined;
|
|
12962
|
+
} | undefined;
|
|
12203
12963
|
}, {
|
|
12204
12964
|
wellknown?: {
|
|
12205
12965
|
value: boolean;
|
|
@@ -12264,6 +13024,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12264
13024
|
setBy?: string | undefined;
|
|
12265
13025
|
reason?: string | undefined;
|
|
12266
13026
|
} | undefined;
|
|
13027
|
+
neverSpam?: {
|
|
13028
|
+
value: boolean;
|
|
13029
|
+
setAt: number;
|
|
13030
|
+
expiresAt?: number | undefined;
|
|
13031
|
+
setBy?: string | undefined;
|
|
13032
|
+
reason?: string | undefined;
|
|
13033
|
+
} | undefined;
|
|
12267
13034
|
}>>;
|
|
12268
13035
|
}, "strip", z.ZodTypeAny, {
|
|
12269
13036
|
addressId: string;
|
|
@@ -12335,6 +13102,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12335
13102
|
setBy?: string | undefined;
|
|
12336
13103
|
reason?: string | undefined;
|
|
12337
13104
|
} | undefined;
|
|
13105
|
+
neverSpam?: {
|
|
13106
|
+
value: boolean;
|
|
13107
|
+
setAt: number;
|
|
13108
|
+
expiresAt?: number | undefined;
|
|
13109
|
+
setBy?: string | undefined;
|
|
13110
|
+
reason?: string | undefined;
|
|
13111
|
+
} | undefined;
|
|
12338
13112
|
} | undefined;
|
|
12339
13113
|
}, {
|
|
12340
13114
|
addressId: string;
|
|
@@ -12406,6 +13180,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12406
13180
|
setBy?: string | undefined;
|
|
12407
13181
|
reason?: string | undefined;
|
|
12408
13182
|
} | undefined;
|
|
13183
|
+
neverSpam?: {
|
|
13184
|
+
value: boolean;
|
|
13185
|
+
setAt: number;
|
|
13186
|
+
expiresAt?: number | undefined;
|
|
13187
|
+
setBy?: string | undefined;
|
|
13188
|
+
reason?: string | undefined;
|
|
13189
|
+
} | undefined;
|
|
12409
13190
|
} | undefined;
|
|
12410
13191
|
}>, "many">;
|
|
12411
13192
|
category: z.ZodEnum<["uncategorized", "personal", "newsletter", "marketing", "automated", "transactional", "social"]>;
|
|
@@ -12482,6 +13263,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12482
13263
|
setBy?: string | undefined;
|
|
12483
13264
|
reason?: string | undefined;
|
|
12484
13265
|
} | undefined;
|
|
13266
|
+
neverSpam?: {
|
|
13267
|
+
value: boolean;
|
|
13268
|
+
setAt: number;
|
|
13269
|
+
expiresAt?: number | undefined;
|
|
13270
|
+
setBy?: string | undefined;
|
|
13271
|
+
reason?: string | undefined;
|
|
13272
|
+
} | undefined;
|
|
12485
13273
|
} | undefined;
|
|
12486
13274
|
}[];
|
|
12487
13275
|
to: {
|
|
@@ -12554,6 +13342,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12554
13342
|
setBy?: string | undefined;
|
|
12555
13343
|
reason?: string | undefined;
|
|
12556
13344
|
} | undefined;
|
|
13345
|
+
neverSpam?: {
|
|
13346
|
+
value: boolean;
|
|
13347
|
+
setAt: number;
|
|
13348
|
+
expiresAt?: number | undefined;
|
|
13349
|
+
setBy?: string | undefined;
|
|
13350
|
+
reason?: string | undefined;
|
|
13351
|
+
} | undefined;
|
|
12557
13352
|
} | undefined;
|
|
12558
13353
|
}[];
|
|
12559
13354
|
cc: {
|
|
@@ -12626,6 +13421,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12626
13421
|
setBy?: string | undefined;
|
|
12627
13422
|
reason?: string | undefined;
|
|
12628
13423
|
} | undefined;
|
|
13424
|
+
neverSpam?: {
|
|
13425
|
+
value: boolean;
|
|
13426
|
+
setAt: number;
|
|
13427
|
+
expiresAt?: number | undefined;
|
|
13428
|
+
setBy?: string | undefined;
|
|
13429
|
+
reason?: string | undefined;
|
|
13430
|
+
} | undefined;
|
|
12629
13431
|
} | undefined;
|
|
12630
13432
|
}[];
|
|
12631
13433
|
bcc: {
|
|
@@ -12698,6 +13500,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12698
13500
|
setBy?: string | undefined;
|
|
12699
13501
|
reason?: string | undefined;
|
|
12700
13502
|
} | undefined;
|
|
13503
|
+
neverSpam?: {
|
|
13504
|
+
value: boolean;
|
|
13505
|
+
setAt: number;
|
|
13506
|
+
expiresAt?: number | undefined;
|
|
13507
|
+
setBy?: string | undefined;
|
|
13508
|
+
reason?: string | undefined;
|
|
13509
|
+
} | undefined;
|
|
12701
13510
|
} | undefined;
|
|
12702
13511
|
}[];
|
|
12703
13512
|
date: number;
|
|
@@ -12773,6 +13582,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12773
13582
|
setBy?: string | undefined;
|
|
12774
13583
|
reason?: string | undefined;
|
|
12775
13584
|
} | undefined;
|
|
13585
|
+
neverSpam?: {
|
|
13586
|
+
value: boolean;
|
|
13587
|
+
setAt: number;
|
|
13588
|
+
expiresAt?: number | undefined;
|
|
13589
|
+
setBy?: string | undefined;
|
|
13590
|
+
reason?: string | undefined;
|
|
13591
|
+
} | undefined;
|
|
12776
13592
|
} | undefined;
|
|
12777
13593
|
}[];
|
|
12778
13594
|
subject?: string | undefined;
|
|
@@ -12849,6 +13665,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12849
13665
|
setBy?: string | undefined;
|
|
12850
13666
|
reason?: string | undefined;
|
|
12851
13667
|
} | undefined;
|
|
13668
|
+
neverSpam?: {
|
|
13669
|
+
value: boolean;
|
|
13670
|
+
setAt: number;
|
|
13671
|
+
expiresAt?: number | undefined;
|
|
13672
|
+
setBy?: string | undefined;
|
|
13673
|
+
reason?: string | undefined;
|
|
13674
|
+
} | undefined;
|
|
12852
13675
|
} | undefined;
|
|
12853
13676
|
}[];
|
|
12854
13677
|
to: {
|
|
@@ -12921,6 +13744,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12921
13744
|
setBy?: string | undefined;
|
|
12922
13745
|
reason?: string | undefined;
|
|
12923
13746
|
} | undefined;
|
|
13747
|
+
neverSpam?: {
|
|
13748
|
+
value: boolean;
|
|
13749
|
+
setAt: number;
|
|
13750
|
+
expiresAt?: number | undefined;
|
|
13751
|
+
setBy?: string | undefined;
|
|
13752
|
+
reason?: string | undefined;
|
|
13753
|
+
} | undefined;
|
|
12924
13754
|
} | undefined;
|
|
12925
13755
|
}[];
|
|
12926
13756
|
cc: {
|
|
@@ -12993,6 +13823,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12993
13823
|
setBy?: string | undefined;
|
|
12994
13824
|
reason?: string | undefined;
|
|
12995
13825
|
} | undefined;
|
|
13826
|
+
neverSpam?: {
|
|
13827
|
+
value: boolean;
|
|
13828
|
+
setAt: number;
|
|
13829
|
+
expiresAt?: number | undefined;
|
|
13830
|
+
setBy?: string | undefined;
|
|
13831
|
+
reason?: string | undefined;
|
|
13832
|
+
} | undefined;
|
|
12996
13833
|
} | undefined;
|
|
12997
13834
|
}[];
|
|
12998
13835
|
bcc: {
|
|
@@ -13065,6 +13902,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13065
13902
|
setBy?: string | undefined;
|
|
13066
13903
|
reason?: string | undefined;
|
|
13067
13904
|
} | undefined;
|
|
13905
|
+
neverSpam?: {
|
|
13906
|
+
value: boolean;
|
|
13907
|
+
setAt: number;
|
|
13908
|
+
expiresAt?: number | undefined;
|
|
13909
|
+
setBy?: string | undefined;
|
|
13910
|
+
reason?: string | undefined;
|
|
13911
|
+
} | undefined;
|
|
13068
13912
|
} | undefined;
|
|
13069
13913
|
}[];
|
|
13070
13914
|
date: number;
|
|
@@ -13140,6 +13984,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13140
13984
|
setBy?: string | undefined;
|
|
13141
13985
|
reason?: string | undefined;
|
|
13142
13986
|
} | undefined;
|
|
13987
|
+
neverSpam?: {
|
|
13988
|
+
value: boolean;
|
|
13989
|
+
setAt: number;
|
|
13990
|
+
expiresAt?: number | undefined;
|
|
13991
|
+
setBy?: string | undefined;
|
|
13992
|
+
reason?: string | undefined;
|
|
13993
|
+
} | undefined;
|
|
13143
13994
|
} | undefined;
|
|
13144
13995
|
}[];
|
|
13145
13996
|
subject?: string | undefined;
|
|
@@ -13306,6 +14157,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13306
14157
|
setBy?: string | undefined;
|
|
13307
14158
|
reason?: string | undefined;
|
|
13308
14159
|
} | undefined;
|
|
14160
|
+
neverSpam?: {
|
|
14161
|
+
value: boolean;
|
|
14162
|
+
setAt: number;
|
|
14163
|
+
expiresAt?: number | undefined;
|
|
14164
|
+
setBy?: string | undefined;
|
|
14165
|
+
reason?: string | undefined;
|
|
14166
|
+
} | undefined;
|
|
13309
14167
|
} | undefined;
|
|
13310
14168
|
}[];
|
|
13311
14169
|
to: {
|
|
@@ -13378,6 +14236,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13378
14236
|
setBy?: string | undefined;
|
|
13379
14237
|
reason?: string | undefined;
|
|
13380
14238
|
} | undefined;
|
|
14239
|
+
neverSpam?: {
|
|
14240
|
+
value: boolean;
|
|
14241
|
+
setAt: number;
|
|
14242
|
+
expiresAt?: number | undefined;
|
|
14243
|
+
setBy?: string | undefined;
|
|
14244
|
+
reason?: string | undefined;
|
|
14245
|
+
} | undefined;
|
|
13381
14246
|
} | undefined;
|
|
13382
14247
|
}[];
|
|
13383
14248
|
cc: {
|
|
@@ -13450,6 +14315,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13450
14315
|
setBy?: string | undefined;
|
|
13451
14316
|
reason?: string | undefined;
|
|
13452
14317
|
} | undefined;
|
|
14318
|
+
neverSpam?: {
|
|
14319
|
+
value: boolean;
|
|
14320
|
+
setAt: number;
|
|
14321
|
+
expiresAt?: number | undefined;
|
|
14322
|
+
setBy?: string | undefined;
|
|
14323
|
+
reason?: string | undefined;
|
|
14324
|
+
} | undefined;
|
|
13453
14325
|
} | undefined;
|
|
13454
14326
|
}[];
|
|
13455
14327
|
bcc: {
|
|
@@ -13522,6 +14394,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13522
14394
|
setBy?: string | undefined;
|
|
13523
14395
|
reason?: string | undefined;
|
|
13524
14396
|
} | undefined;
|
|
14397
|
+
neverSpam?: {
|
|
14398
|
+
value: boolean;
|
|
14399
|
+
setAt: number;
|
|
14400
|
+
expiresAt?: number | undefined;
|
|
14401
|
+
setBy?: string | undefined;
|
|
14402
|
+
reason?: string | undefined;
|
|
14403
|
+
} | undefined;
|
|
13525
14404
|
} | undefined;
|
|
13526
14405
|
}[];
|
|
13527
14406
|
date: number;
|
|
@@ -13597,6 +14476,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13597
14476
|
setBy?: string | undefined;
|
|
13598
14477
|
reason?: string | undefined;
|
|
13599
14478
|
} | undefined;
|
|
14479
|
+
neverSpam?: {
|
|
14480
|
+
value: boolean;
|
|
14481
|
+
setAt: number;
|
|
14482
|
+
expiresAt?: number | undefined;
|
|
14483
|
+
setBy?: string | undefined;
|
|
14484
|
+
reason?: string | undefined;
|
|
14485
|
+
} | undefined;
|
|
13600
14486
|
} | undefined;
|
|
13601
14487
|
}[];
|
|
13602
14488
|
subject?: string | undefined;
|
|
@@ -13729,6 +14615,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13729
14615
|
setBy?: string | undefined;
|
|
13730
14616
|
reason?: string | undefined;
|
|
13731
14617
|
} | undefined;
|
|
14618
|
+
neverSpam?: {
|
|
14619
|
+
value: boolean;
|
|
14620
|
+
setAt: number;
|
|
14621
|
+
expiresAt?: number | undefined;
|
|
14622
|
+
setBy?: string | undefined;
|
|
14623
|
+
reason?: string | undefined;
|
|
14624
|
+
} | undefined;
|
|
13732
14625
|
} | undefined;
|
|
13733
14626
|
}[];
|
|
13734
14627
|
to: {
|
|
@@ -13801,6 +14694,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13801
14694
|
setBy?: string | undefined;
|
|
13802
14695
|
reason?: string | undefined;
|
|
13803
14696
|
} | undefined;
|
|
14697
|
+
neverSpam?: {
|
|
14698
|
+
value: boolean;
|
|
14699
|
+
setAt: number;
|
|
14700
|
+
expiresAt?: number | undefined;
|
|
14701
|
+
setBy?: string | undefined;
|
|
14702
|
+
reason?: string | undefined;
|
|
14703
|
+
} | undefined;
|
|
13804
14704
|
} | undefined;
|
|
13805
14705
|
}[];
|
|
13806
14706
|
cc: {
|
|
@@ -13873,6 +14773,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13873
14773
|
setBy?: string | undefined;
|
|
13874
14774
|
reason?: string | undefined;
|
|
13875
14775
|
} | undefined;
|
|
14776
|
+
neverSpam?: {
|
|
14777
|
+
value: boolean;
|
|
14778
|
+
setAt: number;
|
|
14779
|
+
expiresAt?: number | undefined;
|
|
14780
|
+
setBy?: string | undefined;
|
|
14781
|
+
reason?: string | undefined;
|
|
14782
|
+
} | undefined;
|
|
13876
14783
|
} | undefined;
|
|
13877
14784
|
}[];
|
|
13878
14785
|
bcc: {
|
|
@@ -13945,6 +14852,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
13945
14852
|
setBy?: string | undefined;
|
|
13946
14853
|
reason?: string | undefined;
|
|
13947
14854
|
} | undefined;
|
|
14855
|
+
neverSpam?: {
|
|
14856
|
+
value: boolean;
|
|
14857
|
+
setAt: number;
|
|
14858
|
+
expiresAt?: number | undefined;
|
|
14859
|
+
setBy?: string | undefined;
|
|
14860
|
+
reason?: string | undefined;
|
|
14861
|
+
} | undefined;
|
|
13948
14862
|
} | undefined;
|
|
13949
14863
|
}[];
|
|
13950
14864
|
date: number;
|
|
@@ -14020,6 +14934,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
14020
14934
|
setBy?: string | undefined;
|
|
14021
14935
|
reason?: string | undefined;
|
|
14022
14936
|
} | undefined;
|
|
14937
|
+
neverSpam?: {
|
|
14938
|
+
value: boolean;
|
|
14939
|
+
setAt: number;
|
|
14940
|
+
expiresAt?: number | undefined;
|
|
14941
|
+
setBy?: string | undefined;
|
|
14942
|
+
reason?: string | undefined;
|
|
14943
|
+
} | undefined;
|
|
14023
14944
|
} | undefined;
|
|
14024
14945
|
}[];
|
|
14025
14946
|
subject?: string | undefined;
|