@kl1/contracts 1.3.0 → 1.3.2

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.
@@ -4702,7 +4702,7 @@ export declare const facebookFeedContract: {
4702
4702
  lastMessage: z.ZodOptional<z.ZodString>;
4703
4703
  handleTime: z.ZodOptional<z.ZodNumber>;
4704
4704
  isLatest: z.ZodBoolean;
4705
- direction: z.ZodEnum<[string, ...string[]]>;
4705
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
4706
4706
  metadata: z.ZodOptional<z.ZodAny>;
4707
4707
  createdAt: z.ZodString;
4708
4708
  updatedAt: z.ZodString;
@@ -5124,7 +5124,7 @@ export declare const facebookFeedContract: {
5124
5124
  connectedUserName?: string | null | undefined;
5125
5125
  connectedUserId?: string | null | undefined;
5126
5126
  };
5127
- direction: string;
5127
+ direction: "incoming" | "outgoing" | "system";
5128
5128
  createdAt: string;
5129
5129
  updatedAt: string;
5130
5130
  actor: {
@@ -5216,7 +5216,7 @@ export declare const facebookFeedContract: {
5216
5216
  connectedUserName?: string | null | undefined;
5217
5217
  connectedUserId?: string | null | undefined;
5218
5218
  };
5219
- direction: string;
5219
+ direction: "incoming" | "outgoing" | "system";
5220
5220
  createdAt: string;
5221
5221
  updatedAt: string;
5222
5222
  actor: {
@@ -5261,8 +5261,8 @@ export declare const facebookFeedContract: {
5261
5261
  message: z.ZodObject<{
5262
5262
  id: z.ZodOptional<z.ZodString>;
5263
5263
  message: z.ZodOptional<z.ZodString>;
5264
- direction: z.ZodEnum<[string, ...string[]]>;
5265
- type: z.ZodEnum<[string, ...string[]]>;
5264
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
5265
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
5266
5266
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
5267
5267
  metadata: z.ZodOptional<z.ZodAny>;
5268
5268
  platformId: z.ZodOptional<z.ZodString>;
@@ -5319,7 +5319,7 @@ export declare const facebookFeedContract: {
5319
5319
  label: z.ZodOptional<z.ZodString>;
5320
5320
  }, "strip", z.ZodTypeAny, {
5321
5321
  type: string;
5322
- direction: string;
5322
+ direction: "incoming" | "outgoing" | "system";
5323
5323
  message?: string | undefined;
5324
5324
  id?: string | undefined;
5325
5325
  url?: string | undefined;
@@ -5354,7 +5354,7 @@ export declare const facebookFeedContract: {
5354
5354
  editedAt?: string | Date | null | undefined;
5355
5355
  }, {
5356
5356
  type: string;
5357
- direction: string;
5357
+ direction: "incoming" | "outgoing" | "system";
5358
5358
  message?: string | undefined;
5359
5359
  id?: string | undefined;
5360
5360
  url?: string | undefined;
@@ -5402,7 +5402,7 @@ export declare const facebookFeedContract: {
5402
5402
  }>, "strip", z.ZodTypeAny, {
5403
5403
  message: {
5404
5404
  type: string;
5405
- direction: string;
5405
+ direction: "incoming" | "outgoing" | "system";
5406
5406
  message?: string | undefined;
5407
5407
  id?: string | undefined;
5408
5408
  url?: string | undefined;
@@ -5487,7 +5487,7 @@ export declare const facebookFeedContract: {
5487
5487
  connectedUserName?: string | null | undefined;
5488
5488
  connectedUserId?: string | null | undefined;
5489
5489
  };
5490
- direction: string;
5490
+ direction: "incoming" | "outgoing" | "system";
5491
5491
  createdAt: string;
5492
5492
  updatedAt: string;
5493
5493
  actor: {
@@ -5537,7 +5537,7 @@ export declare const facebookFeedContract: {
5537
5537
  }, {
5538
5538
  message: {
5539
5539
  type: string;
5540
- direction: string;
5540
+ direction: "incoming" | "outgoing" | "system";
5541
5541
  message?: string | undefined;
5542
5542
  id?: string | undefined;
5543
5543
  url?: string | undefined;
@@ -5622,7 +5622,7 @@ export declare const facebookFeedContract: {
5622
5622
  connectedUserName?: string | null | undefined;
5623
5623
  connectedUserId?: string | null | undefined;
5624
5624
  };
5625
- direction: string;
5625
+ direction: "incoming" | "outgoing" | "system";
5626
5626
  createdAt: string;
5627
5627
  updatedAt: string;
5628
5628
  actor: {
@@ -5683,8 +5683,8 @@ export declare const facebookFeedContract: {
5683
5683
  deletedAt: z.ZodNullable<z.ZodDate>;
5684
5684
  }, {
5685
5685
  message: z.ZodString;
5686
- direction: z.ZodEnum<[string, ...string[]]>;
5687
- type: z.ZodEnum<[string, ...string[]]>;
5686
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
5687
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
5688
5688
  readAt: z.ZodDate;
5689
5689
  metadata: z.ZodAny;
5690
5690
  platformId: z.ZodString;
@@ -5711,7 +5711,7 @@ export declare const facebookFeedContract: {
5711
5711
  firstResponseTime: z.ZodNumber;
5712
5712
  isLatest: z.ZodBoolean;
5713
5713
  isBotRoom: z.ZodBoolean;
5714
- direction: z.ZodEnum<[string, ...string[]]>;
5714
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
5715
5715
  platformContact: z.ZodObject<{
5716
5716
  id: z.ZodString;
5717
5717
  createdAt: z.ZodDate;
@@ -8396,7 +8396,7 @@ export declare const facebookFeedContract: {
8396
8396
  integrationId: string;
8397
8397
  } | null;
8398
8398
  };
8399
- direction: string;
8399
+ direction: "incoming" | "outgoing" | "system";
8400
8400
  status: number;
8401
8401
  createdAt: Date;
8402
8402
  updatedAt: Date;
@@ -8825,7 +8825,7 @@ export declare const facebookFeedContract: {
8825
8825
  integrationId: string;
8826
8826
  } | null;
8827
8827
  };
8828
- direction: string;
8828
+ direction: "incoming" | "outgoing" | "system";
8829
8829
  status: number;
8830
8830
  createdAt: Date;
8831
8831
  updatedAt: Date;
@@ -9199,8 +9199,8 @@ export declare const facebookFeedContract: {
9199
9199
  deletedAt: z.ZodNullable<z.ZodDate>;
9200
9200
  }, {
9201
9201
  message: z.ZodString;
9202
- direction: z.ZodEnum<[string, ...string[]]>;
9203
- type: z.ZodEnum<[string, ...string[]]>;
9202
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
9203
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
9204
9204
  readAt: z.ZodDate;
9205
9205
  metadata: z.ZodAny;
9206
9206
  platformId: z.ZodString;
@@ -9866,7 +9866,7 @@ export declare const facebookFeedContract: {
9866
9866
  message: string;
9867
9867
  id: string;
9868
9868
  url: string;
9869
- direction: string;
9869
+ direction: "incoming" | "outgoing" | "system";
9870
9870
  createdAt: Date;
9871
9871
  updatedAt: Date;
9872
9872
  deletedAt: Date | null;
@@ -10028,7 +10028,7 @@ export declare const facebookFeedContract: {
10028
10028
  message: string;
10029
10029
  id: string;
10030
10030
  url: string;
10031
- direction: string;
10031
+ direction: "incoming" | "outgoing" | "system";
10032
10032
  createdAt: Date;
10033
10033
  updatedAt: Date;
10034
10034
  deletedAt: Date | null;
@@ -10834,8 +10834,8 @@ export declare const facebookFeedContract: {
10834
10834
  deletedAt: z.ZodNullable<z.ZodDate>;
10835
10835
  }, {
10836
10836
  message: z.ZodString;
10837
- direction: z.ZodEnum<[string, ...string[]]>;
10838
- type: z.ZodEnum<[string, ...string[]]>;
10837
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
10838
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
10839
10839
  readAt: z.ZodDate;
10840
10840
  metadata: z.ZodAny;
10841
10841
  platformId: z.ZodString;
@@ -10862,7 +10862,7 @@ export declare const facebookFeedContract: {
10862
10862
  firstResponseTime: z.ZodNumber;
10863
10863
  isLatest: z.ZodBoolean;
10864
10864
  isBotRoom: z.ZodBoolean;
10865
- direction: z.ZodEnum<[string, ...string[]]>;
10865
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
10866
10866
  platformContact: z.ZodObject<{
10867
10867
  id: z.ZodString;
10868
10868
  createdAt: z.ZodDate;
@@ -13547,7 +13547,7 @@ export declare const facebookFeedContract: {
13547
13547
  integrationId: string;
13548
13548
  } | null;
13549
13549
  };
13550
- direction: string;
13550
+ direction: "incoming" | "outgoing" | "system";
13551
13551
  status: number;
13552
13552
  createdAt: Date;
13553
13553
  updatedAt: Date;
@@ -13976,7 +13976,7 @@ export declare const facebookFeedContract: {
13976
13976
  integrationId: string;
13977
13977
  } | null;
13978
13978
  };
13979
- direction: string;
13979
+ direction: "incoming" | "outgoing" | "system";
13980
13980
  status: number;
13981
13981
  createdAt: Date;
13982
13982
  updatedAt: Date;
@@ -14350,8 +14350,8 @@ export declare const facebookFeedContract: {
14350
14350
  deletedAt: z.ZodNullable<z.ZodDate>;
14351
14351
  }, {
14352
14352
  message: z.ZodString;
14353
- direction: z.ZodEnum<[string, ...string[]]>;
14354
- type: z.ZodEnum<[string, ...string[]]>;
14353
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
14354
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
14355
14355
  readAt: z.ZodDate;
14356
14356
  metadata: z.ZodAny;
14357
14357
  platformId: z.ZodString;
@@ -15017,7 +15017,7 @@ export declare const facebookFeedContract: {
15017
15017
  message: string;
15018
15018
  id: string;
15019
15019
  url: string;
15020
- direction: string;
15020
+ direction: "incoming" | "outgoing" | "system";
15021
15021
  createdAt: Date;
15022
15022
  updatedAt: Date;
15023
15023
  deletedAt: Date | null;
@@ -15179,7 +15179,7 @@ export declare const facebookFeedContract: {
15179
15179
  message: string;
15180
15180
  id: string;
15181
15181
  url: string;
15182
- direction: string;
15182
+ direction: "incoming" | "outgoing" | "system";
15183
15183
  createdAt: Date;
15184
15184
  updatedAt: Date;
15185
15185
  deletedAt: Date | null;
@@ -15982,7 +15982,7 @@ export declare const facebookFeedContract: {
15982
15982
  message: string;
15983
15983
  id: string;
15984
15984
  url: string;
15985
- direction: string;
15985
+ direction: "incoming" | "outgoing" | "system";
15986
15986
  createdAt: Date;
15987
15987
  updatedAt: Date;
15988
15988
  deletedAt: Date | null;
@@ -16185,7 +16185,7 @@ export declare const facebookFeedContract: {
16185
16185
  integrationId: string;
16186
16186
  } | null;
16187
16187
  };
16188
- direction: string;
16188
+ direction: "incoming" | "outgoing" | "system";
16189
16189
  status: number;
16190
16190
  createdAt: Date;
16191
16191
  updatedAt: Date;
@@ -16537,7 +16537,7 @@ export declare const facebookFeedContract: {
16537
16537
  message: string;
16538
16538
  id: string;
16539
16539
  url: string;
16540
- direction: string;
16540
+ direction: "incoming" | "outgoing" | "system";
16541
16541
  createdAt: Date;
16542
16542
  updatedAt: Date;
16543
16543
  deletedAt: Date | null;
@@ -16748,7 +16748,7 @@ export declare const facebookFeedContract: {
16748
16748
  message: string;
16749
16749
  id: string;
16750
16750
  url: string;
16751
- direction: string;
16751
+ direction: "incoming" | "outgoing" | "system";
16752
16752
  createdAt: Date;
16753
16753
  updatedAt: Date;
16754
16754
  deletedAt: Date | null;
@@ -16951,7 +16951,7 @@ export declare const facebookFeedContract: {
16951
16951
  integrationId: string;
16952
16952
  } | null;
16953
16953
  };
16954
- direction: string;
16954
+ direction: "incoming" | "outgoing" | "system";
16955
16955
  status: number;
16956
16956
  createdAt: Date;
16957
16957
  updatedAt: Date;
@@ -17303,7 +17303,7 @@ export declare const facebookFeedContract: {
17303
17303
  message: string;
17304
17304
  id: string;
17305
17305
  url: string;
17306
- direction: string;
17306
+ direction: "incoming" | "outgoing" | "system";
17307
17307
  createdAt: Date;
17308
17308
  updatedAt: Date;
17309
17309
  deletedAt: Date | null;
@@ -17515,7 +17515,7 @@ export declare const facebookFeedContract: {
17515
17515
  message: string;
17516
17516
  id: string;
17517
17517
  url: string;
17518
- direction: string;
17518
+ direction: "incoming" | "outgoing" | "system";
17519
17519
  createdAt: Date;
17520
17520
  updatedAt: Date;
17521
17521
  deletedAt: Date | null;
@@ -17718,7 +17718,7 @@ export declare const facebookFeedContract: {
17718
17718
  integrationId: string;
17719
17719
  } | null;
17720
17720
  };
17721
- direction: string;
17721
+ direction: "incoming" | "outgoing" | "system";
17722
17722
  status: number;
17723
17723
  createdAt: Date;
17724
17724
  updatedAt: Date;
@@ -18070,7 +18070,7 @@ export declare const facebookFeedContract: {
18070
18070
  message: string;
18071
18071
  id: string;
18072
18072
  url: string;
18073
- direction: string;
18073
+ direction: "incoming" | "outgoing" | "system";
18074
18074
  createdAt: Date;
18075
18075
  updatedAt: Date;
18076
18076
  deletedAt: Date | null;
@@ -18281,7 +18281,7 @@ export declare const facebookFeedContract: {
18281
18281
  message: string;
18282
18282
  id: string;
18283
18283
  url: string;
18284
- direction: string;
18284
+ direction: "incoming" | "outgoing" | "system";
18285
18285
  createdAt: Date;
18286
18286
  updatedAt: Date;
18287
18287
  deletedAt: Date | null;
@@ -18484,7 +18484,7 @@ export declare const facebookFeedContract: {
18484
18484
  integrationId: string;
18485
18485
  } | null;
18486
18486
  };
18487
- direction: string;
18487
+ direction: "incoming" | "outgoing" | "system";
18488
18488
  status: number;
18489
18489
  createdAt: Date;
18490
18490
  updatedAt: Date;
@@ -18836,7 +18836,7 @@ export declare const facebookFeedContract: {
18836
18836
  message: string;
18837
18837
  id: string;
18838
18838
  url: string;
18839
- direction: string;
18839
+ direction: "incoming" | "outgoing" | "system";
18840
18840
  createdAt: Date;
18841
18841
  updatedAt: Date;
18842
18842
  deletedAt: Date | null;
@@ -19048,7 +19048,7 @@ export declare const facebookFeedContract: {
19048
19048
  message: string;
19049
19049
  id: string;
19050
19050
  url: string;
19051
- direction: string;
19051
+ direction: "incoming" | "outgoing" | "system";
19052
19052
  createdAt: Date;
19053
19053
  updatedAt: Date;
19054
19054
  deletedAt: Date | null;
@@ -19251,7 +19251,7 @@ export declare const facebookFeedContract: {
19251
19251
  integrationId: string;
19252
19252
  } | null;
19253
19253
  };
19254
- direction: string;
19254
+ direction: "incoming" | "outgoing" | "system";
19255
19255
  status: number;
19256
19256
  createdAt: Date;
19257
19257
  updatedAt: Date;
@@ -19603,7 +19603,7 @@ export declare const facebookFeedContract: {
19603
19603
  message: string;
19604
19604
  id: string;
19605
19605
  url: string;
19606
- direction: string;
19606
+ direction: "incoming" | "outgoing" | "system";
19607
19607
  createdAt: Date;
19608
19608
  updatedAt: Date;
19609
19609
  deletedAt: Date | null;
@@ -19814,7 +19814,7 @@ export declare const facebookFeedContract: {
19814
19814
  message: string;
19815
19815
  id: string;
19816
19816
  url: string;
19817
- direction: string;
19817
+ direction: "incoming" | "outgoing" | "system";
19818
19818
  createdAt: Date;
19819
19819
  updatedAt: Date;
19820
19820
  deletedAt: Date | null;
@@ -20017,7 +20017,7 @@ export declare const facebookFeedContract: {
20017
20017
  integrationId: string;
20018
20018
  } | null;
20019
20019
  };
20020
- direction: string;
20020
+ direction: "incoming" | "outgoing" | "system";
20021
20021
  status: number;
20022
20022
  createdAt: Date;
20023
20023
  updatedAt: Date;
@@ -20369,7 +20369,7 @@ export declare const facebookFeedContract: {
20369
20369
  message: string;
20370
20370
  id: string;
20371
20371
  url: string;
20372
- direction: string;
20372
+ direction: "incoming" | "outgoing" | "system";
20373
20373
  createdAt: Date;
20374
20374
  updatedAt: Date;
20375
20375
  deletedAt: Date | null;
@@ -20583,7 +20583,7 @@ export declare const facebookFeedContract: {
20583
20583
  message: string;
20584
20584
  id: string;
20585
20585
  url: string;
20586
- direction: string;
20586
+ direction: "incoming" | "outgoing" | "system";
20587
20587
  createdAt: Date;
20588
20588
  updatedAt: Date;
20589
20589
  deletedAt: Date | null;
@@ -20786,7 +20786,7 @@ export declare const facebookFeedContract: {
20786
20786
  integrationId: string;
20787
20787
  } | null;
20788
20788
  };
20789
- direction: string;
20789
+ direction: "incoming" | "outgoing" | "system";
20790
20790
  status: number;
20791
20791
  createdAt: Date;
20792
20792
  updatedAt: Date;
@@ -21138,7 +21138,7 @@ export declare const facebookFeedContract: {
21138
21138
  message: string;
21139
21139
  id: string;
21140
21140
  url: string;
21141
- direction: string;
21141
+ direction: "incoming" | "outgoing" | "system";
21142
21142
  createdAt: Date;
21143
21143
  updatedAt: Date;
21144
21144
  deletedAt: Date | null;
@@ -21349,7 +21349,7 @@ export declare const facebookFeedContract: {
21349
21349
  message: string;
21350
21350
  id: string;
21351
21351
  url: string;
21352
- direction: string;
21352
+ direction: "incoming" | "outgoing" | "system";
21353
21353
  createdAt: Date;
21354
21354
  updatedAt: Date;
21355
21355
  deletedAt: Date | null;
@@ -21552,7 +21552,7 @@ export declare const facebookFeedContract: {
21552
21552
  integrationId: string;
21553
21553
  } | null;
21554
21554
  };
21555
- direction: string;
21555
+ direction: "incoming" | "outgoing" | "system";
21556
21556
  status: number;
21557
21557
  createdAt: Date;
21558
21558
  updatedAt: Date;
@@ -21904,7 +21904,7 @@ export declare const facebookFeedContract: {
21904
21904
  message: string;
21905
21905
  id: string;
21906
21906
  url: string;
21907
- direction: string;
21907
+ direction: "incoming" | "outgoing" | "system";
21908
21908
  createdAt: Date;
21909
21909
  updatedAt: Date;
21910
21910
  deletedAt: Date | null;
@@ -22119,7 +22119,7 @@ export declare const facebookFeedContract: {
22119
22119
  message: string;
22120
22120
  id: string;
22121
22121
  url: string;
22122
- direction: string;
22122
+ direction: "incoming" | "outgoing" | "system";
22123
22123
  createdAt: Date;
22124
22124
  updatedAt: Date;
22125
22125
  deletedAt: Date | null;
@@ -22322,7 +22322,7 @@ export declare const facebookFeedContract: {
22322
22322
  integrationId: string;
22323
22323
  } | null;
22324
22324
  };
22325
- direction: string;
22325
+ direction: "incoming" | "outgoing" | "system";
22326
22326
  status: number;
22327
22327
  createdAt: Date;
22328
22328
  updatedAt: Date;
@@ -22674,7 +22674,7 @@ export declare const facebookFeedContract: {
22674
22674
  message: string;
22675
22675
  id: string;
22676
22676
  url: string;
22677
- direction: string;
22677
+ direction: "incoming" | "outgoing" | "system";
22678
22678
  createdAt: Date;
22679
22679
  updatedAt: Date;
22680
22680
  deletedAt: Date | null;
@@ -22885,7 +22885,7 @@ export declare const facebookFeedContract: {
22885
22885
  message: string;
22886
22886
  id: string;
22887
22887
  url: string;
22888
- direction: string;
22888
+ direction: "incoming" | "outgoing" | "system";
22889
22889
  createdAt: Date;
22890
22890
  updatedAt: Date;
22891
22891
  deletedAt: Date | null;
@@ -23088,7 +23088,7 @@ export declare const facebookFeedContract: {
23088
23088
  integrationId: string;
23089
23089
  } | null;
23090
23090
  };
23091
- direction: string;
23091
+ direction: "incoming" | "outgoing" | "system";
23092
23092
  status: number;
23093
23093
  createdAt: Date;
23094
23094
  updatedAt: Date;
@@ -23440,7 +23440,7 @@ export declare const facebookFeedContract: {
23440
23440
  message: string;
23441
23441
  id: string;
23442
23442
  url: string;
23443
- direction: string;
23443
+ direction: "incoming" | "outgoing" | "system";
23444
23444
  createdAt: Date;
23445
23445
  updatedAt: Date;
23446
23446
  deletedAt: Date | null;
@@ -24033,8 +24033,8 @@ export declare const facebookFeedContract: {
24033
24033
  message: z.ZodObject<{
24034
24034
  id: z.ZodOptional<z.ZodString>;
24035
24035
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24036
- direction: z.ZodEnum<[string, ...string[]]>;
24037
- type: z.ZodEnum<[string, ...string[]]>;
24036
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
24037
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
24038
24038
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
24039
24039
  metadata: z.ZodOptional<z.ZodAny>;
24040
24040
  platformId: z.ZodOptional<z.ZodString>;
@@ -24087,7 +24087,7 @@ export declare const facebookFeedContract: {
24087
24087
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24088
24088
  }, "strip", z.ZodTypeAny, {
24089
24089
  type: string;
24090
- direction: string;
24090
+ direction: "incoming" | "outgoing" | "system";
24091
24091
  message?: string | null | undefined;
24092
24092
  id?: string | undefined;
24093
24093
  url?: string | null | undefined;
@@ -24118,7 +24118,7 @@ export declare const facebookFeedContract: {
24118
24118
  feedPostId?: string | null | undefined;
24119
24119
  }, {
24120
24120
  type: string;
24121
- direction: string;
24121
+ direction: "incoming" | "outgoing" | "system";
24122
24122
  message?: string | null | undefined;
24123
24123
  id?: string | undefined;
24124
24124
  url?: string | null | undefined;
@@ -24151,7 +24151,7 @@ export declare const facebookFeedContract: {
24151
24151
  }, "strip", z.ZodTypeAny, {
24152
24152
  message: {
24153
24153
  type: string;
24154
- direction: string;
24154
+ direction: "incoming" | "outgoing" | "system";
24155
24155
  message?: string | null | undefined;
24156
24156
  id?: string | undefined;
24157
24157
  url?: string | null | undefined;
@@ -24236,7 +24236,7 @@ export declare const facebookFeedContract: {
24236
24236
  }, {
24237
24237
  message: {
24238
24238
  type: string;
24239
- direction: string;
24239
+ direction: "incoming" | "outgoing" | "system";
24240
24240
  message?: string | null | undefined;
24241
24241
  id?: string | undefined;
24242
24242
  url?: string | null | undefined;
@@ -24682,8 +24682,8 @@ export declare const facebookFeedContract: {
24682
24682
  message: z.ZodObject<{
24683
24683
  id: z.ZodOptional<z.ZodString>;
24684
24684
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24685
- direction: z.ZodEnum<[string, ...string[]]>;
24686
- type: z.ZodEnum<[string, ...string[]]>;
24685
+ direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
24686
+ type: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>;
24687
24687
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
24688
24688
  metadata: z.ZodOptional<z.ZodAny>;
24689
24689
  platformId: z.ZodOptional<z.ZodString>;
@@ -24736,7 +24736,7 @@ export declare const facebookFeedContract: {
24736
24736
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24737
24737
  }, "strip", z.ZodTypeAny, {
24738
24738
  type: string;
24739
- direction: string;
24739
+ direction: "incoming" | "outgoing" | "system";
24740
24740
  message?: string | null | undefined;
24741
24741
  id?: string | undefined;
24742
24742
  url?: string | null | undefined;
@@ -24767,7 +24767,7 @@ export declare const facebookFeedContract: {
24767
24767
  feedPostId?: string | null | undefined;
24768
24768
  }, {
24769
24769
  type: string;
24770
- direction: string;
24770
+ direction: "incoming" | "outgoing" | "system";
24771
24771
  message?: string | null | undefined;
24772
24772
  id?: string | undefined;
24773
24773
  url?: string | null | undefined;
@@ -24800,7 +24800,7 @@ export declare const facebookFeedContract: {
24800
24800
  }, "strip", z.ZodTypeAny, {
24801
24801
  message: {
24802
24802
  type: string;
24803
- direction: string;
24803
+ direction: "incoming" | "outgoing" | "system";
24804
24804
  message?: string | null | undefined;
24805
24805
  id?: string | undefined;
24806
24806
  url?: string | null | undefined;
@@ -24885,7 +24885,7 @@ export declare const facebookFeedContract: {
24885
24885
  }, {
24886
24886
  message: {
24887
24887
  type: string;
24888
- direction: string;
24888
+ direction: "incoming" | "outgoing" | "system";
24889
24889
  message?: string | null | undefined;
24890
24890
  id?: string | undefined;
24891
24891
  url?: string | null | undefined;
@@ -6,7 +6,7 @@ export declare const FeedPostSchema: z.ZodObject<z.objectUtil.extendShape<{
6
6
  deletedAt: z.ZodNullable<z.ZodDate>;
7
7
  }, {
8
8
  message: z.ZodNullable<z.ZodString>;
9
- type: z.ZodUnion<[z.ZodEnum<[string, ...string[]]>, z.ZodEnum<[string, ...string[]]>]>;
9
+ type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[]]>]>;
10
10
  metadata: z.ZodAny;
11
11
  platformId: z.ZodString;
12
12
  platformMessageId: z.ZodString;
@@ -32,4 +32,6 @@ export * from './subscription';
32
32
  export * from './botpress';
33
33
  export * from './cx-intelligence';
34
34
  export * from './hold-label';
35
+ export * from './widget';
36
+ export { presenceStatusContract } from './presence-status';
35
37
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC"}