@channel.io/app-sdk-core 0.15.5 → 0.15.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/extensions/datasource.d.ts +29 -0
  2. package/dist/extensions/datasource.d.ts.map +1 -1
  3. package/dist/extensions/datasource.js +63 -0
  4. package/dist/extensions/datasource.js.map +1 -1
  5. package/dist/extensions/function-schemas.d.ts +253 -14
  6. package/dist/extensions/function-schemas.d.ts.map +1 -1
  7. package/dist/extensions/function-schemas.js +6 -0
  8. package/dist/extensions/function-schemas.js.map +1 -1
  9. package/dist/extensions/index.d.ts +2 -1
  10. package/dist/extensions/index.d.ts.map +1 -1
  11. package/dist/extensions/index.js +3 -1
  12. package/dist/extensions/index.js.map +1 -1
  13. package/dist/extensions/interfaces/index.d.ts +1 -0
  14. package/dist/extensions/interfaces/index.d.ts.map +1 -1
  15. package/dist/extensions/interfaces/index.js +1 -0
  16. package/dist/extensions/interfaces/index.js.map +1 -1
  17. package/dist/extensions/interfaces/mail-relay.d.ts +25 -0
  18. package/dist/extensions/interfaces/mail-relay.d.ts.map +1 -0
  19. package/dist/extensions/interfaces/mail-relay.js +9 -0
  20. package/dist/extensions/interfaces/mail-relay.js.map +1 -0
  21. package/dist/extensions/mail-relay.d.ts +425 -0
  22. package/dist/extensions/mail-relay.d.ts.map +1 -0
  23. package/dist/extensions/mail-relay.js +59 -0
  24. package/dist/extensions/mail-relay.js.map +1 -0
  25. package/dist/extensions/proto-contracts.d.ts +8 -1
  26. package/dist/extensions/proto-contracts.d.ts.map +1 -1
  27. package/dist/extensions/wms.d.ts +12 -12
  28. package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +2 -2
  29. package/dist/gen/channel/app/sdk/v1/extension.d.ts +43 -0
  30. package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
  31. package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +352 -32
  32. package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
  33. package/dist/gen/channel/app/sdk/v1/extension.zod.js +43 -0
  34. package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
  35. package/package.json +1 -1
@@ -4517,6 +4517,326 @@ export declare const PollingGetTargetChannelsOutputProtoSchema: z.ZodObject<{
4517
4517
  hasNextPage?: boolean | undefined;
4518
4518
  }>;
4519
4519
  export type PollingGetTargetChannelsOutputProto = z.infer<typeof PollingGetTargetChannelsOutputProtoSchema>;
