@remit/api-zod-schemas 0.0.22 → 0.0.24
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 +1 -0
- package/package.json +1 -1
- package/schemas.d.ts +929 -12
- package/schemas.d.ts.map +1 -1
- package/schemas.js +10 -1
- package/schemas.js.map +1 -1
- package/schemas.ts +11 -1
package/schemas.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare const SenderTrustSchema: z.ZodEnum<["unknown", "wellknown", "vip"
|
|
|
31
31
|
export declare const DisplayNameCorrespondenceSchema: z.ZodEnum<["Corresponds", "Lookalike", "Unrelated", "NoClaim"]>;
|
|
32
32
|
export declare const PlacementActionSchema: z.ZodEnum<["MoveToInbox", "MoveToJunk"]>;
|
|
33
33
|
export declare const SemanticSearchChunkTypeSchema: z.ZodEnum<["sender", "recipient", "subject", "attachment", "body", "entities"]>;
|
|
34
|
-
export declare const OutboxMessageStatusSchema: z.ZodEnum<["draft", "queued", "sending", "sent", "failed", "blocked"]>;
|
|
34
|
+
export declare const OutboxMessageStatusSchema: z.ZodEnum<["draft", "queued", "sending", "sent", "unfiled", "failed", "blocked"]>;
|
|
35
35
|
export declare const OutboxAttachmentStateSchema: z.ZodEnum<["Pending", "Stored"]>;
|
|
36
36
|
export declare const OutboxAttachmentRejectionReasonSchema: z.ZodEnum<["EmptyFile", "UnusableFilename", "FileTooLarge", "MessageTooLarge", "TooManyAttachments", "ReservationExpired", "UploadMissing", "SizeMismatch"]>;
|
|
37
37
|
export declare const MessageStatusSchema: z.ZodEnum<["active", "deleting", "deleted", "moving"]>;
|
|
@@ -3258,7 +3258,7 @@ export declare const OutboxMessageSchema: z.ZodObject<{
|
|
|
3258
3258
|
references: z.ZodArray<z.ZodString, "many">;
|
|
3259
3259
|
textBody: z.ZodOptional<z.ZodString>;
|
|
3260
3260
|
htmlBody: z.ZodOptional<z.ZodString>;
|
|
3261
|
-
status: z.ZodEnum<["draft", "queued", "sending", "sent", "failed", "blocked"]>;
|
|
3261
|
+
status: z.ZodEnum<["draft", "queued", "sending", "sent", "unfiled", "failed", "blocked"]>;
|
|
3262
3262
|
lastError: z.ZodOptional<z.ZodString>;
|
|
3263
3263
|
lastSmtpCode: z.ZodOptional<z.ZodNumber>;
|
|
3264
3264
|
sentAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3267,7 +3267,7 @@ export declare const OutboxMessageSchema: z.ZodObject<{
|
|
|
3267
3267
|
updatedAt: z.ZodNumber;
|
|
3268
3268
|
}, "strip", z.ZodTypeAny, {
|
|
3269
3269
|
references: string[];
|
|
3270
|
-
status: "failed" | "draft" | "queued" | "sending" | "sent" | "blocked";
|
|
3270
|
+
status: "failed" | "draft" | "queued" | "sending" | "sent" | "unfiled" | "blocked";
|
|
3271
3271
|
accountConfigId: string;
|
|
3272
3272
|
createdAt: number;
|
|
3273
3273
|
updatedAt: number;
|
|
@@ -3290,7 +3290,7 @@ export declare const OutboxMessageSchema: z.ZodObject<{
|
|
|
3290
3290
|
smtpMessageId?: string | undefined;
|
|
3291
3291
|
}, {
|
|
3292
3292
|
references: string[];
|
|
3293
|
-
status: "failed" | "draft" | "queued" | "sending" | "sent" | "blocked";
|
|
3293
|
+
status: "failed" | "draft" | "queued" | "sending" | "sent" | "unfiled" | "blocked";
|
|
3294
3294
|
accountConfigId: string;
|
|
3295
3295
|
createdAt: number;
|
|
3296
3296
|
updatedAt: number;
|
|
@@ -3347,7 +3347,7 @@ export declare const OutboxMessageResponseSchema: z.ZodObject<{
|
|
|
3347
3347
|
references: z.ZodArray<z.ZodString, "many">;
|
|
3348
3348
|
textBody: z.ZodOptional<z.ZodString>;
|
|
3349
3349
|
htmlBody: z.ZodOptional<z.ZodString>;
|
|
3350
|
-
status: z.ZodEnum<["draft", "queued", "sending", "sent", "failed", "blocked"]>;
|
|
3350
|
+
status: z.ZodEnum<["draft", "queued", "sending", "sent", "unfiled", "failed", "blocked"]>;
|
|
3351
3351
|
lastError: z.ZodOptional<z.ZodString>;
|
|
3352
3352
|
sentAt: z.ZodOptional<z.ZodNumber>;
|
|
3353
3353
|
createdAt: z.ZodNumber;
|
|
@@ -3376,7 +3376,7 @@ export declare const OutboxMessageResponseSchema: z.ZodObject<{
|
|
|
3376
3376
|
}>, "many">;
|
|
3377
3377
|
}, "strip", z.ZodTypeAny, {
|
|
3378
3378
|
references: string[];
|
|
3379
|
-
status: "failed" | "draft" | "queued" | "sending" | "sent" | "blocked";
|
|
3379
|
+
status: "failed" | "draft" | "queued" | "sending" | "sent" | "unfiled" | "blocked";
|
|
3380
3380
|
createdAt: number;
|
|
3381
3381
|
updatedAt: number;
|
|
3382
3382
|
accountId: string;
|
|
@@ -3402,7 +3402,7 @@ export declare const OutboxMessageResponseSchema: z.ZodObject<{
|
|
|
3402
3402
|
sentAt?: number | undefined;
|
|
3403
3403
|
}, {
|
|
3404
3404
|
references: string[];
|
|
3405
|
-
status: "failed" | "draft" | "queued" | "sending" | "sent" | "blocked";
|
|
3405
|
+
status: "failed" | "draft" | "queued" | "sending" | "sent" | "unfiled" | "blocked";
|
|
3406
3406
|
createdAt: number;
|
|
3407
3407
|
updatedAt: number;
|
|
3408
3408
|
accountId: string;
|
|
@@ -3663,6 +3663,25 @@ export declare const WellknownFlagSchema: z.ZodObject<{
|
|
|
3663
3663
|
setBy?: string | undefined;
|
|
3664
3664
|
reason?: string | undefined;
|
|
3665
3665
|
}>;
|
|
3666
|
+
export declare const JunkOnlyFlagSchema: z.ZodObject<{
|
|
3667
|
+
setAt: z.ZodNumber;
|
|
3668
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
3670
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3671
|
+
value: z.ZodBoolean;
|
|
3672
|
+
}, "strip", z.ZodTypeAny, {
|
|
3673
|
+
value: boolean;
|
|
3674
|
+
setAt: number;
|
|
3675
|
+
expiresAt?: number | undefined;
|
|
3676
|
+
setBy?: string | undefined;
|
|
3677
|
+
reason?: string | undefined;
|
|
3678
|
+
}, {
|
|
3679
|
+
value: boolean;
|
|
3680
|
+
setAt: number;
|
|
3681
|
+
expiresAt?: number | undefined;
|
|
3682
|
+
setBy?: string | undefined;
|
|
3683
|
+
reason?: string | undefined;
|
|
3684
|
+
}>;
|
|
3666
3685
|
export declare const CategoryFlagSchema: z.ZodObject<{
|
|
3667
3686
|
setAt: z.ZodNumber;
|
|
3668
3687
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -3816,6 +3835,25 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
3816
3835
|
setBy?: string | undefined;
|
|
3817
3836
|
reason?: string | undefined;
|
|
3818
3837
|
}>>;
|
|
3838
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
3839
|
+
setAt: z.ZodNumber;
|
|
3840
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
3841
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
3842
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3843
|
+
value: z.ZodBoolean;
|
|
3844
|
+
}, "strip", z.ZodTypeAny, {
|
|
3845
|
+
value: boolean;
|
|
3846
|
+
setAt: number;
|
|
3847
|
+
expiresAt?: number | undefined;
|
|
3848
|
+
setBy?: string | undefined;
|
|
3849
|
+
reason?: string | undefined;
|
|
3850
|
+
}, {
|
|
3851
|
+
value: boolean;
|
|
3852
|
+
setAt: number;
|
|
3853
|
+
expiresAt?: number | undefined;
|
|
3854
|
+
setBy?: string | undefined;
|
|
3855
|
+
reason?: string | undefined;
|
|
3856
|
+
}>>;
|
|
3819
3857
|
category: z.ZodOptional<z.ZodObject<{
|
|
3820
3858
|
setAt: z.ZodNumber;
|
|
3821
3859
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -3916,6 +3954,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
3916
3954
|
setBy?: string | undefined;
|
|
3917
3955
|
reason?: string | undefined;
|
|
3918
3956
|
} | undefined;
|
|
3957
|
+
junkOnly?: {
|
|
3958
|
+
value: boolean;
|
|
3959
|
+
setAt: number;
|
|
3960
|
+
expiresAt?: number | undefined;
|
|
3961
|
+
setBy?: string | undefined;
|
|
3962
|
+
reason?: string | undefined;
|
|
3963
|
+
} | undefined;
|
|
3919
3964
|
autoArchive?: {
|
|
3920
3965
|
value: boolean;
|
|
3921
3966
|
setAt: number;
|
|
@@ -3973,6 +4018,13 @@ export declare const AddressFlagsSchema: z.ZodObject<{
|
|
|
3973
4018
|
setBy?: string | undefined;
|
|
3974
4019
|
reason?: string | undefined;
|
|
3975
4020
|
} | undefined;
|
|
4021
|
+
junkOnly?: {
|
|
4022
|
+
value: boolean;
|
|
4023
|
+
setAt: number;
|
|
4024
|
+
expiresAt?: number | undefined;
|
|
4025
|
+
setBy?: string | undefined;
|
|
4026
|
+
reason?: string | undefined;
|
|
4027
|
+
} | undefined;
|
|
3976
4028
|
autoArchive?: {
|
|
3977
4029
|
value: boolean;
|
|
3978
4030
|
setAt: number;
|
|
@@ -4092,6 +4144,25 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
4092
4144
|
setBy?: string | undefined;
|
|
4093
4145
|
reason?: string | undefined;
|
|
4094
4146
|
}>>;
|
|
4147
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
4148
|
+
setAt: z.ZodNumber;
|
|
4149
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
4150
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
4151
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4152
|
+
value: z.ZodBoolean;
|
|
4153
|
+
}, "strip", z.ZodTypeAny, {
|
|
4154
|
+
value: boolean;
|
|
4155
|
+
setAt: number;
|
|
4156
|
+
expiresAt?: number | undefined;
|
|
4157
|
+
setBy?: string | undefined;
|
|
4158
|
+
reason?: string | undefined;
|
|
4159
|
+
}, {
|
|
4160
|
+
value: boolean;
|
|
4161
|
+
setAt: number;
|
|
4162
|
+
expiresAt?: number | undefined;
|
|
4163
|
+
setBy?: string | undefined;
|
|
4164
|
+
reason?: string | undefined;
|
|
4165
|
+
}>>;
|
|
4095
4166
|
category: z.ZodOptional<z.ZodObject<{
|
|
4096
4167
|
setAt: z.ZodNumber;
|
|
4097
4168
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4192,6 +4263,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
4192
4263
|
setBy?: string | undefined;
|
|
4193
4264
|
reason?: string | undefined;
|
|
4194
4265
|
} | undefined;
|
|
4266
|
+
junkOnly?: {
|
|
4267
|
+
value: boolean;
|
|
4268
|
+
setAt: number;
|
|
4269
|
+
expiresAt?: number | undefined;
|
|
4270
|
+
setBy?: string | undefined;
|
|
4271
|
+
reason?: string | undefined;
|
|
4272
|
+
} | undefined;
|
|
4195
4273
|
autoArchive?: {
|
|
4196
4274
|
value: boolean;
|
|
4197
4275
|
setAt: number;
|
|
@@ -4249,6 +4327,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
4249
4327
|
setBy?: string | undefined;
|
|
4250
4328
|
reason?: string | undefined;
|
|
4251
4329
|
} | undefined;
|
|
4330
|
+
junkOnly?: {
|
|
4331
|
+
value: boolean;
|
|
4332
|
+
setAt: number;
|
|
4333
|
+
expiresAt?: number | undefined;
|
|
4334
|
+
setBy?: string | undefined;
|
|
4335
|
+
reason?: string | undefined;
|
|
4336
|
+
} | undefined;
|
|
4252
4337
|
autoArchive?: {
|
|
4253
4338
|
value: boolean;
|
|
4254
4339
|
setAt: number;
|
|
@@ -4329,6 +4414,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
4329
4414
|
setBy?: string | undefined;
|
|
4330
4415
|
reason?: string | undefined;
|
|
4331
4416
|
} | undefined;
|
|
4417
|
+
junkOnly?: {
|
|
4418
|
+
value: boolean;
|
|
4419
|
+
setAt: number;
|
|
4420
|
+
expiresAt?: number | undefined;
|
|
4421
|
+
setBy?: string | undefined;
|
|
4422
|
+
reason?: string | undefined;
|
|
4423
|
+
} | undefined;
|
|
4332
4424
|
autoArchive?: {
|
|
4333
4425
|
value: boolean;
|
|
4334
4426
|
setAt: number;
|
|
@@ -4403,6 +4495,13 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
4403
4495
|
setBy?: string | undefined;
|
|
4404
4496
|
reason?: string | undefined;
|
|
4405
4497
|
} | undefined;
|
|
4498
|
+
junkOnly?: {
|
|
4499
|
+
value: boolean;
|
|
4500
|
+
setAt: number;
|
|
4501
|
+
expiresAt?: number | undefined;
|
|
4502
|
+
setBy?: string | undefined;
|
|
4503
|
+
reason?: string | undefined;
|
|
4504
|
+
} | undefined;
|
|
4406
4505
|
autoArchive?: {
|
|
4407
4506
|
value: boolean;
|
|
4408
4507
|
setAt: number;
|
|
@@ -4524,6 +4623,25 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
4524
4623
|
setBy?: string | undefined;
|
|
4525
4624
|
reason?: string | undefined;
|
|
4526
4625
|
}>>;
|
|
4626
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
4627
|
+
setAt: z.ZodNumber;
|
|
4628
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
4629
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
4630
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4631
|
+
value: z.ZodBoolean;
|
|
4632
|
+
}, "strip", z.ZodTypeAny, {
|
|
4633
|
+
value: boolean;
|
|
4634
|
+
setAt: number;
|
|
4635
|
+
expiresAt?: number | undefined;
|
|
4636
|
+
setBy?: string | undefined;
|
|
4637
|
+
reason?: string | undefined;
|
|
4638
|
+
}, {
|
|
4639
|
+
value: boolean;
|
|
4640
|
+
setAt: number;
|
|
4641
|
+
expiresAt?: number | undefined;
|
|
4642
|
+
setBy?: string | undefined;
|
|
4643
|
+
reason?: string | undefined;
|
|
4644
|
+
}>>;
|
|
4527
4645
|
category: z.ZodOptional<z.ZodObject<{
|
|
4528
4646
|
setAt: z.ZodNumber;
|
|
4529
4647
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4624,6 +4742,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
4624
4742
|
setBy?: string | undefined;
|
|
4625
4743
|
reason?: string | undefined;
|
|
4626
4744
|
} | undefined;
|
|
4745
|
+
junkOnly?: {
|
|
4746
|
+
value: boolean;
|
|
4747
|
+
setAt: number;
|
|
4748
|
+
expiresAt?: number | undefined;
|
|
4749
|
+
setBy?: string | undefined;
|
|
4750
|
+
reason?: string | undefined;
|
|
4751
|
+
} | undefined;
|
|
4627
4752
|
autoArchive?: {
|
|
4628
4753
|
value: boolean;
|
|
4629
4754
|
setAt: number;
|
|
@@ -4681,6 +4806,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
4681
4806
|
setBy?: string | undefined;
|
|
4682
4807
|
reason?: string | undefined;
|
|
4683
4808
|
} | undefined;
|
|
4809
|
+
junkOnly?: {
|
|
4810
|
+
value: boolean;
|
|
4811
|
+
setAt: number;
|
|
4812
|
+
expiresAt?: number | undefined;
|
|
4813
|
+
setBy?: string | undefined;
|
|
4814
|
+
reason?: string | undefined;
|
|
4815
|
+
} | undefined;
|
|
4684
4816
|
autoArchive?: {
|
|
4685
4817
|
value: boolean;
|
|
4686
4818
|
setAt: number;
|
|
@@ -4759,6 +4891,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
4759
4891
|
setBy?: string | undefined;
|
|
4760
4892
|
reason?: string | undefined;
|
|
4761
4893
|
} | undefined;
|
|
4894
|
+
junkOnly?: {
|
|
4895
|
+
value: boolean;
|
|
4896
|
+
setAt: number;
|
|
4897
|
+
expiresAt?: number | undefined;
|
|
4898
|
+
setBy?: string | undefined;
|
|
4899
|
+
reason?: string | undefined;
|
|
4900
|
+
} | undefined;
|
|
4762
4901
|
autoArchive?: {
|
|
4763
4902
|
value: boolean;
|
|
4764
4903
|
setAt: number;
|
|
@@ -4831,6 +4970,13 @@ export declare const AddressResponseSchema: z.ZodObject<{
|
|
|
4831
4970
|
setBy?: string | undefined;
|
|
4832
4971
|
reason?: string | undefined;
|
|
4833
4972
|
} | undefined;
|
|
4973
|
+
junkOnly?: {
|
|
4974
|
+
value: boolean;
|
|
4975
|
+
setAt: number;
|
|
4976
|
+
expiresAt?: number | undefined;
|
|
4977
|
+
setBy?: string | undefined;
|
|
4978
|
+
reason?: string | undefined;
|
|
4979
|
+
} | undefined;
|
|
4834
4980
|
autoArchive?: {
|
|
4835
4981
|
value: boolean;
|
|
4836
4982
|
setAt: number;
|
|
@@ -4944,6 +5090,25 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
4944
5090
|
setBy?: string | undefined;
|
|
4945
5091
|
reason?: string | undefined;
|
|
4946
5092
|
}>, z.ZodUnknown]>>;
|
|
5093
|
+
junkOnly: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5094
|
+
setAt: z.ZodNumber;
|
|
5095
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
5096
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
5097
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5098
|
+
value: z.ZodBoolean;
|
|
5099
|
+
}, "strip", z.ZodTypeAny, {
|
|
5100
|
+
value: boolean;
|
|
5101
|
+
setAt: number;
|
|
5102
|
+
expiresAt?: number | undefined;
|
|
5103
|
+
setBy?: string | undefined;
|
|
5104
|
+
reason?: string | undefined;
|
|
5105
|
+
}, {
|
|
5106
|
+
value: boolean;
|
|
5107
|
+
setAt: number;
|
|
5108
|
+
expiresAt?: number | undefined;
|
|
5109
|
+
setBy?: string | undefined;
|
|
5110
|
+
reason?: string | undefined;
|
|
5111
|
+
}>, z.ZodUnknown]>>;
|
|
4947
5112
|
category: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4948
5113
|
setAt: z.ZodNumber;
|
|
4949
5114
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5008,6 +5173,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
5008
5173
|
muted?: unknown;
|
|
5009
5174
|
category?: unknown;
|
|
5010
5175
|
trusted?: unknown;
|
|
5176
|
+
junkOnly?: unknown;
|
|
5011
5177
|
autoArchive?: unknown;
|
|
5012
5178
|
unsubscribed?: unknown;
|
|
5013
5179
|
}, {
|
|
@@ -5017,6 +5183,7 @@ export declare const UpdateAddressFlagsInputSchema: z.ZodObject<{
|
|
|
5017
5183
|
muted?: unknown;
|
|
5018
5184
|
category?: unknown;
|
|
5019
5185
|
trusted?: unknown;
|
|
5186
|
+
junkOnly?: unknown;
|
|
5020
5187
|
autoArchive?: unknown;
|
|
5021
5188
|
unsubscribed?: unknown;
|
|
5022
5189
|
}>;
|
|
@@ -5117,6 +5284,25 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
5117
5284
|
setBy?: string | undefined;
|
|
5118
5285
|
reason?: string | undefined;
|
|
5119
5286
|
}>, z.ZodUnknown]>>;
|
|
5287
|
+
junkOnly: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5288
|
+
setAt: z.ZodNumber;
|
|
5289
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
5290
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
5291
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5292
|
+
value: z.ZodBoolean;
|
|
5293
|
+
}, "strip", z.ZodTypeAny, {
|
|
5294
|
+
value: boolean;
|
|
5295
|
+
setAt: number;
|
|
5296
|
+
expiresAt?: number | undefined;
|
|
5297
|
+
setBy?: string | undefined;
|
|
5298
|
+
reason?: string | undefined;
|
|
5299
|
+
}, {
|
|
5300
|
+
value: boolean;
|
|
5301
|
+
setAt: number;
|
|
5302
|
+
expiresAt?: number | undefined;
|
|
5303
|
+
setBy?: string | undefined;
|
|
5304
|
+
reason?: string | undefined;
|
|
5305
|
+
}>, z.ZodUnknown]>>;
|
|
5120
5306
|
category: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5121
5307
|
setAt: z.ZodNumber;
|
|
5122
5308
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5181,6 +5367,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
5181
5367
|
muted?: unknown;
|
|
5182
5368
|
category?: unknown;
|
|
5183
5369
|
trusted?: unknown;
|
|
5370
|
+
junkOnly?: unknown;
|
|
5184
5371
|
autoArchive?: unknown;
|
|
5185
5372
|
unsubscribed?: unknown;
|
|
5186
5373
|
}, {
|
|
@@ -5190,6 +5377,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
5190
5377
|
muted?: unknown;
|
|
5191
5378
|
category?: unknown;
|
|
5192
5379
|
trusted?: unknown;
|
|
5380
|
+
junkOnly?: unknown;
|
|
5193
5381
|
autoArchive?: unknown;
|
|
5194
5382
|
unsubscribed?: unknown;
|
|
5195
5383
|
}>>;
|
|
@@ -5201,6 +5389,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
5201
5389
|
muted?: unknown;
|
|
5202
5390
|
category?: unknown;
|
|
5203
5391
|
trusted?: unknown;
|
|
5392
|
+
junkOnly?: unknown;
|
|
5204
5393
|
autoArchive?: unknown;
|
|
5205
5394
|
unsubscribed?: unknown;
|
|
5206
5395
|
} | undefined;
|
|
@@ -5212,6 +5401,7 @@ export declare const UpdateAddressInputSchema: z.ZodObject<{
|
|
|
5212
5401
|
muted?: unknown;
|
|
5213
5402
|
category?: unknown;
|
|
5214
5403
|
trusted?: unknown;
|
|
5404
|
+
junkOnly?: unknown;
|
|
5215
5405
|
autoArchive?: unknown;
|
|
5216
5406
|
unsubscribed?: unknown;
|
|
5217
5407
|
} | undefined;
|
|
@@ -5462,6 +5652,25 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
5462
5652
|
setBy?: string | undefined;
|
|
5463
5653
|
reason?: string | undefined;
|
|
5464
5654
|
}>>;
|
|
5655
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
5656
|
+
setAt: z.ZodNumber;
|
|
5657
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
5658
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
5659
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5660
|
+
value: z.ZodBoolean;
|
|
5661
|
+
}, "strip", z.ZodTypeAny, {
|
|
5662
|
+
value: boolean;
|
|
5663
|
+
setAt: number;
|
|
5664
|
+
expiresAt?: number | undefined;
|
|
5665
|
+
setBy?: string | undefined;
|
|
5666
|
+
reason?: string | undefined;
|
|
5667
|
+
}, {
|
|
5668
|
+
value: boolean;
|
|
5669
|
+
setAt: number;
|
|
5670
|
+
expiresAt?: number | undefined;
|
|
5671
|
+
setBy?: string | undefined;
|
|
5672
|
+
reason?: string | undefined;
|
|
5673
|
+
}>>;
|
|
5465
5674
|
category: z.ZodOptional<z.ZodObject<{
|
|
5466
5675
|
setAt: z.ZodNumber;
|
|
5467
5676
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5562,6 +5771,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
5562
5771
|
setBy?: string | undefined;
|
|
5563
5772
|
reason?: string | undefined;
|
|
5564
5773
|
} | undefined;
|
|
5774
|
+
junkOnly?: {
|
|
5775
|
+
value: boolean;
|
|
5776
|
+
setAt: number;
|
|
5777
|
+
expiresAt?: number | undefined;
|
|
5778
|
+
setBy?: string | undefined;
|
|
5779
|
+
reason?: string | undefined;
|
|
5780
|
+
} | undefined;
|
|
5565
5781
|
autoArchive?: {
|
|
5566
5782
|
value: boolean;
|
|
5567
5783
|
setAt: number;
|
|
@@ -5619,6 +5835,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
5619
5835
|
setBy?: string | undefined;
|
|
5620
5836
|
reason?: string | undefined;
|
|
5621
5837
|
} | undefined;
|
|
5838
|
+
junkOnly?: {
|
|
5839
|
+
value: boolean;
|
|
5840
|
+
setAt: number;
|
|
5841
|
+
expiresAt?: number | undefined;
|
|
5842
|
+
setBy?: string | undefined;
|
|
5843
|
+
reason?: string | undefined;
|
|
5844
|
+
} | undefined;
|
|
5622
5845
|
autoArchive?: {
|
|
5623
5846
|
value: boolean;
|
|
5624
5847
|
setAt: number;
|
|
@@ -5683,6 +5906,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
5683
5906
|
setBy?: string | undefined;
|
|
5684
5907
|
reason?: string | undefined;
|
|
5685
5908
|
} | undefined;
|
|
5909
|
+
junkOnly?: {
|
|
5910
|
+
value: boolean;
|
|
5911
|
+
setAt: number;
|
|
5912
|
+
expiresAt?: number | undefined;
|
|
5913
|
+
setBy?: string | undefined;
|
|
5914
|
+
reason?: string | undefined;
|
|
5915
|
+
} | undefined;
|
|
5686
5916
|
autoArchive?: {
|
|
5687
5917
|
value: boolean;
|
|
5688
5918
|
setAt: number;
|
|
@@ -5747,6 +5977,13 @@ export declare const EnvelopeAddressResponseSchema: z.ZodObject<{
|
|
|
5747
5977
|
setBy?: string | undefined;
|
|
5748
5978
|
reason?: string | undefined;
|
|
5749
5979
|
} | undefined;
|
|
5980
|
+
junkOnly?: {
|
|
5981
|
+
value: boolean;
|
|
5982
|
+
setAt: number;
|
|
5983
|
+
expiresAt?: number | undefined;
|
|
5984
|
+
setBy?: string | undefined;
|
|
5985
|
+
reason?: string | undefined;
|
|
5986
|
+
} | undefined;
|
|
5750
5987
|
autoArchive?: {
|
|
5751
5988
|
value: boolean;
|
|
5752
5989
|
setAt: number;
|
|
@@ -5870,6 +6107,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
5870
6107
|
setBy?: string | undefined;
|
|
5871
6108
|
reason?: string | undefined;
|
|
5872
6109
|
}>>;
|
|
6110
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
6111
|
+
setAt: z.ZodNumber;
|
|
6112
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6113
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6114
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6115
|
+
value: z.ZodBoolean;
|
|
6116
|
+
}, "strip", z.ZodTypeAny, {
|
|
6117
|
+
value: boolean;
|
|
6118
|
+
setAt: number;
|
|
6119
|
+
expiresAt?: number | undefined;
|
|
6120
|
+
setBy?: string | undefined;
|
|
6121
|
+
reason?: string | undefined;
|
|
6122
|
+
}, {
|
|
6123
|
+
value: boolean;
|
|
6124
|
+
setAt: number;
|
|
6125
|
+
expiresAt?: number | undefined;
|
|
6126
|
+
setBy?: string | undefined;
|
|
6127
|
+
reason?: string | undefined;
|
|
6128
|
+
}>>;
|
|
5873
6129
|
category: z.ZodOptional<z.ZodObject<{
|
|
5874
6130
|
setAt: z.ZodNumber;
|
|
5875
6131
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -5970,6 +6226,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
5970
6226
|
setBy?: string | undefined;
|
|
5971
6227
|
reason?: string | undefined;
|
|
5972
6228
|
} | undefined;
|
|
6229
|
+
junkOnly?: {
|
|
6230
|
+
value: boolean;
|
|
6231
|
+
setAt: number;
|
|
6232
|
+
expiresAt?: number | undefined;
|
|
6233
|
+
setBy?: string | undefined;
|
|
6234
|
+
reason?: string | undefined;
|
|
6235
|
+
} | undefined;
|
|
5973
6236
|
autoArchive?: {
|
|
5974
6237
|
value: boolean;
|
|
5975
6238
|
setAt: number;
|
|
@@ -6027,6 +6290,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6027
6290
|
setBy?: string | undefined;
|
|
6028
6291
|
reason?: string | undefined;
|
|
6029
6292
|
} | undefined;
|
|
6293
|
+
junkOnly?: {
|
|
6294
|
+
value: boolean;
|
|
6295
|
+
setAt: number;
|
|
6296
|
+
expiresAt?: number | undefined;
|
|
6297
|
+
setBy?: string | undefined;
|
|
6298
|
+
reason?: string | undefined;
|
|
6299
|
+
} | undefined;
|
|
6030
6300
|
autoArchive?: {
|
|
6031
6301
|
value: boolean;
|
|
6032
6302
|
setAt: number;
|
|
@@ -6091,6 +6361,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6091
6361
|
setBy?: string | undefined;
|
|
6092
6362
|
reason?: string | undefined;
|
|
6093
6363
|
} | undefined;
|
|
6364
|
+
junkOnly?: {
|
|
6365
|
+
value: boolean;
|
|
6366
|
+
setAt: number;
|
|
6367
|
+
expiresAt?: number | undefined;
|
|
6368
|
+
setBy?: string | undefined;
|
|
6369
|
+
reason?: string | undefined;
|
|
6370
|
+
} | undefined;
|
|
6094
6371
|
autoArchive?: {
|
|
6095
6372
|
value: boolean;
|
|
6096
6373
|
setAt: number;
|
|
@@ -6155,6 +6432,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6155
6432
|
setBy?: string | undefined;
|
|
6156
6433
|
reason?: string | undefined;
|
|
6157
6434
|
} | undefined;
|
|
6435
|
+
junkOnly?: {
|
|
6436
|
+
value: boolean;
|
|
6437
|
+
setAt: number;
|
|
6438
|
+
expiresAt?: number | undefined;
|
|
6439
|
+
setBy?: string | undefined;
|
|
6440
|
+
reason?: string | undefined;
|
|
6441
|
+
} | undefined;
|
|
6158
6442
|
autoArchive?: {
|
|
6159
6443
|
value: boolean;
|
|
6160
6444
|
setAt: number;
|
|
@@ -6273,6 +6557,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6273
6557
|
setBy?: string | undefined;
|
|
6274
6558
|
reason?: string | undefined;
|
|
6275
6559
|
}>>;
|
|
6560
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
6561
|
+
setAt: z.ZodNumber;
|
|
6562
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6563
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6564
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6565
|
+
value: z.ZodBoolean;
|
|
6566
|
+
}, "strip", z.ZodTypeAny, {
|
|
6567
|
+
value: boolean;
|
|
6568
|
+
setAt: number;
|
|
6569
|
+
expiresAt?: number | undefined;
|
|
6570
|
+
setBy?: string | undefined;
|
|
6571
|
+
reason?: string | undefined;
|
|
6572
|
+
}, {
|
|
6573
|
+
value: boolean;
|
|
6574
|
+
setAt: number;
|
|
6575
|
+
expiresAt?: number | undefined;
|
|
6576
|
+
setBy?: string | undefined;
|
|
6577
|
+
reason?: string | undefined;
|
|
6578
|
+
}>>;
|
|
6276
6579
|
category: z.ZodOptional<z.ZodObject<{
|
|
6277
6580
|
setAt: z.ZodNumber;
|
|
6278
6581
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -6373,6 +6676,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6373
6676
|
setBy?: string | undefined;
|
|
6374
6677
|
reason?: string | undefined;
|
|
6375
6678
|
} | undefined;
|
|
6679
|
+
junkOnly?: {
|
|
6680
|
+
value: boolean;
|
|
6681
|
+
setAt: number;
|
|
6682
|
+
expiresAt?: number | undefined;
|
|
6683
|
+
setBy?: string | undefined;
|
|
6684
|
+
reason?: string | undefined;
|
|
6685
|
+
} | undefined;
|
|
6376
6686
|
autoArchive?: {
|
|
6377
6687
|
value: boolean;
|
|
6378
6688
|
setAt: number;
|
|
@@ -6430,6 +6740,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6430
6740
|
setBy?: string | undefined;
|
|
6431
6741
|
reason?: string | undefined;
|
|
6432
6742
|
} | undefined;
|
|
6743
|
+
junkOnly?: {
|
|
6744
|
+
value: boolean;
|
|
6745
|
+
setAt: number;
|
|
6746
|
+
expiresAt?: number | undefined;
|
|
6747
|
+
setBy?: string | undefined;
|
|
6748
|
+
reason?: string | undefined;
|
|
6749
|
+
} | undefined;
|
|
6433
6750
|
autoArchive?: {
|
|
6434
6751
|
value: boolean;
|
|
6435
6752
|
setAt: number;
|
|
@@ -6494,6 +6811,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6494
6811
|
setBy?: string | undefined;
|
|
6495
6812
|
reason?: string | undefined;
|
|
6496
6813
|
} | undefined;
|
|
6814
|
+
junkOnly?: {
|
|
6815
|
+
value: boolean;
|
|
6816
|
+
setAt: number;
|
|
6817
|
+
expiresAt?: number | undefined;
|
|
6818
|
+
setBy?: string | undefined;
|
|
6819
|
+
reason?: string | undefined;
|
|
6820
|
+
} | undefined;
|
|
6497
6821
|
autoArchive?: {
|
|
6498
6822
|
value: boolean;
|
|
6499
6823
|
setAt: number;
|
|
@@ -6558,6 +6882,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6558
6882
|
setBy?: string | undefined;
|
|
6559
6883
|
reason?: string | undefined;
|
|
6560
6884
|
} | undefined;
|
|
6885
|
+
junkOnly?: {
|
|
6886
|
+
value: boolean;
|
|
6887
|
+
setAt: number;
|
|
6888
|
+
expiresAt?: number | undefined;
|
|
6889
|
+
setBy?: string | undefined;
|
|
6890
|
+
reason?: string | undefined;
|
|
6891
|
+
} | undefined;
|
|
6561
6892
|
autoArchive?: {
|
|
6562
6893
|
value: boolean;
|
|
6563
6894
|
setAt: number;
|
|
@@ -6600,7 +6931,26 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6600
6931
|
setBy?: string | undefined;
|
|
6601
6932
|
reason?: string | undefined;
|
|
6602
6933
|
}>>;
|
|
6603
|
-
blocked: z.ZodOptional<z.ZodObject<{
|
|
6934
|
+
blocked: z.ZodOptional<z.ZodObject<{
|
|
6935
|
+
setAt: z.ZodNumber;
|
|
6936
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
6937
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
6938
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
6939
|
+
value: z.ZodBoolean;
|
|
6940
|
+
}, "strip", z.ZodTypeAny, {
|
|
6941
|
+
value: boolean;
|
|
6942
|
+
setAt: number;
|
|
6943
|
+
expiresAt?: number | undefined;
|
|
6944
|
+
setBy?: string | undefined;
|
|
6945
|
+
reason?: string | undefined;
|
|
6946
|
+
}, {
|
|
6947
|
+
value: boolean;
|
|
6948
|
+
setAt: number;
|
|
6949
|
+
expiresAt?: number | undefined;
|
|
6950
|
+
setBy?: string | undefined;
|
|
6951
|
+
reason?: string | undefined;
|
|
6952
|
+
}>>;
|
|
6953
|
+
muted: z.ZodOptional<z.ZodObject<{
|
|
6604
6954
|
setAt: z.ZodNumber;
|
|
6605
6955
|
setBy: z.ZodOptional<z.ZodString>;
|
|
6606
6956
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6619,7 +6969,7 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6619
6969
|
setBy?: string | undefined;
|
|
6620
6970
|
reason?: string | undefined;
|
|
6621
6971
|
}>>;
|
|
6622
|
-
|
|
6972
|
+
vip: z.ZodOptional<z.ZodObject<{
|
|
6623
6973
|
setAt: z.ZodNumber;
|
|
6624
6974
|
setBy: z.ZodOptional<z.ZodString>;
|
|
6625
6975
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6638,7 +6988,7 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6638
6988
|
setBy?: string | undefined;
|
|
6639
6989
|
reason?: string | undefined;
|
|
6640
6990
|
}>>;
|
|
6641
|
-
|
|
6991
|
+
wellknown: z.ZodOptional<z.ZodObject<{
|
|
6642
6992
|
setAt: z.ZodNumber;
|
|
6643
6993
|
setBy: z.ZodOptional<z.ZodString>;
|
|
6644
6994
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6657,7 +7007,7 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6657
7007
|
setBy?: string | undefined;
|
|
6658
7008
|
reason?: string | undefined;
|
|
6659
7009
|
}>>;
|
|
6660
|
-
|
|
7010
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
6661
7011
|
setAt: z.ZodNumber;
|
|
6662
7012
|
setBy: z.ZodOptional<z.ZodString>;
|
|
6663
7013
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6776,6 +7126,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6776
7126
|
setBy?: string | undefined;
|
|
6777
7127
|
reason?: string | undefined;
|
|
6778
7128
|
} | undefined;
|
|
7129
|
+
junkOnly?: {
|
|
7130
|
+
value: boolean;
|
|
7131
|
+
setAt: number;
|
|
7132
|
+
expiresAt?: number | undefined;
|
|
7133
|
+
setBy?: string | undefined;
|
|
7134
|
+
reason?: string | undefined;
|
|
7135
|
+
} | undefined;
|
|
6779
7136
|
autoArchive?: {
|
|
6780
7137
|
value: boolean;
|
|
6781
7138
|
setAt: number;
|
|
@@ -6833,6 +7190,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6833
7190
|
setBy?: string | undefined;
|
|
6834
7191
|
reason?: string | undefined;
|
|
6835
7192
|
} | undefined;
|
|
7193
|
+
junkOnly?: {
|
|
7194
|
+
value: boolean;
|
|
7195
|
+
setAt: number;
|
|
7196
|
+
expiresAt?: number | undefined;
|
|
7197
|
+
setBy?: string | undefined;
|
|
7198
|
+
reason?: string | undefined;
|
|
7199
|
+
} | undefined;
|
|
6836
7200
|
autoArchive?: {
|
|
6837
7201
|
value: boolean;
|
|
6838
7202
|
setAt: number;
|
|
@@ -6897,6 +7261,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6897
7261
|
setBy?: string | undefined;
|
|
6898
7262
|
reason?: string | undefined;
|
|
6899
7263
|
} | undefined;
|
|
7264
|
+
junkOnly?: {
|
|
7265
|
+
value: boolean;
|
|
7266
|
+
setAt: number;
|
|
7267
|
+
expiresAt?: number | undefined;
|
|
7268
|
+
setBy?: string | undefined;
|
|
7269
|
+
reason?: string | undefined;
|
|
7270
|
+
} | undefined;
|
|
6900
7271
|
autoArchive?: {
|
|
6901
7272
|
value: boolean;
|
|
6902
7273
|
setAt: number;
|
|
@@ -6961,6 +7332,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
6961
7332
|
setBy?: string | undefined;
|
|
6962
7333
|
reason?: string | undefined;
|
|
6963
7334
|
} | undefined;
|
|
7335
|
+
junkOnly?: {
|
|
7336
|
+
value: boolean;
|
|
7337
|
+
setAt: number;
|
|
7338
|
+
expiresAt?: number | undefined;
|
|
7339
|
+
setBy?: string | undefined;
|
|
7340
|
+
reason?: string | undefined;
|
|
7341
|
+
} | undefined;
|
|
6964
7342
|
autoArchive?: {
|
|
6965
7343
|
value: boolean;
|
|
6966
7344
|
setAt: number;
|
|
@@ -7079,6 +7457,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7079
7457
|
setBy?: string | undefined;
|
|
7080
7458
|
reason?: string | undefined;
|
|
7081
7459
|
}>>;
|
|
7460
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
7461
|
+
setAt: z.ZodNumber;
|
|
7462
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
7463
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
7464
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
7465
|
+
value: z.ZodBoolean;
|
|
7466
|
+
}, "strip", z.ZodTypeAny, {
|
|
7467
|
+
value: boolean;
|
|
7468
|
+
setAt: number;
|
|
7469
|
+
expiresAt?: number | undefined;
|
|
7470
|
+
setBy?: string | undefined;
|
|
7471
|
+
reason?: string | undefined;
|
|
7472
|
+
}, {
|
|
7473
|
+
value: boolean;
|
|
7474
|
+
setAt: number;
|
|
7475
|
+
expiresAt?: number | undefined;
|
|
7476
|
+
setBy?: string | undefined;
|
|
7477
|
+
reason?: string | undefined;
|
|
7478
|
+
}>>;
|
|
7082
7479
|
category: z.ZodOptional<z.ZodObject<{
|
|
7083
7480
|
setAt: z.ZodNumber;
|
|
7084
7481
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7179,6 +7576,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7179
7576
|
setBy?: string | undefined;
|
|
7180
7577
|
reason?: string | undefined;
|
|
7181
7578
|
} | undefined;
|
|
7579
|
+
junkOnly?: {
|
|
7580
|
+
value: boolean;
|
|
7581
|
+
setAt: number;
|
|
7582
|
+
expiresAt?: number | undefined;
|
|
7583
|
+
setBy?: string | undefined;
|
|
7584
|
+
reason?: string | undefined;
|
|
7585
|
+
} | undefined;
|
|
7182
7586
|
autoArchive?: {
|
|
7183
7587
|
value: boolean;
|
|
7184
7588
|
setAt: number;
|
|
@@ -7236,6 +7640,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7236
7640
|
setBy?: string | undefined;
|
|
7237
7641
|
reason?: string | undefined;
|
|
7238
7642
|
} | undefined;
|
|
7643
|
+
junkOnly?: {
|
|
7644
|
+
value: boolean;
|
|
7645
|
+
setAt: number;
|
|
7646
|
+
expiresAt?: number | undefined;
|
|
7647
|
+
setBy?: string | undefined;
|
|
7648
|
+
reason?: string | undefined;
|
|
7649
|
+
} | undefined;
|
|
7239
7650
|
autoArchive?: {
|
|
7240
7651
|
value: boolean;
|
|
7241
7652
|
setAt: number;
|
|
@@ -7300,6 +7711,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7300
7711
|
setBy?: string | undefined;
|
|
7301
7712
|
reason?: string | undefined;
|
|
7302
7713
|
} | undefined;
|
|
7714
|
+
junkOnly?: {
|
|
7715
|
+
value: boolean;
|
|
7716
|
+
setAt: number;
|
|
7717
|
+
expiresAt?: number | undefined;
|
|
7718
|
+
setBy?: string | undefined;
|
|
7719
|
+
reason?: string | undefined;
|
|
7720
|
+
} | undefined;
|
|
7303
7721
|
autoArchive?: {
|
|
7304
7722
|
value: boolean;
|
|
7305
7723
|
setAt: number;
|
|
@@ -7364,6 +7782,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7364
7782
|
setBy?: string | undefined;
|
|
7365
7783
|
reason?: string | undefined;
|
|
7366
7784
|
} | undefined;
|
|
7785
|
+
junkOnly?: {
|
|
7786
|
+
value: boolean;
|
|
7787
|
+
setAt: number;
|
|
7788
|
+
expiresAt?: number | undefined;
|
|
7789
|
+
setBy?: string | undefined;
|
|
7790
|
+
reason?: string | undefined;
|
|
7791
|
+
} | undefined;
|
|
7367
7792
|
autoArchive?: {
|
|
7368
7793
|
value: boolean;
|
|
7369
7794
|
setAt: number;
|
|
@@ -7482,6 +7907,25 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7482
7907
|
setBy?: string | undefined;
|
|
7483
7908
|
reason?: string | undefined;
|
|
7484
7909
|
}>>;
|
|
7910
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
7911
|
+
setAt: z.ZodNumber;
|
|
7912
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
7913
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
7914
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
7915
|
+
value: z.ZodBoolean;
|
|
7916
|
+
}, "strip", z.ZodTypeAny, {
|
|
7917
|
+
value: boolean;
|
|
7918
|
+
setAt: number;
|
|
7919
|
+
expiresAt?: number | undefined;
|
|
7920
|
+
setBy?: string | undefined;
|
|
7921
|
+
reason?: string | undefined;
|
|
7922
|
+
}, {
|
|
7923
|
+
value: boolean;
|
|
7924
|
+
setAt: number;
|
|
7925
|
+
expiresAt?: number | undefined;
|
|
7926
|
+
setBy?: string | undefined;
|
|
7927
|
+
reason?: string | undefined;
|
|
7928
|
+
}>>;
|
|
7485
7929
|
category: z.ZodOptional<z.ZodObject<{
|
|
7486
7930
|
setAt: z.ZodNumber;
|
|
7487
7931
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -7582,6 +8026,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7582
8026
|
setBy?: string | undefined;
|
|
7583
8027
|
reason?: string | undefined;
|
|
7584
8028
|
} | undefined;
|
|
8029
|
+
junkOnly?: {
|
|
8030
|
+
value: boolean;
|
|
8031
|
+
setAt: number;
|
|
8032
|
+
expiresAt?: number | undefined;
|
|
8033
|
+
setBy?: string | undefined;
|
|
8034
|
+
reason?: string | undefined;
|
|
8035
|
+
} | undefined;
|
|
7585
8036
|
autoArchive?: {
|
|
7586
8037
|
value: boolean;
|
|
7587
8038
|
setAt: number;
|
|
@@ -7639,6 +8090,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7639
8090
|
setBy?: string | undefined;
|
|
7640
8091
|
reason?: string | undefined;
|
|
7641
8092
|
} | undefined;
|
|
8093
|
+
junkOnly?: {
|
|
8094
|
+
value: boolean;
|
|
8095
|
+
setAt: number;
|
|
8096
|
+
expiresAt?: number | undefined;
|
|
8097
|
+
setBy?: string | undefined;
|
|
8098
|
+
reason?: string | undefined;
|
|
8099
|
+
} | undefined;
|
|
7642
8100
|
autoArchive?: {
|
|
7643
8101
|
value: boolean;
|
|
7644
8102
|
setAt: number;
|
|
@@ -7703,6 +8161,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7703
8161
|
setBy?: string | undefined;
|
|
7704
8162
|
reason?: string | undefined;
|
|
7705
8163
|
} | undefined;
|
|
8164
|
+
junkOnly?: {
|
|
8165
|
+
value: boolean;
|
|
8166
|
+
setAt: number;
|
|
8167
|
+
expiresAt?: number | undefined;
|
|
8168
|
+
setBy?: string | undefined;
|
|
8169
|
+
reason?: string | undefined;
|
|
8170
|
+
} | undefined;
|
|
7706
8171
|
autoArchive?: {
|
|
7707
8172
|
value: boolean;
|
|
7708
8173
|
setAt: number;
|
|
@@ -7767,6 +8232,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7767
8232
|
setBy?: string | undefined;
|
|
7768
8233
|
reason?: string | undefined;
|
|
7769
8234
|
} | undefined;
|
|
8235
|
+
junkOnly?: {
|
|
8236
|
+
value: boolean;
|
|
8237
|
+
setAt: number;
|
|
8238
|
+
expiresAt?: number | undefined;
|
|
8239
|
+
setBy?: string | undefined;
|
|
8240
|
+
reason?: string | undefined;
|
|
8241
|
+
} | undefined;
|
|
7770
8242
|
autoArchive?: {
|
|
7771
8243
|
value: boolean;
|
|
7772
8244
|
setAt: number;
|
|
@@ -7835,6 +8307,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7835
8307
|
setBy?: string | undefined;
|
|
7836
8308
|
reason?: string | undefined;
|
|
7837
8309
|
} | undefined;
|
|
8310
|
+
junkOnly?: {
|
|
8311
|
+
value: boolean;
|
|
8312
|
+
setAt: number;
|
|
8313
|
+
expiresAt?: number | undefined;
|
|
8314
|
+
setBy?: string | undefined;
|
|
8315
|
+
reason?: string | undefined;
|
|
8316
|
+
} | undefined;
|
|
7838
8317
|
autoArchive?: {
|
|
7839
8318
|
value: boolean;
|
|
7840
8319
|
setAt: number;
|
|
@@ -7900,6 +8379,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7900
8379
|
setBy?: string | undefined;
|
|
7901
8380
|
reason?: string | undefined;
|
|
7902
8381
|
} | undefined;
|
|
8382
|
+
junkOnly?: {
|
|
8383
|
+
value: boolean;
|
|
8384
|
+
setAt: number;
|
|
8385
|
+
expiresAt?: number | undefined;
|
|
8386
|
+
setBy?: string | undefined;
|
|
8387
|
+
reason?: string | undefined;
|
|
8388
|
+
} | undefined;
|
|
7903
8389
|
autoArchive?: {
|
|
7904
8390
|
value: boolean;
|
|
7905
8391
|
setAt: number;
|
|
@@ -7965,6 +8451,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
7965
8451
|
setBy?: string | undefined;
|
|
7966
8452
|
reason?: string | undefined;
|
|
7967
8453
|
} | undefined;
|
|
8454
|
+
junkOnly?: {
|
|
8455
|
+
value: boolean;
|
|
8456
|
+
setAt: number;
|
|
8457
|
+
expiresAt?: number | undefined;
|
|
8458
|
+
setBy?: string | undefined;
|
|
8459
|
+
reason?: string | undefined;
|
|
8460
|
+
} | undefined;
|
|
7968
8461
|
autoArchive?: {
|
|
7969
8462
|
value: boolean;
|
|
7970
8463
|
setAt: number;
|
|
@@ -8030,6 +8523,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8030
8523
|
setBy?: string | undefined;
|
|
8031
8524
|
reason?: string | undefined;
|
|
8032
8525
|
} | undefined;
|
|
8526
|
+
junkOnly?: {
|
|
8527
|
+
value: boolean;
|
|
8528
|
+
setAt: number;
|
|
8529
|
+
expiresAt?: number | undefined;
|
|
8530
|
+
setBy?: string | undefined;
|
|
8531
|
+
reason?: string | undefined;
|
|
8532
|
+
} | undefined;
|
|
8033
8533
|
autoArchive?: {
|
|
8034
8534
|
value: boolean;
|
|
8035
8535
|
setAt: number;
|
|
@@ -8099,6 +8599,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8099
8599
|
setBy?: string | undefined;
|
|
8100
8600
|
reason?: string | undefined;
|
|
8101
8601
|
} | undefined;
|
|
8602
|
+
junkOnly?: {
|
|
8603
|
+
value: boolean;
|
|
8604
|
+
setAt: number;
|
|
8605
|
+
expiresAt?: number | undefined;
|
|
8606
|
+
setBy?: string | undefined;
|
|
8607
|
+
reason?: string | undefined;
|
|
8608
|
+
} | undefined;
|
|
8102
8609
|
autoArchive?: {
|
|
8103
8610
|
value: boolean;
|
|
8104
8611
|
setAt: number;
|
|
@@ -8167,6 +8674,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8167
8674
|
setBy?: string | undefined;
|
|
8168
8675
|
reason?: string | undefined;
|
|
8169
8676
|
} | undefined;
|
|
8677
|
+
junkOnly?: {
|
|
8678
|
+
value: boolean;
|
|
8679
|
+
setAt: number;
|
|
8680
|
+
expiresAt?: number | undefined;
|
|
8681
|
+
setBy?: string | undefined;
|
|
8682
|
+
reason?: string | undefined;
|
|
8683
|
+
} | undefined;
|
|
8170
8684
|
autoArchive?: {
|
|
8171
8685
|
value: boolean;
|
|
8172
8686
|
setAt: number;
|
|
@@ -8232,6 +8746,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8232
8746
|
setBy?: string | undefined;
|
|
8233
8747
|
reason?: string | undefined;
|
|
8234
8748
|
} | undefined;
|
|
8749
|
+
junkOnly?: {
|
|
8750
|
+
value: boolean;
|
|
8751
|
+
setAt: number;
|
|
8752
|
+
expiresAt?: number | undefined;
|
|
8753
|
+
setBy?: string | undefined;
|
|
8754
|
+
reason?: string | undefined;
|
|
8755
|
+
} | undefined;
|
|
8235
8756
|
autoArchive?: {
|
|
8236
8757
|
value: boolean;
|
|
8237
8758
|
setAt: number;
|
|
@@ -8297,6 +8818,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8297
8818
|
setBy?: string | undefined;
|
|
8298
8819
|
reason?: string | undefined;
|
|
8299
8820
|
} | undefined;
|
|
8821
|
+
junkOnly?: {
|
|
8822
|
+
value: boolean;
|
|
8823
|
+
setAt: number;
|
|
8824
|
+
expiresAt?: number | undefined;
|
|
8825
|
+
setBy?: string | undefined;
|
|
8826
|
+
reason?: string | undefined;
|
|
8827
|
+
} | undefined;
|
|
8300
8828
|
autoArchive?: {
|
|
8301
8829
|
value: boolean;
|
|
8302
8830
|
setAt: number;
|
|
@@ -8362,6 +8890,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8362
8890
|
setBy?: string | undefined;
|
|
8363
8891
|
reason?: string | undefined;
|
|
8364
8892
|
} | undefined;
|
|
8893
|
+
junkOnly?: {
|
|
8894
|
+
value: boolean;
|
|
8895
|
+
setAt: number;
|
|
8896
|
+
expiresAt?: number | undefined;
|
|
8897
|
+
setBy?: string | undefined;
|
|
8898
|
+
reason?: string | undefined;
|
|
8899
|
+
} | undefined;
|
|
8365
8900
|
autoArchive?: {
|
|
8366
8901
|
value: boolean;
|
|
8367
8902
|
setAt: number;
|
|
@@ -8431,6 +8966,13 @@ export declare const EnvelopeResponseSchema: z.ZodObject<{
|
|
|
8431
8966
|
setBy?: string | undefined;
|
|
8432
8967
|
reason?: string | undefined;
|
|
8433
8968
|
} | undefined;
|
|
8969
|
+
junkOnly?: {
|
|
8970
|
+
value: boolean;
|
|
8971
|
+
setAt: number;
|
|
8972
|
+
expiresAt?: number | undefined;
|
|
8973
|
+
setBy?: string | undefined;
|
|
8974
|
+
reason?: string | undefined;
|
|
8975
|
+
} | undefined;
|
|
8434
8976
|
autoArchive?: {
|
|
8435
8977
|
value: boolean;
|
|
8436
8978
|
setAt: number;
|
|
@@ -8746,6 +9288,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
8746
9288
|
setBy?: string | undefined;
|
|
8747
9289
|
reason?: string | undefined;
|
|
8748
9290
|
}>>;
|
|
9291
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
9292
|
+
setAt: z.ZodNumber;
|
|
9293
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
9294
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
9295
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
9296
|
+
value: z.ZodBoolean;
|
|
9297
|
+
}, "strip", z.ZodTypeAny, {
|
|
9298
|
+
value: boolean;
|
|
9299
|
+
setAt: number;
|
|
9300
|
+
expiresAt?: number | undefined;
|
|
9301
|
+
setBy?: string | undefined;
|
|
9302
|
+
reason?: string | undefined;
|
|
9303
|
+
}, {
|
|
9304
|
+
value: boolean;
|
|
9305
|
+
setAt: number;
|
|
9306
|
+
expiresAt?: number | undefined;
|
|
9307
|
+
setBy?: string | undefined;
|
|
9308
|
+
reason?: string | undefined;
|
|
9309
|
+
}>>;
|
|
8749
9310
|
category: z.ZodOptional<z.ZodObject<{
|
|
8750
9311
|
setAt: z.ZodNumber;
|
|
8751
9312
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -8846,6 +9407,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
8846
9407
|
setBy?: string | undefined;
|
|
8847
9408
|
reason?: string | undefined;
|
|
8848
9409
|
} | undefined;
|
|
9410
|
+
junkOnly?: {
|
|
9411
|
+
value: boolean;
|
|
9412
|
+
setAt: number;
|
|
9413
|
+
expiresAt?: number | undefined;
|
|
9414
|
+
setBy?: string | undefined;
|
|
9415
|
+
reason?: string | undefined;
|
|
9416
|
+
} | undefined;
|
|
8849
9417
|
autoArchive?: {
|
|
8850
9418
|
value: boolean;
|
|
8851
9419
|
setAt: number;
|
|
@@ -8903,6 +9471,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
8903
9471
|
setBy?: string | undefined;
|
|
8904
9472
|
reason?: string | undefined;
|
|
8905
9473
|
} | undefined;
|
|
9474
|
+
junkOnly?: {
|
|
9475
|
+
value: boolean;
|
|
9476
|
+
setAt: number;
|
|
9477
|
+
expiresAt?: number | undefined;
|
|
9478
|
+
setBy?: string | undefined;
|
|
9479
|
+
reason?: string | undefined;
|
|
9480
|
+
} | undefined;
|
|
8906
9481
|
autoArchive?: {
|
|
8907
9482
|
value: boolean;
|
|
8908
9483
|
setAt: number;
|
|
@@ -8967,6 +9542,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
8967
9542
|
setBy?: string | undefined;
|
|
8968
9543
|
reason?: string | undefined;
|
|
8969
9544
|
} | undefined;
|
|
9545
|
+
junkOnly?: {
|
|
9546
|
+
value: boolean;
|
|
9547
|
+
setAt: number;
|
|
9548
|
+
expiresAt?: number | undefined;
|
|
9549
|
+
setBy?: string | undefined;
|
|
9550
|
+
reason?: string | undefined;
|
|
9551
|
+
} | undefined;
|
|
8970
9552
|
autoArchive?: {
|
|
8971
9553
|
value: boolean;
|
|
8972
9554
|
setAt: number;
|
|
@@ -9031,6 +9613,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9031
9613
|
setBy?: string | undefined;
|
|
9032
9614
|
reason?: string | undefined;
|
|
9033
9615
|
} | undefined;
|
|
9616
|
+
junkOnly?: {
|
|
9617
|
+
value: boolean;
|
|
9618
|
+
setAt: number;
|
|
9619
|
+
expiresAt?: number | undefined;
|
|
9620
|
+
setBy?: string | undefined;
|
|
9621
|
+
reason?: string | undefined;
|
|
9622
|
+
} | undefined;
|
|
9034
9623
|
autoArchive?: {
|
|
9035
9624
|
value: boolean;
|
|
9036
9625
|
setAt: number;
|
|
@@ -9149,6 +9738,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9149
9738
|
setBy?: string | undefined;
|
|
9150
9739
|
reason?: string | undefined;
|
|
9151
9740
|
}>>;
|
|
9741
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
9742
|
+
setAt: z.ZodNumber;
|
|
9743
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
9744
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
9745
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
9746
|
+
value: z.ZodBoolean;
|
|
9747
|
+
}, "strip", z.ZodTypeAny, {
|
|
9748
|
+
value: boolean;
|
|
9749
|
+
setAt: number;
|
|
9750
|
+
expiresAt?: number | undefined;
|
|
9751
|
+
setBy?: string | undefined;
|
|
9752
|
+
reason?: string | undefined;
|
|
9753
|
+
}, {
|
|
9754
|
+
value: boolean;
|
|
9755
|
+
setAt: number;
|
|
9756
|
+
expiresAt?: number | undefined;
|
|
9757
|
+
setBy?: string | undefined;
|
|
9758
|
+
reason?: string | undefined;
|
|
9759
|
+
}>>;
|
|
9152
9760
|
category: z.ZodOptional<z.ZodObject<{
|
|
9153
9761
|
setAt: z.ZodNumber;
|
|
9154
9762
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -9249,6 +9857,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9249
9857
|
setBy?: string | undefined;
|
|
9250
9858
|
reason?: string | undefined;
|
|
9251
9859
|
} | undefined;
|
|
9860
|
+
junkOnly?: {
|
|
9861
|
+
value: boolean;
|
|
9862
|
+
setAt: number;
|
|
9863
|
+
expiresAt?: number | undefined;
|
|
9864
|
+
setBy?: string | undefined;
|
|
9865
|
+
reason?: string | undefined;
|
|
9866
|
+
} | undefined;
|
|
9252
9867
|
autoArchive?: {
|
|
9253
9868
|
value: boolean;
|
|
9254
9869
|
setAt: number;
|
|
@@ -9306,6 +9921,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9306
9921
|
setBy?: string | undefined;
|
|
9307
9922
|
reason?: string | undefined;
|
|
9308
9923
|
} | undefined;
|
|
9924
|
+
junkOnly?: {
|
|
9925
|
+
value: boolean;
|
|
9926
|
+
setAt: number;
|
|
9927
|
+
expiresAt?: number | undefined;
|
|
9928
|
+
setBy?: string | undefined;
|
|
9929
|
+
reason?: string | undefined;
|
|
9930
|
+
} | undefined;
|
|
9309
9931
|
autoArchive?: {
|
|
9310
9932
|
value: boolean;
|
|
9311
9933
|
setAt: number;
|
|
@@ -9363,7 +9985,14 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9363
9985
|
setBy?: string | undefined;
|
|
9364
9986
|
reason?: string | undefined;
|
|
9365
9987
|
} | undefined;
|
|
9366
|
-
trusted?: {
|
|
9988
|
+
trusted?: {
|
|
9989
|
+
value: boolean;
|
|
9990
|
+
setAt: number;
|
|
9991
|
+
expiresAt?: number | undefined;
|
|
9992
|
+
setBy?: string | undefined;
|
|
9993
|
+
reason?: string | undefined;
|
|
9994
|
+
} | undefined;
|
|
9995
|
+
junkOnly?: {
|
|
9367
9996
|
value: boolean;
|
|
9368
9997
|
setAt: number;
|
|
9369
9998
|
expiresAt?: number | undefined;
|
|
@@ -9434,6 +10063,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9434
10063
|
setBy?: string | undefined;
|
|
9435
10064
|
reason?: string | undefined;
|
|
9436
10065
|
} | undefined;
|
|
10066
|
+
junkOnly?: {
|
|
10067
|
+
value: boolean;
|
|
10068
|
+
setAt: number;
|
|
10069
|
+
expiresAt?: number | undefined;
|
|
10070
|
+
setBy?: string | undefined;
|
|
10071
|
+
reason?: string | undefined;
|
|
10072
|
+
} | undefined;
|
|
9437
10073
|
autoArchive?: {
|
|
9438
10074
|
value: boolean;
|
|
9439
10075
|
setAt: number;
|
|
@@ -9552,6 +10188,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9552
10188
|
setBy?: string | undefined;
|
|
9553
10189
|
reason?: string | undefined;
|
|
9554
10190
|
}>>;
|
|
10191
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
10192
|
+
setAt: z.ZodNumber;
|
|
10193
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
10194
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
10195
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
10196
|
+
value: z.ZodBoolean;
|
|
10197
|
+
}, "strip", z.ZodTypeAny, {
|
|
10198
|
+
value: boolean;
|
|
10199
|
+
setAt: number;
|
|
10200
|
+
expiresAt?: number | undefined;
|
|
10201
|
+
setBy?: string | undefined;
|
|
10202
|
+
reason?: string | undefined;
|
|
10203
|
+
}, {
|
|
10204
|
+
value: boolean;
|
|
10205
|
+
setAt: number;
|
|
10206
|
+
expiresAt?: number | undefined;
|
|
10207
|
+
setBy?: string | undefined;
|
|
10208
|
+
reason?: string | undefined;
|
|
10209
|
+
}>>;
|
|
9555
10210
|
category: z.ZodOptional<z.ZodObject<{
|
|
9556
10211
|
setAt: z.ZodNumber;
|
|
9557
10212
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -9652,6 +10307,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9652
10307
|
setBy?: string | undefined;
|
|
9653
10308
|
reason?: string | undefined;
|
|
9654
10309
|
} | undefined;
|
|
10310
|
+
junkOnly?: {
|
|
10311
|
+
value: boolean;
|
|
10312
|
+
setAt: number;
|
|
10313
|
+
expiresAt?: number | undefined;
|
|
10314
|
+
setBy?: string | undefined;
|
|
10315
|
+
reason?: string | undefined;
|
|
10316
|
+
} | undefined;
|
|
9655
10317
|
autoArchive?: {
|
|
9656
10318
|
value: boolean;
|
|
9657
10319
|
setAt: number;
|
|
@@ -9709,6 +10371,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9709
10371
|
setBy?: string | undefined;
|
|
9710
10372
|
reason?: string | undefined;
|
|
9711
10373
|
} | undefined;
|
|
10374
|
+
junkOnly?: {
|
|
10375
|
+
value: boolean;
|
|
10376
|
+
setAt: number;
|
|
10377
|
+
expiresAt?: number | undefined;
|
|
10378
|
+
setBy?: string | undefined;
|
|
10379
|
+
reason?: string | undefined;
|
|
10380
|
+
} | undefined;
|
|
9712
10381
|
autoArchive?: {
|
|
9713
10382
|
value: boolean;
|
|
9714
10383
|
setAt: number;
|
|
@@ -9773,6 +10442,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9773
10442
|
setBy?: string | undefined;
|
|
9774
10443
|
reason?: string | undefined;
|
|
9775
10444
|
} | undefined;
|
|
10445
|
+
junkOnly?: {
|
|
10446
|
+
value: boolean;
|
|
10447
|
+
setAt: number;
|
|
10448
|
+
expiresAt?: number | undefined;
|
|
10449
|
+
setBy?: string | undefined;
|
|
10450
|
+
reason?: string | undefined;
|
|
10451
|
+
} | undefined;
|
|
9776
10452
|
autoArchive?: {
|
|
9777
10453
|
value: boolean;
|
|
9778
10454
|
setAt: number;
|
|
@@ -9837,6 +10513,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9837
10513
|
setBy?: string | undefined;
|
|
9838
10514
|
reason?: string | undefined;
|
|
9839
10515
|
} | undefined;
|
|
10516
|
+
junkOnly?: {
|
|
10517
|
+
value: boolean;
|
|
10518
|
+
setAt: number;
|
|
10519
|
+
expiresAt?: number | undefined;
|
|
10520
|
+
setBy?: string | undefined;
|
|
10521
|
+
reason?: string | undefined;
|
|
10522
|
+
} | undefined;
|
|
9840
10523
|
autoArchive?: {
|
|
9841
10524
|
value: boolean;
|
|
9842
10525
|
setAt: number;
|
|
@@ -9955,6 +10638,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
9955
10638
|
setBy?: string | undefined;
|
|
9956
10639
|
reason?: string | undefined;
|
|
9957
10640
|
}>>;
|
|
10641
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
10642
|
+
setAt: z.ZodNumber;
|
|
10643
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
10644
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
10645
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
10646
|
+
value: z.ZodBoolean;
|
|
10647
|
+
}, "strip", z.ZodTypeAny, {
|
|
10648
|
+
value: boolean;
|
|
10649
|
+
setAt: number;
|
|
10650
|
+
expiresAt?: number | undefined;
|
|
10651
|
+
setBy?: string | undefined;
|
|
10652
|
+
reason?: string | undefined;
|
|
10653
|
+
}, {
|
|
10654
|
+
value: boolean;
|
|
10655
|
+
setAt: number;
|
|
10656
|
+
expiresAt?: number | undefined;
|
|
10657
|
+
setBy?: string | undefined;
|
|
10658
|
+
reason?: string | undefined;
|
|
10659
|
+
}>>;
|
|
9958
10660
|
category: z.ZodOptional<z.ZodObject<{
|
|
9959
10661
|
setAt: z.ZodNumber;
|
|
9960
10662
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10055,6 +10757,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10055
10757
|
setBy?: string | undefined;
|
|
10056
10758
|
reason?: string | undefined;
|
|
10057
10759
|
} | undefined;
|
|
10760
|
+
junkOnly?: {
|
|
10761
|
+
value: boolean;
|
|
10762
|
+
setAt: number;
|
|
10763
|
+
expiresAt?: number | undefined;
|
|
10764
|
+
setBy?: string | undefined;
|
|
10765
|
+
reason?: string | undefined;
|
|
10766
|
+
} | undefined;
|
|
10058
10767
|
autoArchive?: {
|
|
10059
10768
|
value: boolean;
|
|
10060
10769
|
setAt: number;
|
|
@@ -10112,6 +10821,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10112
10821
|
setBy?: string | undefined;
|
|
10113
10822
|
reason?: string | undefined;
|
|
10114
10823
|
} | undefined;
|
|
10824
|
+
junkOnly?: {
|
|
10825
|
+
value: boolean;
|
|
10826
|
+
setAt: number;
|
|
10827
|
+
expiresAt?: number | undefined;
|
|
10828
|
+
setBy?: string | undefined;
|
|
10829
|
+
reason?: string | undefined;
|
|
10830
|
+
} | undefined;
|
|
10115
10831
|
autoArchive?: {
|
|
10116
10832
|
value: boolean;
|
|
10117
10833
|
setAt: number;
|
|
@@ -10176,6 +10892,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10176
10892
|
setBy?: string | undefined;
|
|
10177
10893
|
reason?: string | undefined;
|
|
10178
10894
|
} | undefined;
|
|
10895
|
+
junkOnly?: {
|
|
10896
|
+
value: boolean;
|
|
10897
|
+
setAt: number;
|
|
10898
|
+
expiresAt?: number | undefined;
|
|
10899
|
+
setBy?: string | undefined;
|
|
10900
|
+
reason?: string | undefined;
|
|
10901
|
+
} | undefined;
|
|
10179
10902
|
autoArchive?: {
|
|
10180
10903
|
value: boolean;
|
|
10181
10904
|
setAt: number;
|
|
@@ -10240,6 +10963,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10240
10963
|
setBy?: string | undefined;
|
|
10241
10964
|
reason?: string | undefined;
|
|
10242
10965
|
} | undefined;
|
|
10966
|
+
junkOnly?: {
|
|
10967
|
+
value: boolean;
|
|
10968
|
+
setAt: number;
|
|
10969
|
+
expiresAt?: number | undefined;
|
|
10970
|
+
setBy?: string | undefined;
|
|
10971
|
+
reason?: string | undefined;
|
|
10972
|
+
} | undefined;
|
|
10243
10973
|
autoArchive?: {
|
|
10244
10974
|
value: boolean;
|
|
10245
10975
|
setAt: number;
|
|
@@ -10358,6 +11088,25 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10358
11088
|
setBy?: string | undefined;
|
|
10359
11089
|
reason?: string | undefined;
|
|
10360
11090
|
}>>;
|
|
11091
|
+
junkOnly: z.ZodOptional<z.ZodObject<{
|
|
11092
|
+
setAt: z.ZodNumber;
|
|
11093
|
+
setBy: z.ZodOptional<z.ZodString>;
|
|
11094
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
11095
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
11096
|
+
value: z.ZodBoolean;
|
|
11097
|
+
}, "strip", z.ZodTypeAny, {
|
|
11098
|
+
value: boolean;
|
|
11099
|
+
setAt: number;
|
|
11100
|
+
expiresAt?: number | undefined;
|
|
11101
|
+
setBy?: string | undefined;
|
|
11102
|
+
reason?: string | undefined;
|
|
11103
|
+
}, {
|
|
11104
|
+
value: boolean;
|
|
11105
|
+
setAt: number;
|
|
11106
|
+
expiresAt?: number | undefined;
|
|
11107
|
+
setBy?: string | undefined;
|
|
11108
|
+
reason?: string | undefined;
|
|
11109
|
+
}>>;
|
|
10361
11110
|
category: z.ZodOptional<z.ZodObject<{
|
|
10362
11111
|
setAt: z.ZodNumber;
|
|
10363
11112
|
setBy: z.ZodOptional<z.ZodString>;
|
|
@@ -10458,6 +11207,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10458
11207
|
setBy?: string | undefined;
|
|
10459
11208
|
reason?: string | undefined;
|
|
10460
11209
|
} | undefined;
|
|
11210
|
+
junkOnly?: {
|
|
11211
|
+
value: boolean;
|
|
11212
|
+
setAt: number;
|
|
11213
|
+
expiresAt?: number | undefined;
|
|
11214
|
+
setBy?: string | undefined;
|
|
11215
|
+
reason?: string | undefined;
|
|
11216
|
+
} | undefined;
|
|
10461
11217
|
autoArchive?: {
|
|
10462
11218
|
value: boolean;
|
|
10463
11219
|
setAt: number;
|
|
@@ -10515,6 +11271,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10515
11271
|
setBy?: string | undefined;
|
|
10516
11272
|
reason?: string | undefined;
|
|
10517
11273
|
} | undefined;
|
|
11274
|
+
junkOnly?: {
|
|
11275
|
+
value: boolean;
|
|
11276
|
+
setAt: number;
|
|
11277
|
+
expiresAt?: number | undefined;
|
|
11278
|
+
setBy?: string | undefined;
|
|
11279
|
+
reason?: string | undefined;
|
|
11280
|
+
} | undefined;
|
|
10518
11281
|
autoArchive?: {
|
|
10519
11282
|
value: boolean;
|
|
10520
11283
|
setAt: number;
|
|
@@ -10579,6 +11342,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10579
11342
|
setBy?: string | undefined;
|
|
10580
11343
|
reason?: string | undefined;
|
|
10581
11344
|
} | undefined;
|
|
11345
|
+
junkOnly?: {
|
|
11346
|
+
value: boolean;
|
|
11347
|
+
setAt: number;
|
|
11348
|
+
expiresAt?: number | undefined;
|
|
11349
|
+
setBy?: string | undefined;
|
|
11350
|
+
reason?: string | undefined;
|
|
11351
|
+
} | undefined;
|
|
10582
11352
|
autoArchive?: {
|
|
10583
11353
|
value: boolean;
|
|
10584
11354
|
setAt: number;
|
|
@@ -10643,6 +11413,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10643
11413
|
setBy?: string | undefined;
|
|
10644
11414
|
reason?: string | undefined;
|
|
10645
11415
|
} | undefined;
|
|
11416
|
+
junkOnly?: {
|
|
11417
|
+
value: boolean;
|
|
11418
|
+
setAt: number;
|
|
11419
|
+
expiresAt?: number | undefined;
|
|
11420
|
+
setBy?: string | undefined;
|
|
11421
|
+
reason?: string | undefined;
|
|
11422
|
+
} | undefined;
|
|
10646
11423
|
autoArchive?: {
|
|
10647
11424
|
value: boolean;
|
|
10648
11425
|
setAt: number;
|
|
@@ -10711,6 +11488,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10711
11488
|
setBy?: string | undefined;
|
|
10712
11489
|
reason?: string | undefined;
|
|
10713
11490
|
} | undefined;
|
|
11491
|
+
junkOnly?: {
|
|
11492
|
+
value: boolean;
|
|
11493
|
+
setAt: number;
|
|
11494
|
+
expiresAt?: number | undefined;
|
|
11495
|
+
setBy?: string | undefined;
|
|
11496
|
+
reason?: string | undefined;
|
|
11497
|
+
} | undefined;
|
|
10714
11498
|
autoArchive?: {
|
|
10715
11499
|
value: boolean;
|
|
10716
11500
|
setAt: number;
|
|
@@ -10776,6 +11560,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10776
11560
|
setBy?: string | undefined;
|
|
10777
11561
|
reason?: string | undefined;
|
|
10778
11562
|
} | undefined;
|
|
11563
|
+
junkOnly?: {
|
|
11564
|
+
value: boolean;
|
|
11565
|
+
setAt: number;
|
|
11566
|
+
expiresAt?: number | undefined;
|
|
11567
|
+
setBy?: string | undefined;
|
|
11568
|
+
reason?: string | undefined;
|
|
11569
|
+
} | undefined;
|
|
10779
11570
|
autoArchive?: {
|
|
10780
11571
|
value: boolean;
|
|
10781
11572
|
setAt: number;
|
|
@@ -10841,6 +11632,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10841
11632
|
setBy?: string | undefined;
|
|
10842
11633
|
reason?: string | undefined;
|
|
10843
11634
|
} | undefined;
|
|
11635
|
+
junkOnly?: {
|
|
11636
|
+
value: boolean;
|
|
11637
|
+
setAt: number;
|
|
11638
|
+
expiresAt?: number | undefined;
|
|
11639
|
+
setBy?: string | undefined;
|
|
11640
|
+
reason?: string | undefined;
|
|
11641
|
+
} | undefined;
|
|
10844
11642
|
autoArchive?: {
|
|
10845
11643
|
value: boolean;
|
|
10846
11644
|
setAt: number;
|
|
@@ -10906,6 +11704,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10906
11704
|
setBy?: string | undefined;
|
|
10907
11705
|
reason?: string | undefined;
|
|
10908
11706
|
} | undefined;
|
|
11707
|
+
junkOnly?: {
|
|
11708
|
+
value: boolean;
|
|
11709
|
+
setAt: number;
|
|
11710
|
+
expiresAt?: number | undefined;
|
|
11711
|
+
setBy?: string | undefined;
|
|
11712
|
+
reason?: string | undefined;
|
|
11713
|
+
} | undefined;
|
|
10909
11714
|
autoArchive?: {
|
|
10910
11715
|
value: boolean;
|
|
10911
11716
|
setAt: number;
|
|
@@ -10975,6 +11780,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
10975
11780
|
setBy?: string | undefined;
|
|
10976
11781
|
reason?: string | undefined;
|
|
10977
11782
|
} | undefined;
|
|
11783
|
+
junkOnly?: {
|
|
11784
|
+
value: boolean;
|
|
11785
|
+
setAt: number;
|
|
11786
|
+
expiresAt?: number | undefined;
|
|
11787
|
+
setBy?: string | undefined;
|
|
11788
|
+
reason?: string | undefined;
|
|
11789
|
+
} | undefined;
|
|
10978
11790
|
autoArchive?: {
|
|
10979
11791
|
value: boolean;
|
|
10980
11792
|
setAt: number;
|
|
@@ -11043,6 +11855,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11043
11855
|
setBy?: string | undefined;
|
|
11044
11856
|
reason?: string | undefined;
|
|
11045
11857
|
} | undefined;
|
|
11858
|
+
junkOnly?: {
|
|
11859
|
+
value: boolean;
|
|
11860
|
+
setAt: number;
|
|
11861
|
+
expiresAt?: number | undefined;
|
|
11862
|
+
setBy?: string | undefined;
|
|
11863
|
+
reason?: string | undefined;
|
|
11864
|
+
} | undefined;
|
|
11046
11865
|
autoArchive?: {
|
|
11047
11866
|
value: boolean;
|
|
11048
11867
|
setAt: number;
|
|
@@ -11108,6 +11927,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11108
11927
|
setBy?: string | undefined;
|
|
11109
11928
|
reason?: string | undefined;
|
|
11110
11929
|
} | undefined;
|
|
11930
|
+
junkOnly?: {
|
|
11931
|
+
value: boolean;
|
|
11932
|
+
setAt: number;
|
|
11933
|
+
expiresAt?: number | undefined;
|
|
11934
|
+
setBy?: string | undefined;
|
|
11935
|
+
reason?: string | undefined;
|
|
11936
|
+
} | undefined;
|
|
11111
11937
|
autoArchive?: {
|
|
11112
11938
|
value: boolean;
|
|
11113
11939
|
setAt: number;
|
|
@@ -11173,6 +11999,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11173
11999
|
setBy?: string | undefined;
|
|
11174
12000
|
reason?: string | undefined;
|
|
11175
12001
|
} | undefined;
|
|
12002
|
+
junkOnly?: {
|
|
12003
|
+
value: boolean;
|
|
12004
|
+
setAt: number;
|
|
12005
|
+
expiresAt?: number | undefined;
|
|
12006
|
+
setBy?: string | undefined;
|
|
12007
|
+
reason?: string | undefined;
|
|
12008
|
+
} | undefined;
|
|
11176
12009
|
autoArchive?: {
|
|
11177
12010
|
value: boolean;
|
|
11178
12011
|
setAt: number;
|
|
@@ -11238,6 +12071,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11238
12071
|
setBy?: string | undefined;
|
|
11239
12072
|
reason?: string | undefined;
|
|
11240
12073
|
} | undefined;
|
|
12074
|
+
junkOnly?: {
|
|
12075
|
+
value: boolean;
|
|
12076
|
+
setAt: number;
|
|
12077
|
+
expiresAt?: number | undefined;
|
|
12078
|
+
setBy?: string | undefined;
|
|
12079
|
+
reason?: string | undefined;
|
|
12080
|
+
} | undefined;
|
|
11241
12081
|
autoArchive?: {
|
|
11242
12082
|
value: boolean;
|
|
11243
12083
|
setAt: number;
|
|
@@ -11307,6 +12147,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11307
12147
|
setBy?: string | undefined;
|
|
11308
12148
|
reason?: string | undefined;
|
|
11309
12149
|
} | undefined;
|
|
12150
|
+
junkOnly?: {
|
|
12151
|
+
value: boolean;
|
|
12152
|
+
setAt: number;
|
|
12153
|
+
expiresAt?: number | undefined;
|
|
12154
|
+
setBy?: string | undefined;
|
|
12155
|
+
reason?: string | undefined;
|
|
12156
|
+
} | undefined;
|
|
11310
12157
|
autoArchive?: {
|
|
11311
12158
|
value: boolean;
|
|
11312
12159
|
setAt: number;
|
|
@@ -11462,6 +12309,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11462
12309
|
setBy?: string | undefined;
|
|
11463
12310
|
reason?: string | undefined;
|
|
11464
12311
|
} | undefined;
|
|
12312
|
+
junkOnly?: {
|
|
12313
|
+
value: boolean;
|
|
12314
|
+
setAt: number;
|
|
12315
|
+
expiresAt?: number | undefined;
|
|
12316
|
+
setBy?: string | undefined;
|
|
12317
|
+
reason?: string | undefined;
|
|
12318
|
+
} | undefined;
|
|
11465
12319
|
autoArchive?: {
|
|
11466
12320
|
value: boolean;
|
|
11467
12321
|
setAt: number;
|
|
@@ -11527,6 +12381,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11527
12381
|
setBy?: string | undefined;
|
|
11528
12382
|
reason?: string | undefined;
|
|
11529
12383
|
} | undefined;
|
|
12384
|
+
junkOnly?: {
|
|
12385
|
+
value: boolean;
|
|
12386
|
+
setAt: number;
|
|
12387
|
+
expiresAt?: number | undefined;
|
|
12388
|
+
setBy?: string | undefined;
|
|
12389
|
+
reason?: string | undefined;
|
|
12390
|
+
} | undefined;
|
|
11530
12391
|
autoArchive?: {
|
|
11531
12392
|
value: boolean;
|
|
11532
12393
|
setAt: number;
|
|
@@ -11592,6 +12453,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11592
12453
|
setBy?: string | undefined;
|
|
11593
12454
|
reason?: string | undefined;
|
|
11594
12455
|
} | undefined;
|
|
12456
|
+
junkOnly?: {
|
|
12457
|
+
value: boolean;
|
|
12458
|
+
setAt: number;
|
|
12459
|
+
expiresAt?: number | undefined;
|
|
12460
|
+
setBy?: string | undefined;
|
|
12461
|
+
reason?: string | undefined;
|
|
12462
|
+
} | undefined;
|
|
11595
12463
|
autoArchive?: {
|
|
11596
12464
|
value: boolean;
|
|
11597
12465
|
setAt: number;
|
|
@@ -11657,6 +12525,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11657
12525
|
setBy?: string | undefined;
|
|
11658
12526
|
reason?: string | undefined;
|
|
11659
12527
|
} | undefined;
|
|
12528
|
+
junkOnly?: {
|
|
12529
|
+
value: boolean;
|
|
12530
|
+
setAt: number;
|
|
12531
|
+
expiresAt?: number | undefined;
|
|
12532
|
+
setBy?: string | undefined;
|
|
12533
|
+
reason?: string | undefined;
|
|
12534
|
+
} | undefined;
|
|
11660
12535
|
autoArchive?: {
|
|
11661
12536
|
value: boolean;
|
|
11662
12537
|
setAt: number;
|
|
@@ -11726,6 +12601,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11726
12601
|
setBy?: string | undefined;
|
|
11727
12602
|
reason?: string | undefined;
|
|
11728
12603
|
} | undefined;
|
|
12604
|
+
junkOnly?: {
|
|
12605
|
+
value: boolean;
|
|
12606
|
+
setAt: number;
|
|
12607
|
+
expiresAt?: number | undefined;
|
|
12608
|
+
setBy?: string | undefined;
|
|
12609
|
+
reason?: string | undefined;
|
|
12610
|
+
} | undefined;
|
|
11729
12611
|
autoArchive?: {
|
|
11730
12612
|
value: boolean;
|
|
11731
12613
|
setAt: number;
|
|
@@ -11847,6 +12729,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11847
12729
|
setBy?: string | undefined;
|
|
11848
12730
|
reason?: string | undefined;
|
|
11849
12731
|
} | undefined;
|
|
12732
|
+
junkOnly?: {
|
|
12733
|
+
value: boolean;
|
|
12734
|
+
setAt: number;
|
|
12735
|
+
expiresAt?: number | undefined;
|
|
12736
|
+
setBy?: string | undefined;
|
|
12737
|
+
reason?: string | undefined;
|
|
12738
|
+
} | undefined;
|
|
11850
12739
|
autoArchive?: {
|
|
11851
12740
|
value: boolean;
|
|
11852
12741
|
setAt: number;
|
|
@@ -11912,6 +12801,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11912
12801
|
setBy?: string | undefined;
|
|
11913
12802
|
reason?: string | undefined;
|
|
11914
12803
|
} | undefined;
|
|
12804
|
+
junkOnly?: {
|
|
12805
|
+
value: boolean;
|
|
12806
|
+
setAt: number;
|
|
12807
|
+
expiresAt?: number | undefined;
|
|
12808
|
+
setBy?: string | undefined;
|
|
12809
|
+
reason?: string | undefined;
|
|
12810
|
+
} | undefined;
|
|
11915
12811
|
autoArchive?: {
|
|
11916
12812
|
value: boolean;
|
|
11917
12813
|
setAt: number;
|
|
@@ -11977,6 +12873,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
11977
12873
|
setBy?: string | undefined;
|
|
11978
12874
|
reason?: string | undefined;
|
|
11979
12875
|
} | undefined;
|
|
12876
|
+
junkOnly?: {
|
|
12877
|
+
value: boolean;
|
|
12878
|
+
setAt: number;
|
|
12879
|
+
expiresAt?: number | undefined;
|
|
12880
|
+
setBy?: string | undefined;
|
|
12881
|
+
reason?: string | undefined;
|
|
12882
|
+
} | undefined;
|
|
11980
12883
|
autoArchive?: {
|
|
11981
12884
|
value: boolean;
|
|
11982
12885
|
setAt: number;
|
|
@@ -12042,6 +12945,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12042
12945
|
setBy?: string | undefined;
|
|
12043
12946
|
reason?: string | undefined;
|
|
12044
12947
|
} | undefined;
|
|
12948
|
+
junkOnly?: {
|
|
12949
|
+
value: boolean;
|
|
12950
|
+
setAt: number;
|
|
12951
|
+
expiresAt?: number | undefined;
|
|
12952
|
+
setBy?: string | undefined;
|
|
12953
|
+
reason?: string | undefined;
|
|
12954
|
+
} | undefined;
|
|
12045
12955
|
autoArchive?: {
|
|
12046
12956
|
value: boolean;
|
|
12047
12957
|
setAt: number;
|
|
@@ -12111,6 +13021,13 @@ export declare const DescribeMessageResponseSchema: z.ZodObject<{
|
|
|
12111
13021
|
setBy?: string | undefined;
|
|
12112
13022
|
reason?: string | undefined;
|
|
12113
13023
|
} | undefined;
|
|
13024
|
+
junkOnly?: {
|
|
13025
|
+
value: boolean;
|
|
13026
|
+
setAt: number;
|
|
13027
|
+
expiresAt?: number | undefined;
|
|
13028
|
+
setBy?: string | undefined;
|
|
13029
|
+
reason?: string | undefined;
|
|
13030
|
+
} | undefined;
|
|
12114
13031
|
autoArchive?: {
|
|
12115
13032
|
value: boolean;
|
|
12116
13033
|
setAt: number;
|