@apolitical/component-library 3.5.12 → 3.5.13-ac.4

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.
@@ -10,6 +10,7 @@ export declare const activitiesFeedMock: {
10
10
  organization: string;
11
11
  };
12
12
  };
13
+ title: string;
13
14
  content: string;
14
15
  feed_id: string;
15
16
  foreign_id: string;
@@ -36,6 +37,7 @@ export declare const activitiesFeedMock: {
36
37
  organization: string;
37
38
  };
38
39
  };
40
+ title: string;
39
41
  content: string;
40
42
  feed_id: string;
41
43
  foreign_id: string;
@@ -51,6 +53,60 @@ export declare const activitiesFeedMock: {
51
53
  target: string;
52
54
  time: string;
53
55
  verb: string;
56
+ } | {
57
+ actor: {
58
+ created_at: string;
59
+ updated_at: string;
60
+ id: string;
61
+ data: {
62
+ jobTitle: string;
63
+ name: string;
64
+ organization: string;
65
+ };
66
+ };
67
+ content: string;
68
+ feed_id: string;
69
+ foreign_id: string;
70
+ id: string;
71
+ latest_reactions: {};
72
+ latest_reactions_extra: {};
73
+ object: string;
74
+ origin: null;
75
+ own_reactions: {};
76
+ reaction_counts: {
77
+ like?: undefined;
78
+ };
79
+ target: string;
80
+ time: string;
81
+ verb: string;
82
+ title?: undefined;
83
+ } | {
84
+ actor: {
85
+ created_at: string;
86
+ updated_at: string;
87
+ id: string;
88
+ data: {
89
+ jobTitle: string;
90
+ name: string;
91
+ organization: string;
92
+ };
93
+ };
94
+ title: string;
95
+ feed_id: string;
96
+ foreign_id: string;
97
+ id: string;
98
+ latest_reactions: {};
99
+ latest_reactions_extra: {};
100
+ object: string;
101
+ origin: null;
102
+ own_reactions: {};
103
+ reaction_counts: {
104
+ like?: undefined;
105
+ };
106
+ target: string;
107
+ time: string;
108
+ verb: string;
109
+ content?: undefined;
54
110
  })[];
55
111
  next: string;
56
112
  duration: string;
@@ -1,4 +1,5 @@
1
1
  import type { FlatActivityEnriched } from 'getstream';
2
2
  export interface IActivity extends FlatActivityEnriched {
3
+ title: string;
3
4
  content: string;
4
5
  }