4520
+ export declare const MailRelayHeaderProtoSchema: z.ZodObject<{
4521
+ name: z.ZodOptional<z.ZodString>;
4522
+ value: z.ZodOptional<z.ZodString>;
4523
+ }, "strip", z.ZodTypeAny, {
4524
+ value?: string | undefined;
4525
+ name?: string | undefined;
4526
+ }, {
4527
+ value?: string | undefined;
4528
+ name?: string | undefined;
4529
+ }>;
4530
+ export type MailRelayHeaderProto = z.infer<typeof MailRelayHeaderProtoSchema>;
4531
+ export declare const MailRelayCommonHeadersProtoSchema: z.ZodObject<{
4532
+ from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4533
+ to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4534
+ cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4535
+ bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4536
+ subject: z.ZodOptional<z.ZodString>;
4537
+ messageId: z.ZodOptional<z.ZodString>;
4538
+ date: z.ZodOptional<z.ZodString>;
4539
+ }, "strip", z.ZodTypeAny, {
4540
+ messageId?: string | undefined;
4541
+ date?: string | undefined;
4542
+ from?: string[] | undefined;
4543
+ to?: string[] | undefined;
4544
+ cc?: string[] | undefined;
4545
+ bcc?: string[] | undefined;
4546
+ subject?: string | undefined;
4547
+ }, {
4548
+ messageId?: string | undefined;
4549
+ date?: string | undefined;
4550
+ from?: string[] | undefined;
4551
+ to?: string[] | undefined;
4552
+ cc?: string[] | undefined;
4553
+ bcc?: string[] | undefined;
4554
+ subject?: string | undefined;
4555
+ }>;
4556
+ export type MailRelayCommonHeadersProto = z.infer<typeof MailRelayCommonHeadersProtoSchema>;
4557
+ export declare const MailRelayMailProtoSchema: z.ZodObject<{
4558
+ source: z.ZodOptional<z.ZodString>;
4559
+ destination: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4560
+ messageId: z.ZodOptional<z.ZodString>;
4561
+ commonHeaders: z.ZodOptional<z.ZodLazy<z.ZodObject<{
4562
+ from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4563
+ to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4564
+ cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4565
+ bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4566
+ subject: z.ZodOptional<z.ZodString>;
4567
+ messageId: z.ZodOptional<z.ZodString>;
4568
+ date: z.ZodOptional<z.ZodString>;
4569
+ }, "strip", z.ZodTypeAny, {
4570
+ messageId?: string | undefined;
4571
+ date?: string | undefined;
4572
+ from?: string[] | undefined;
4573
+ to?: string[] | undefined;
4574
+ cc?: string[] | undefined;
4575
+ bcc?: string[] | undefined;
4576
+ subject?: string | undefined;
4577
+ }, {
4578
+ messageId?: string | undefined;
4579
+ date?: string | undefined;
4580
+ from?: string[] | undefined;
4581
+ to?: string[] | undefined;
4582
+ cc?: string[] | undefined;
4583
+ bcc?: string[] | undefined;
4584
+ subject?: string | undefined;
4585
+ }>>>;
4586
+ headers: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
4587
+ name: z.ZodOptional<z.ZodString>;
4588
+ value: z.ZodOptional<z.ZodString>;
4589
+ }, "strip", z.ZodTypeAny, {
4590
+ value?: string | undefined;
4591
+ name?: string | undefined;
4592
+ }, {
4593
+ value?: string | undefined;
4594
+ name?: string | undefined;
4595
+ }>>, "many">>;
4596
+ }, "strip", z.ZodTypeAny, {
4597
+ messageId?: string | undefined;
4598
+ source?: string | undefined;
4599
+ destination?: string[] | undefined;
4600
+ commonHeaders?: {
4601
+ messageId?: string | undefined;
4602
+ date?: string | undefined;
4603
+ from?: string[] | undefined;
4604
+ to?: string[] | undefined;
4605
+ cc?: string[] | undefined;
4606
+ bcc?: string[] | undefined;
4607
+ subject?: string | undefined;
4608
+ } | undefined;
4609
+ headers?: {
4610
+ value?: string | undefined;
4611
+ name?: string | undefined;
4612
+ }[] | undefined;
4613
+ }, {
4614
+ messageId?: string | undefined;
4615
+ source?: string | undefined;
4616
+ destination?: string[] | undefined;
4617
+ commonHeaders?: {
4618
+ messageId?: string | undefined;
4619
+ date?: string | undefined;
4620
+ from?: string[] | undefined;
4621
+ to?: string[] | undefined;
4622
+ cc?: string[] | undefined;
4623
+ bcc?: string[] | undefined;
4624
+ subject?: string | undefined;
4625
+ } | undefined;
4626
+ headers?: {
4627
+ value?: string | undefined;
4628
+ name?: string | undefined;
4629
+ }[] | undefined;
4630
+ }>;
4631
+ export type MailRelayMailProto = z.infer<typeof MailRelayMailProtoSchema>;
4632
+ export declare const MailRelayReceiptProtoSchema: z.ZodObject<{
4633
+ timestamp: z.ZodOptional<z.ZodString>;
4634
+ spamVerdict: z.ZodOptional<z.ZodString>;
4635
+ virusVerdict: z.ZodOptional<z.ZodString>;
4636
+ spfVerdict: z.ZodOptional<z.ZodString>;
4637
+ dkimVerdict: z.ZodOptional<z.ZodString>;
4638
+ dmarcVerdict: z.ZodOptional<z.ZodString>;
4639
+ }, "strip", z.ZodTypeAny, {
4640
+ timestamp?: string | undefined;
4641
+ spamVerdict?: string | undefined;
4642
+ virusVerdict?: string | undefined;
4643
+ spfVerdict?: string | undefined;
4644
+ dkimVerdict?: string | undefined;
4645
+ dmarcVerdict?: string | undefined;
4646
+ }, {
4647
+ timestamp?: string | undefined;
4648
+ spamVerdict?: string | undefined;
4649
+ virusVerdict?: string | undefined;
4650
+ spfVerdict?: string | undefined;
4651
+ dkimVerdict?: string | undefined;
4652
+ dmarcVerdict?: string | undefined;
4653
+ }>;
4654
+ export type MailRelayReceiptProto = z.infer<typeof MailRelayReceiptProtoSchema>;
4655
+ export declare const MailRelayInboundInputProtoSchema: z.ZodObject<{
4656
+ slug: z.ZodOptional<z.ZodString>;
4657
+ recipient: z.ZodOptional<z.ZodString>;
4658
+ recipients: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4659
+ sesMessageId: z.ZodOptional<z.ZodString>;
4660
+ bucketName: z.ZodOptional<z.ZodString>;
4661
+ objectKey: z.ZodOptional<z.ZodString>;
4662
+ mail: z.ZodOptional<z.ZodLazy<z.ZodObject<{
4663
+ source: z.ZodOptional<z.ZodString>;
4664
+ destination: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4665
+ messageId: z.ZodOptional<z.ZodString>;
4666
+ commonHeaders: z.ZodOptional<z.ZodLazy<z.ZodObject<{
4667
+ from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4668
+ to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4669
+ cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4670
+ bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4671
+ subject: z.ZodOptional<z.ZodString>;
4672
+ messageId: z.ZodOptional<z.ZodString>;
4673
+ date: z.ZodOptional<z.ZodString>;
4674
+ }, "strip", z.ZodTypeAny, {
4675
+ messageId?: string | undefined;
4676
+ date?: string | undefined;
4677
+ from?: string[] | undefined;
4678
+ to?: string[] | undefined;
4679
+ cc?: string[] | undefined;
4680
+ bcc?: string[] | undefined;
4681
+ subject?: string | undefined;
4682
+ }, {
4683
+ messageId?: string | undefined;
4684
+ date?: string | undefined;
4685
+ from?: string[] | undefined;
4686
+ to?: string[] | undefined;
4687
+ cc?: string[] | undefined;
4688
+ bcc?: string[] | undefined;
4689
+ subject?: string | undefined;
4690
+ }>>>;
4691
+ headers: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
4692
+ name: z.ZodOptional<z.ZodString>;
4693
+ value: z.ZodOptional<z.ZodString>;
4694
+ }, "strip", z.ZodTypeAny, {
4695
+ value?: string | undefined;
4696
+ name?: string | undefined;
4697
+ }, {
4698
+ value?: string | undefined;
4699
+ name?: string | undefined;
4700
+ }>>, "many">>;
4701
+ }, "strip", z.ZodTypeAny, {
4702
+ messageId?: string | undefined;
4703
+ source?: string | undefined;
4704
+ destination?: string[] | undefined;
4705
+ commonHeaders?: {
4706
+ messageId?: string | undefined;
4707
+ date?: string | undefined;
4708
+ from?: string[] | undefined;
4709
+ to?: string[] | undefined;
4710
+ cc?: string[] | undefined;
4711
+ bcc?: string[] | undefined;
4712
+ subject?: string | undefined;
4713
+ } | undefined;
4714
+ headers?: {
4715
+ value?: string | undefined;
4716
+ name?: string | undefined;
4717
+ }[] | undefined;
4718
+ }, {
4719
+ messageId?: string | undefined;
4720
+ source?: string | undefined;
4721
+ destination?: string[] | undefined;
4722
+ commonHeaders?: {
4723
+ messageId?: string | undefined;
4724
+ date?: string | undefined;
4725
+ from?: string[] | undefined;
4726
+ to?: string[] | undefined;
4727
+ cc?: string[] | undefined;
4728
+ bcc?: string[] | undefined;
4729
+ subject?: string | undefined;
4730
+ } | undefined;
4731
+ headers?: {
4732
+ value?: string | undefined;
4733
+ name?: string | undefined;
4734
+ }[] | undefined;
4735
+ }>>>;
4736
+ receipt: z.ZodOptional<z.ZodLazy<z.ZodObject<{
4737
+ timestamp: z.ZodOptional<z.ZodString>;
4738
+ spamVerdict: z.ZodOptional<z.ZodString>;
4739
+ virusVerdict: z.ZodOptional<z.ZodString>;
4740
+ spfVerdict: z.ZodOptional<z.ZodString>;
4741
+ dkimVerdict: z.ZodOptional<z.ZodString>;
4742
+ dmarcVerdict: z.ZodOptional<z.ZodString>;
4743
+ }, "strip", z.ZodTypeAny, {
4744
+ timestamp?: string | undefined;
4745
+ spamVerdict?: string | undefined;
4746
+ virusVerdict?: string | undefined;
4747
+ spfVerdict?: string | undefined;
4748
+ dkimVerdict?: string | undefined;
4749
+ dmarcVerdict?: string | undefined;
4750
+ }, {
4751
+ timestamp?: string | undefined;
4752
+ spamVerdict?: string | undefined;
4753
+ virusVerdict?: string | undefined;
4754
+ spfVerdict?: string | undefined;
4755
+ dkimVerdict?: string | undefined;
4756
+ dmarcVerdict?: string | undefined;
4757
+ }>>>;
4758
+ }, "strip", z.ZodTypeAny, {
4759
+ recipient?: string | undefined;
4760
+ slug?: string | undefined;
4761
+ recipients?: string[] | undefined;
4762
+ sesMessageId?: string | undefined;
4763
+ bucketName?: string | undefined;
4764
+ objectKey?: string | undefined;
4765
+ mail?: {
4766
+ messageId?: string | undefined;
4767
+ source?: string | undefined;
4768
+ destination?: string[] | undefined;
4769
+ commonHeaders?: {
4770
+ messageId?: string | undefined;
4771
+ date?: string | undefined;
4772
+ from?: string[] | undefined;
4773
+ to?: string[] | undefined;
4774
+ cc?: string[] | undefined;
4775
+ bcc?: string[] | undefined;
4776
+ subject?: string | undefined;
4777
+ } | undefined;
4778
+ headers?: {
4779
+ value?: string | undefined;
4780
+ name?: string | undefined;
4781
+ }[] | undefined;
4782
+ } | undefined;
4783
+ receipt?: {
4784
+ timestamp?: string | undefined;
4785
+ spamVerdict?: string | undefined;
4786
+ virusVerdict?: string | undefined;
4787
+ spfVerdict?: string | undefined;
4788
+ dkimVerdict?: string | undefined;
4789
+ dmarcVerdict?: string | undefined;
4790
+ } | undefined;
4791
+ }, {
4792
+ recipient?: string | undefined;
4793
+ slug?: string | undefined;
4794
+ recipients?: string[] | undefined;
4795
+ sesMessageId?: string | undefined;
4796
+ bucketName?: string | undefined;
4797
+ objectKey?: string | undefined;
4798
+ mail?: {
4799
+ messageId?: string | undefined;
4800
+ source?: string | undefined;
4801
+ destination?: string[] | undefined;
4802
+ commonHeaders?: {
4803
+ messageId?: string | undefined;
4804
+ date?: string | undefined;
4805
+ from?: string[] | undefined;
4806
+ to?: string[] | undefined;
4807
+ cc?: string[] | undefined;
4808
+ bcc?: string[] | undefined;
4809
+ subject?: string | undefined;
4810
+ } | undefined;
4811
+ headers?: {
4812
+ value?: string | undefined;
4813
+ name?: string | undefined;
4814
+ }[] | undefined;
4815
+ } | undefined;
4816
+ receipt?: {
4817
+ timestamp?: string | undefined;
4818
+ spamVerdict?: string | undefined;
4819
+ virusVerdict?: string | undefined;
4820
+ spfVerdict?: string | undefined;
4821
+ dkimVerdict?: string | undefined;
4822
+ dmarcVerdict?: string | undefined;
4823
+ } | undefined;
4824
+ }>;
4825
+ export type MailRelayInboundInputProto = z.infer<typeof MailRelayInboundInputProtoSchema>;
4826
+ export declare const MailRelayInboundOutputProtoSchema: z.ZodObject<{
4827
+ status: z.ZodOptional<z.ZodString>;
4828
+ idempotencyKey: z.ZodOptional<z.ZodString>;
4829
+ reason: z.ZodOptional<z.ZodString>;
4830
+ }, "strip", z.ZodTypeAny, {
4831
+ status?: string | undefined;
4832
+ idempotencyKey?: string | undefined;
4833
+ reason?: string | undefined;
4834
+ }, {
4835
+ status?: string | undefined;
4836
+ idempotencyKey?: string | undefined;
4837
+ reason?: string | undefined;
4838
+ }>;
4839
+ export type MailRelayInboundOutputProto = z.infer<typeof MailRelayInboundOutputProtoSchema>;
4520
4840
  export declare const StoreMediaProtoSchema: z.ZodObject<{
4521
4841
  type: z.ZodOptional<z.ZodString>;
4522
4842
  url: z.ZodOptional<z.ZodString>;
@@ -8793,11 +9113,11 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
8793
9113
  accountHolder?: string | undefined;
8794
9114
  }>>>;
8795
9115
  }, "strip", z.ZodTypeAny, {
8796
- orderId?: string | undefined;
8797
9116
  reason?: {
8798
9117
  type?: string | undefined;
8799
9118
  description?: string | undefined;
8800
9119
  } | undefined;
9120
+ orderId?: string | undefined;
8801
9121
  cancelItems?: {
8802
9122
  id?: string | undefined;
8803
9123
  quantity?: number | undefined;
@@ -8808,11 +9128,11 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
8808
9128
  accountHolder?: string | undefined;
8809
9129
  } | undefined;
8810
9130
  }, {
8811
- orderId?: string | undefined;
8812
9131
  reason?: {
8813
9132
  type?: string | undefined;
8814
9133
  description?: string | undefined;
8815
9134
  } | undefined;
9135
+ orderId?: string | undefined;
8816
9136
  cancelItems?: {
8817
9137
  id?: string | undefined;
8818
9138
  quantity?: number | undefined;
@@ -8911,13 +9231,13 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
8911
9231
  }>>>;
8912
9232
  shippingFeePaymentType: z.ZodOptional<z.ZodString>;
8913
9233
  }, "strip", z.ZodTypeAny, {
8914
- trackingNumber?: string | undefined;
8915
- trackingCompany?: string | undefined;
8916
- orderId?: string | undefined;
8917
9234
  reason?: {
8918
9235
  type?: string | undefined;
8919
9236
  description?: string | undefined;
8920
9237
  } | undefined;
9238
+ trackingNumber?: string | undefined;
9239
+ trackingCompany?: string | undefined;
9240
+ orderId?: string | undefined;
8921
9241
  refundBankAccount?: {
8922
9242
  bankName?: string | undefined;
8923
9243
  accountNo?: string | undefined;
@@ -8947,13 +9267,13 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
8947
9267
  } | undefined;
8948
9268
  shippingFeePaymentType?: string | undefined;
8949
9269
  }, {
8950
- trackingNumber?: string | undefined;
8951
- trackingCompany?: string | undefined;
8952
- orderId?: string | undefined;
8953
9270
  reason?: {
8954
9271
  type?: string | undefined;
8955
9272
  description?: string | undefined;
8956
9273
  } | undefined;
9274
+ trackingNumber?: string | undefined;
9275
+ trackingCompany?: string | undefined;
9276
+ orderId?: string | undefined;
8957
9277
  refundBankAccount?: {
8958
9278
  bankName?: string | undefined;
8959
9279
  accountNo?: string | undefined;
@@ -9096,11 +9416,11 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
9096
9416
  }>>>;
9097
9417
  shippingFeePaymentType: z.ZodOptional<z.ZodString>;
9098
9418
  }, "strip", z.ZodTypeAny, {
9099
- orderId?: string | undefined;
9100
9419
  reason?: {
9101
9420
  type?: string | undefined;
9102
9421
  description?: string | undefined;
9103
9422
  } | undefined;
9423
+ orderId?: string | undefined;
9104
9424
  refundBankAccount?: {
9105
9425
  bankName?: string | undefined;
9106
9426
  accountNo?: string | undefined;
@@ -9135,11 +9455,11 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
9135
9455
  variantId?: string | undefined;
9136
9456
  }[] | undefined;
9137
9457
  }, {
9138
- orderId?: string | undefined;
9139
9458
  reason?: {
9140
9459
  type?: string | undefined;
9141
9460
  description?: string | undefined;
9142
9461
  } | undefined;
9462
+ orderId?: string | undefined;
9143
9463
  refundBankAccount?: {
9144
9464
  bankName?: string | undefined;
9145
9465
  accountNo?: string | undefined;
@@ -10258,14 +10578,14 @@ export declare const WmsOrderStateRequestProtoSchema: z.ZodObject<{
10258
10578
  reason: z.ZodOptional<z.ZodString>;
10259
10579
  memo: z.ZodOptional<z.ZodString>;
10260
10580
  }, "strip", z.ZodTypeAny, {
10581
+ reason?: string | undefined;
10261
10582
  orderIds?: string | undefined;
10262
10583
  orderId?: string | undefined;
10263
- reason?: string | undefined;
10264
10584
  memo?: string | undefined;
10265
10585
  }, {
10586
+ reason?: string | undefined;
10266
10587
  orderIds?: string | undefined;
10267
10588
  orderId?: string | undefined;
10268
- reason?: string | undefined;
10269
10589
  memo?: string | undefined;
10270
10590
  }>;
10271
10591
  export type WmsOrderStateRequestProto = z.infer<typeof WmsOrderStateRequestProtoSchema>;
@@ -10400,6 +10720,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10400
10720
  mediumType?: string | undefined;
10401
10721
  title?: string | undefined;
10402
10722
  expiresAt?: string | undefined;
10723
+ source?: Record<string, any> | undefined;
10403
10724
  profile?: Record<string, any> | undefined;
10404
10725
  updatedAt?: string | undefined;
10405
10726
  tags?: string[] | undefined;
@@ -10410,7 +10731,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10410
10731
  replyCount?: number | undefined;
10411
10732
  sync?: boolean | undefined;
10412
10733
  xerId?: string | undefined;
10413
- source?: Record<string, any> | undefined;
10414
10734
  teamId?: string | undefined;
10415
10735
  askedAt?: string | undefined;
10416
10736
  managed?: boolean | undefined;
@@ -10461,6 +10781,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10461
10781
  mediumType?: string | undefined;
10462
10782
  title?: string | undefined;
10463
10783
  expiresAt?: string | undefined;
10784
+ source?: Record<string, any> | undefined;
10464
10785
  profile?: Record<string, any> | undefined;
10465
10786
  updatedAt?: string | undefined;
10466
10787
  tags?: string[] | undefined;
@@ -10471,7 +10792,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10471
10792
  replyCount?: number | undefined;
10472
10793
  sync?: boolean | undefined;
10473
10794
  xerId?: string | undefined;
10474
- source?: Record<string, any> | undefined;
10475
10795
  teamId?: string | undefined;
10476
10796
  askedAt?: string | undefined;
10477
10797
  managed?: boolean | undefined;
@@ -10776,6 +11096,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10776
11096
  mediumType?: string | undefined;
10777
11097
  title?: string | undefined;
10778
11098
  expiresAt?: string | undefined;
11099
+ source?: Record<string, any> | undefined;
10779
11100
  profile?: Record<string, any> | undefined;
10780
11101
  updatedAt?: string | undefined;
10781
11102
  tags?: string[] | undefined;
@@ -10786,7 +11107,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10786
11107
  replyCount?: number | undefined;
10787
11108
  sync?: boolean | undefined;
10788
11109
  xerId?: string | undefined;
10789
- source?: Record<string, any> | undefined;
10790
11110
  teamId?: string | undefined;
10791
11111
  askedAt?: string | undefined;
10792
11112
  managed?: boolean | undefined;
@@ -10903,6 +11223,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10903
11223
  mediumType?: string | undefined;
10904
11224
  title?: string | undefined;
10905
11225
  expiresAt?: string | undefined;
11226
+ source?: Record<string, any> | undefined;
10906
11227
  profile?: Record<string, any> | undefined;
10907
11228
  updatedAt?: string | undefined;
10908
11229
  tags?: string[] | undefined;
@@ -10913,7 +11234,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10913
11234
  replyCount?: number | undefined;
10914
11235
  sync?: boolean | undefined;
10915
11236
  xerId?: string | undefined;
10916
- source?: Record<string, any> | undefined;
10917
11237
  teamId?: string | undefined;
10918
11238
  askedAt?: string | undefined;
10919
11239
  managed?: boolean | undefined;
@@ -11127,6 +11447,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11127
11447
  mediumType?: string | undefined;
11128
11448
  title?: string | undefined;
11129
11449
  expiresAt?: string | undefined;
11450
+ source?: Record<string, any> | undefined;
11130
11451
  profile?: Record<string, any> | undefined;
11131
11452
  updatedAt?: string | undefined;
11132
11453
  tags?: string[] | undefined;
@@ -11137,7 +11458,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11137
11458
  replyCount?: number | undefined;
11138
11459
  sync?: boolean | undefined;
11139
11460
  xerId?: string | undefined;
11140
- source?: Record<string, any> | undefined;
11141
11461
  teamId?: string | undefined;
11142
11462
  askedAt?: string | undefined;
11143
11463
  managed?: boolean | undefined;
@@ -11188,6 +11508,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11188
11508
  mediumType?: string | undefined;
11189
11509
  title?: string | undefined;
11190
11510
  expiresAt?: string | undefined;
11511
+ source?: Record<string, any> | undefined;
11191
11512
  profile?: Record<string, any> | undefined;
11192
11513
  updatedAt?: string | undefined;
11193
11514
  tags?: string[] | undefined;
@@ -11198,7 +11519,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11198
11519
  replyCount?: number | undefined;
11199
11520
  sync?: boolean | undefined;
11200
11521
  xerId?: string | undefined;
11201
- source?: Record<string, any> | undefined;
11202
11522
  teamId?: string | undefined;
11203
11523
  askedAt?: string | undefined;
11204
11524
  managed?: boolean | undefined;
@@ -11251,6 +11571,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11251
11571
  mediumType?: string | undefined;
11252
11572
  title?: string | undefined;
11253
11573
  expiresAt?: string | undefined;
11574
+ source?: Record<string, any> | undefined;
11254
11575
  profile?: Record<string, any> | undefined;
11255
11576
  updatedAt?: string | undefined;
11256
11577
  tags?: string[] | undefined;
@@ -11261,7 +11582,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11261
11582
  replyCount?: number | undefined;
11262
11583
  sync?: boolean | undefined;
11263
11584
  xerId?: string | undefined;
11264
- source?: Record<string, any> | undefined;
11265
11585
  teamId?: string | undefined;
11266
11586
  askedAt?: string | undefined;
11267
11587
  managed?: boolean | undefined;
@@ -11314,6 +11634,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11314
11634
  mediumType?: string | undefined;
11315
11635
  title?: string | undefined;
11316
11636
  expiresAt?: string | undefined;
11637
+ source?: Record<string, any> | undefined;
11317
11638
  profile?: Record<string, any> | undefined;
11318
11639
  updatedAt?: string | undefined;
11319
11640
  tags?: string[] | undefined;
@@ -11324,7 +11645,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11324
11645
  replyCount?: number | undefined;
11325
11646
  sync?: boolean | undefined;
11326
11647
  xerId?: string | undefined;
11327
- source?: Record<string, any> | undefined;
11328
11648
  teamId?: string | undefined;
11329
11649
  askedAt?: string | undefined;
11330
11650
  managed?: boolean | undefined;
@@ -11442,6 +11762,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11442
11762
  mediumType?: string | undefined;
11443
11763
  title?: string | undefined;
11444
11764
  expiresAt?: string | undefined;
11765
+ source?: Record<string, any> | undefined;
11445
11766
  profile?: Record<string, any> | undefined;
11446
11767
  updatedAt?: string | undefined;
11447
11768
  tags?: string[] | undefined;
@@ -11452,7 +11773,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11452
11773
  replyCount?: number | undefined;
11453
11774
  sync?: boolean | undefined;
11454
11775
  xerId?: string | undefined;
11455
- source?: Record<string, any> | undefined;
11456
11776
  teamId?: string | undefined;
11457
11777
  askedAt?: string | undefined;
11458
11778
  managed?: boolean | undefined;
@@ -11503,6 +11823,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11503
11823
  mediumType?: string | undefined;
11504
11824
  title?: string | undefined;
11505
11825
  expiresAt?: string | undefined;
11826
+ source?: Record<string, any> | undefined;
11506
11827
  profile?: Record<string, any> | undefined;
11507
11828
  updatedAt?: string | undefined;
11508
11829
  tags?: string[] | undefined;
@@ -11513,7 +11834,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11513
11834
  replyCount?: number | undefined;
11514
11835
  sync?: boolean | undefined;
11515
11836
  xerId?: string | undefined;
11516
- source?: Record<string, any> | undefined;
11517
11837
  teamId?: string | undefined;
11518
11838
  askedAt?: string | undefined;
11519
11839
  managed?: boolean | undefined;
@@ -11566,6 +11886,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11566
11886
  mediumType?: string | undefined;
11567
11887
  title?: string | undefined;
11568
11888
  expiresAt?: string | undefined;
11889
+ source?: Record<string, any> | undefined;
11569
11890
  profile?: Record<string, any> | undefined;
11570
11891
  updatedAt?: string | undefined;
11571
11892
  tags?: string[] | undefined;
@@ -11576,7 +11897,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11576
11897
  replyCount?: number | undefined;
11577
11898
  sync?: boolean | undefined;
11578
11899
  xerId?: string | undefined;
11579
- source?: Record<string, any> | undefined;
11580
11900
  teamId?: string | undefined;
11581
11901
  askedAt?: string | undefined;
11582
11902
  managed?: boolean | undefined;
@@ -11629,6 +11949,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11629
11949
  mediumType?: string | undefined;
11630
11950
  title?: string | undefined;
11631
11951
  expiresAt?: string | undefined;
11952
+ source?: Record<string, any> | undefined;
11632
11953
  profile?: Record<string, any> | undefined;
11633
11954
  updatedAt?: string | undefined;
11634
11955
  tags?: string[] | undefined;
@@ -11639,7 +11960,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11639
11960
  replyCount?: number | undefined;
11640
11961
  sync?: boolean | undefined;
11641
11962
  xerId?: string | undefined;
11642
- source?: Record<string, any> | undefined;
11643
11963
  teamId?: string | undefined;
11644
11964
  askedAt?: string | undefined;
11645
11965
  managed?: boolean | undefined;
@@ -11998,6 +12318,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11998
12318
  mediumType?: string | undefined;
11999
12319
  title?: string | undefined;
12000
12320
  expiresAt?: string | undefined;
12321
+ source?: Record<string, any> | undefined;
12001
12322
  profile?: Record<string, any> | undefined;
12002
12323
  updatedAt?: string | undefined;
12003
12324
  tags?: string[] | undefined;
@@ -12008,7 +12329,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12008
12329
  replyCount?: number | undefined;
12009
12330
  sync?: boolean | undefined;
12010
12331
  xerId?: string | undefined;
12011
- source?: Record<string, any> | undefined;
12012
12332
  teamId?: string | undefined;
12013
12333
  askedAt?: string | undefined;
12014
12334
  managed?: boolean | undefined;
@@ -12059,6 +12379,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12059
12379
  mediumType?: string | undefined;
12060
12380
  title?: string | undefined;
12061
12381
  expiresAt?: string | undefined;
12382
+ source?: Record<string, any> | undefined;
12062
12383
  profile?: Record<string, any> | undefined;
12063
12384
  updatedAt?: string | undefined;
12064
12385
  tags?: string[] | undefined;
@@ -12069,7 +12390,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12069
12390
  replyCount?: number | undefined;
12070
12391
  sync?: boolean | undefined;
12071
12392
  xerId?: string | undefined;
12072
- source?: Record<string, any> | undefined;
12073
12393
  teamId?: string | undefined;
12074
12394
  askedAt?: string | undefined;
12075
12395
  managed?: boolean | undefined;
@@ -12413,6 +12733,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12413
12733
  mediumType?: string | undefined;
12414
12734
  title?: string | undefined;
12415
12735
  expiresAt?: string | undefined;
12736
+ source?: Record<string, any> | undefined;
12416
12737
  profile?: Record<string, any> | undefined;
12417
12738
  updatedAt?: string | undefined;
12418
12739
  tags?: string[] | undefined;
@@ -12423,7 +12744,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12423
12744
  replyCount?: number | undefined;
12424
12745
  sync?: boolean | undefined;
12425
12746
  xerId?: string | undefined;
12426
- source?: Record<string, any> | undefined;
12427
12747
  teamId?: string | undefined;
12428
12748
  askedAt?: string | undefined;
12429
12749
  managed?: boolean | undefined;
@@ -12579,6 +12899,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12579
12899
  mediumType?: string | undefined;
12580
12900
  title?: string | undefined;
12581
12901
  expiresAt?: string | undefined;
12902
+ source?: Record<string, any> | undefined;
12582
12903
  profile?: Record<string, any> | undefined;
12583
12904
  updatedAt?: string | undefined;
12584
12905
  tags?: string[] | undefined;
@@ -12589,7 +12910,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12589
12910
  replyCount?: number | undefined;
12590
12911
  sync?: boolean | undefined;
12591
12912
  xerId?: string | undefined;
12592
- source?: Record<string, any> | undefined;
12593
12913
  teamId?: string | undefined;
12594
12914
  askedAt?: string | undefined;
12595
12915
  managed?: boolean | undefined;
@@ -12955,6 +13275,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
12955
13275
  mediumType?: string | undefined;
12956
13276
  title?: string | undefined;
12957
13277
  expiresAt?: string | undefined;
13278
+ source?: Record<string, any> | undefined;
12958
13279
  profile?: Record<string, any> | undefined;
12959
13280
  updatedAt?: string | undefined;
12960
13281
  tags?: string[] | undefined;
@@ -12965,7 +13286,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
12965
13286
  replyCount?: number | undefined;
12966
13287
  sync?: boolean | undefined;
12967
13288
  xerId?: string | undefined;
12968
- source?: Record<string, any> | undefined;
12969
13289
  teamId?: string | undefined;
12970
13290
  askedAt?: string | undefined;
12971
13291
  managed?: boolean | undefined;
@@ -13016,6 +13336,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13016
13336
  mediumType?: string | undefined;
13017
13337
  title?: string | undefined;
13018
13338
  expiresAt?: string | undefined;
13339
+ source?: Record<string, any> | undefined;
13019
13340
  profile?: Record<string, any> | undefined;
13020
13341
  updatedAt?: string | undefined;
13021
13342
  tags?: string[] | undefined;
@@ -13026,7 +13347,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13026
13347
  replyCount?: number | undefined;
13027
13348
  sync?: boolean | undefined;
13028
13349
  xerId?: string | undefined;
13029
- source?: Record<string, any> | undefined;
13030
13350
  teamId?: string | undefined;
13031
13351
  askedAt?: string | undefined;
13032
13352
  managed?: boolean | undefined;
@@ -13331,6 +13651,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13331
13651
  mediumType?: string | undefined;
13332
13652
  title?: string | undefined;
13333
13653
  expiresAt?: string | undefined;
13654
+ source?: Record<string, any> | undefined;
13334
13655
  profile?: Record<string, any> | undefined;
13335
13656
  updatedAt?: string | undefined;
13336
13657
  tags?: string[] | undefined;
@@ -13341,7 +13662,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13341
13662
  replyCount?: number | undefined;
13342
13663
  sync?: boolean | undefined;
13343
13664
  xerId?: string | undefined;
13344
- source?: Record<string, any> | undefined;
13345
13665
  teamId?: string | undefined;
13346
13666
  askedAt?: string | undefined;
13347
13667
  managed?: boolean | undefined;
@@ -13458,6 +13778,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13458
13778
  mediumType?: string | undefined;
13459
13779
  title?: string | undefined;
13460
13780
  expiresAt?: string | undefined;
13781
+ source?: Record<string, any> | undefined;
13461
13782
  profile?: Record<string, any> | undefined;
13462
13783
  updatedAt?: string | undefined;
13463
13784
  tags?: string[] | undefined;
@@ -13468,7 +13789,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13468
13789
  replyCount?: number | undefined;
13469
13790
  sync?: boolean | undefined;
13470
13791
  xerId?: string | undefined;
13471
- source?: Record<string, any> | undefined;
13472
13792
  teamId?: string | undefined;
13473
13793
  askedAt?: string | undefined;
13474
13794
  managed?: boolean | undefined;