@capillarytech/creatives-library 8.0.141 → 8.0.142

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 (40) hide show
  1. package/initialReducer.js +2 -0
  2. package/package.json +2 -2
  3. package/services/api.js +5 -0
  4. package/services/tests/api.test.js +17 -0
  5. package/v2Components/MobilePushPreviewV2/index.js +8 -0
  6. package/v2Components/NavigationBar/saga.js +1 -1
  7. package/v2Components/NavigationBar/tests/saga.test.js +2 -2
  8. package/v2Components/TemplatePreview/assets/images/empty_android.svg +8 -0
  9. package/v2Components/TemplatePreview/assets/images/empty_ios.svg +5 -0
  10. package/v2Components/TemplatePreview/index.js +28 -2
  11. package/v2Containers/BeePopupEditor/constants.js +10 -0
  12. package/v2Containers/BeePopupEditor/index.js +169 -0
  13. package/v2Containers/BeePopupEditor/tests/index.test.js +628 -0
  14. package/v2Containers/CreativesContainer/SlideBoxContent.js +26 -8
  15. package/v2Containers/CreativesContainer/index.js +12 -2
  16. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +5 -0
  17. package/v2Containers/InApp/actions.js +7 -0
  18. package/v2Containers/InApp/constants.js +5 -1
  19. package/v2Containers/InApp/index.js +76 -53
  20. package/v2Containers/InApp/reducer.js +17 -0
  21. package/v2Containers/InApp/sagas.js +27 -0
  22. package/v2Containers/InApp/selectors.js +23 -1
  23. package/v2Containers/InApp/tests/index.test.js +0 -9
  24. package/v2Containers/InApp/tests/reducer.test.js +33 -0
  25. package/v2Containers/InApp/tests/sagas.test.js +57 -1
  26. package/v2Containers/InApp/tests/selector.test.js +612 -0
  27. package/v2Containers/InappAdvanced/index.js +459 -0
  28. package/v2Containers/InappAdvanced/index.scss +11 -0
  29. package/v2Containers/InappAdvanced/tests/index.test.js +442 -0
  30. package/v2Containers/InappWrapper/_inappWrapper.scss +19 -0
  31. package/v2Containers/InappWrapper/index.js +194 -0
  32. package/v2Containers/InappWrapper/messages.js +38 -0
  33. package/v2Containers/InappWrapper/tests/index.test.js +247 -0
  34. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +3 -0
  35. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +2 -0
  36. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +2 -0
  37. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +9 -0
  38. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +18 -0
  39. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +4 -0
  40. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +35 -0
@@ -0,0 +1,247 @@
1
+ import React from 'react';
2
+ import { Provider } from 'react-redux';
3
+ import '@testing-library/jest-dom';
4
+ import { injectIntl } from 'react-intl';
5
+ import { configureStore } from '@capillarytech/vulcan-react-sdk/utils';
6
+ import history from '../../../utils/history';
7
+ import { initialReducer } from '../../../initialReducer';
8
+ import { InappWrapper } from '../index';
9
+ import { render, screen, fireEvent } from '../../../utils/test-utils';
10
+
11
+ // Mock child components
12
+ jest.mock('../../InApp/index.js', () => ({
13
+ __esModule: true,
14
+ default: (props) => (
15
+ <div data-testid="inapp-basic-editor">
16
+ InApp Basic Editor
17
+ </div>
18
+ ),
19
+ }));
20
+
21
+ jest.mock('../../InappAdvanced/index.js', () => ({
22
+ __esModule: true,
23
+ default: (props) => (
24
+ <div data-testid="inapp-advanced-editor">
25
+ InApp Advanced Editor
26
+ </div>
27
+ ),
28
+ }));
29
+
30
+ let store;
31
+ beforeAll(() => {
32
+ store = configureStore({}, initialReducer, history);
33
+ });
34
+
35
+ const ComponentToRender = injectIntl(InappWrapper);
36
+ const renderComponent = (props) =>
37
+ render(
38
+ <Provider store={store}>
39
+ <ComponentToRender {...props} />
40
+ </Provider>
41
+ );
42
+
43
+ describe('InappWrapper Component', () => {
44
+ let defaultProps;
45
+
46
+ beforeEach(() => {
47
+ defaultProps = {
48
+ inAppCreateMode: 'basicEditor',
49
+ step: 'modeSelection',
50
+ getFormData: jest.fn(),
51
+ setIsLoadingContent: jest.fn(),
52
+ isGetFormData: false,
53
+ query: { type: 'inapp' },
54
+ isFullMode: true,
55
+ showTemplateName: jest.fn(),
56
+ type: 'inapp',
57
+ onValidationFail: jest.fn(),
58
+ templateData: { id: 'test-template' },
59
+ onInAppModeChange: jest.fn(),
60
+ onEnterTemplateName: jest.fn(),
61
+ onRemoveTemplateName: jest.fn(),
62
+ forwardedTags: {},
63
+ selectedOfferDetails: {},
64
+ onCreateComplete: jest.fn(),
65
+ };
66
+ });
67
+
68
+ describe('Mode Selection Step', () => {
69
+
70
+ it('should render template name input when isFullMode is true', () => {
71
+ renderComponent({
72
+ ...defaultProps,
73
+ step: 'modeSelection',
74
+ isFullMode: true,
75
+ });
76
+
77
+ expect(screen.getByTestId('template-name-input')).toBeInTheDocument();
78
+ });
79
+
80
+ it('should not render template name input when isFullMode is false', () => {
81
+ renderComponent({
82
+ ...defaultProps,
83
+ step: 'modeSelection',
84
+ isFullMode: false,
85
+ });
86
+
87
+ expect(screen.queryByTestId('template-name-input')).not.toBeInTheDocument();
88
+ });
89
+
90
+ it('should update template name and call onEnterTemplateName when input value changes', () => {
91
+ const mockOnEnterTemplateName = jest.fn();
92
+ renderComponent({
93
+ ...defaultProps,
94
+ step: 'modeSelection',
95
+ onEnterTemplateName: mockOnEnterTemplateName,
96
+ });
97
+
98
+ const input = screen.getByTestId('template-name-input');
99
+ fireEvent.change(input, { target: { value: 'Test Template' } });
100
+
101
+ expect(input.value).toBe('Test Template');
102
+ expect(mockOnEnterTemplateName).toHaveBeenCalled();
103
+ });
104
+
105
+ it('should call onRemoveTemplateName when template name is cleared', () => {
106
+ const mockOnRemoveTemplateName = jest.fn();
107
+ renderComponent({
108
+ ...defaultProps,
109
+ step: 'modeSelection',
110
+ onRemoveTemplateName: mockOnRemoveTemplateName,
111
+ });
112
+
113
+ const input = screen.getByTestId('template-name-input');
114
+
115
+ // First add some text
116
+ fireEvent.change(input, { target: { value: 'Test' } });
117
+ // Then clear it
118
+ fireEvent.change(input, { target: { value: '' } });
119
+
120
+ expect(mockOnRemoveTemplateName).toHaveBeenCalled();
121
+ });
122
+ });
123
+
124
+ describe('Editor Rendering', () => {
125
+ it('should render InApp component when inAppCreateMode is "basicEditor" and step is not "modeSelection"', () => {
126
+ renderComponent({
127
+ ...defaultProps,
128
+ step: 'editor',
129
+ inAppCreateMode: 'basicEditor',
130
+ });
131
+
132
+ expect(screen.getByTestId('inapp-basic-editor')).toBeInTheDocument();
133
+ expect(screen.queryByTestId('inapp-advanced-editor')).not.toBeInTheDocument();
134
+ });
135
+
136
+ it('should render InappAdvanced component when inAppCreateMode is "beeEditor" and step is not "modeSelection"', () => {
137
+ renderComponent({
138
+ ...defaultProps,
139
+ step: 'editor',
140
+ inAppCreateMode: 'beeEditor',
141
+ });
142
+
143
+ expect(screen.getByTestId('inapp-advanced-editor')).toBeInTheDocument();
144
+ expect(screen.queryByTestId('inapp-basic-editor')).not.toBeInTheDocument();
145
+ });
146
+
147
+ it('should pass all required props to InApp component', () => {
148
+ const customProps = {
149
+ step: 'editor',
150
+ inAppCreateMode: 'basicEditor',
151
+ getFormData: jest.fn(),
152
+ templateData: { id: 'test' },
153
+ };
154
+
155
+ renderComponent({ ...defaultProps, ...customProps });
156
+
157
+ const inAppComponent = screen.getByTestId('inapp-basic-editor');
158
+ expect(inAppComponent).toBeInTheDocument();
159
+ });
160
+
161
+ it('should pass all required props to InappAdvanced component', () => {
162
+ const customProps = {
163
+ step: 'editor',
164
+ inAppCreateMode: 'beeEditor',
165
+ getFormData: jest.fn(),
166
+ templateData: { id: 'test' },
167
+ };
168
+
169
+ renderComponent({ ...defaultProps, ...customProps });
170
+
171
+ const advancedComponent = screen.getByTestId('inapp-advanced-editor');
172
+ expect(advancedComponent).toBeInTheDocument();
173
+ });
174
+ });
175
+
176
+ describe('Component Structure', () => {
177
+ it('should have the correct CSS class on the wrapper', () => {
178
+ const { container } = renderComponent({ ...defaultProps });
179
+
180
+ expect(container.firstChild).toHaveClass('inapp-wrapper');
181
+ });
182
+ });
183
+
184
+ describe('Props Validation', () => {
185
+ it('should handle missing optional props gracefully', () => {
186
+ const minimalProps = {
187
+ inAppCreateMode: 'basicEditor',
188
+ step: 'modeSelection',
189
+ };
190
+
191
+ expect(() => {
192
+ renderComponent({ ...defaultProps, ...minimalProps });
193
+ }).not.toThrow();
194
+ });
195
+
196
+ it('should handle undefined values in props', () => {
197
+ const propsWithUndefined = {
198
+ ...defaultProps,
199
+ templateData: undefined,
200
+ query: undefined,
201
+ };
202
+
203
+ expect(() => {
204
+ renderComponent({ ...defaultProps, ...propsWithUndefined });
205
+ }).not.toThrow();
206
+ });
207
+ });
208
+
209
+ describe('State Management', () => {
210
+ it('should maintain internal template name state', () => {
211
+ renderComponent({
212
+ ...defaultProps,
213
+ step: 'modeSelection'
214
+ });
215
+
216
+ const input = screen.getByTestId('template-name-input');
217
+ fireEvent.change(input, { target: { value: 'My Template' } });
218
+
219
+ expect(input.value).toBe('My Template');
220
+ });
221
+ });
222
+
223
+ describe('Conditional Rendering', () => {
224
+
225
+ it('should only render editor when step is not "modeSelection"', () => {
226
+ renderComponent({
227
+ ...defaultProps,
228
+ step: 'editor',
229
+ inAppCreateMode: 'basicEditor',
230
+ });
231
+
232
+ expect(screen.queryByTestId('cap-radio-card')).not.toBeInTheDocument();
233
+ expect(screen.getByTestId('inapp-basic-editor')).toBeInTheDocument();
234
+ });
235
+
236
+ it('should not render any editor when no matching inAppCreateMode', () => {
237
+ renderComponent({
238
+ ...defaultProps,
239
+ step: 'editor',
240
+ inAppCreateMode: 'unknownMode',
241
+ });
242
+
243
+ expect(screen.queryByTestId('inapp-basic-editor')).not.toBeInTheDocument();
244
+ expect(screen.queryByTestId('inapp-advanced-editor')).not.toBeInTheDocument();
245
+ });
246
+ });
247
+ });
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -5964,6 +5965,7 @@ new message content.",
5964
5965
  "email": [Function],
5965
5966
  "facebookPreview": [Function],
5966
5967
  "gallery": [Function],
5968
+ "inapp": [Function],
5967
5969
  "language": [Function],
5968
5970
  "navigationConfig": [Function],
5969
5971
  "previewAndTest": [Function],
@@ -9786,6 +9788,7 @@ new message content.",
9786
9788
  "email": [Function],
9787
9789
  "facebookPreview": [Function],
9788
9790
  "gallery": [Function],
9791
+ "inapp": [Function],
9789
9792
  "language": [Function],
9790
9793
  "navigationConfig": [Function],
9791
9794
  "previewAndTest": [Function],
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -21554,6 +21555,7 @@ new message content.",
21554
21555
  "email": [Function],
21555
21556
  "facebookPreview": [Function],
21556
21557
  "gallery": [Function],
21558
+ "inapp": [Function],
21557
21559
  "language": [Function],
21558
21560
  "navigationConfig": [Function],
21559
21561
  "previewAndTest": [Function],
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -34885,6 +34886,7 @@ new message content.",
34885
34886
  "email": [Function],
34886
34887
  "facebookPreview": [Function],
34887
34888
  "gallery": [Function],
34889
+ "inapp": [Function],
34888
34890
  "language": [Function],
34889
34891
  "navigationConfig": [Function],
34890
34892
  "previewAndTest": [Function],
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -11299,6 +11300,7 @@ new message content.",
11299
11300
  "email": [Function],
11300
11301
  "facebookPreview": [Function],
11301
11302
  "gallery": [Function],
11303
+ "inapp": [Function],
11302
11304
  "language": [Function],
11303
11305
  "navigationConfig": [Function],
11304
11306
  "previewAndTest": [Function],
@@ -20501,6 +20503,7 @@ new message content.",
20501
20503
  "email": [Function],
20502
20504
  "facebookPreview": [Function],
20503
20505
  "gallery": [Function],
20506
+ "inapp": [Function],
20504
20507
  "language": [Function],
20505
20508
  "navigationConfig": [Function],
20506
20509
  "previewAndTest": [Function],
@@ -29980,6 +29983,7 @@ new message content.",
29980
29983
  "email": [Function],
29981
29984
  "facebookPreview": [Function],
29982
29985
  "gallery": [Function],
29986
+ "inapp": [Function],
29983
29987
  "language": [Function],
29984
29988
  "navigationConfig": [Function],
29985
29989
  "previewAndTest": [Function],
@@ -41680,6 +41684,7 @@ new message content.",
41680
41684
  "email": [Function],
41681
41685
  "facebookPreview": [Function],
41682
41686
  "gallery": [Function],
41687
+ "inapp": [Function],
41683
41688
  "language": [Function],
41684
41689
  "navigationConfig": [Function],
41685
41690
  "previewAndTest": [Function],
@@ -53422,6 +53427,7 @@ new message content.",
53422
53427
  "email": [Function],
53423
53428
  "facebookPreview": [Function],
53424
53429
  "gallery": [Function],
53430
+ "inapp": [Function],
53425
53431
  "language": [Function],
53426
53432
  "navigationConfig": [Function],
53427
53433
  "previewAndTest": [Function],
@@ -61214,6 +61220,7 @@ new message content.",
61214
61220
  "email": [Function],
61215
61221
  "facebookPreview": [Function],
61216
61222
  "gallery": [Function],
61223
+ "inapp": [Function],
61217
61224
  "language": [Function],
61218
61225
  "navigationConfig": [Function],
61219
61226
  "previewAndTest": [Function],
@@ -69424,6 +69431,7 @@ new message content.",
69424
69431
  "email": [Function],
69425
69432
  "facebookPreview": [Function],
69426
69433
  "gallery": [Function],
69434
+ "inapp": [Function],
69427
69435
  "language": [Function],
69428
69436
  "navigationConfig": [Function],
69429
69437
  "previewAndTest": [Function],
@@ -77911,6 +77919,7 @@ new message content.",
77911
77919
  "email": [Function],
77912
77920
  "facebookPreview": [Function],
77913
77921
  "gallery": [Function],
77922
+ "inapp": [Function],
77914
77923
  "language": [Function],
77915
77924
  "navigationConfig": [Function],
77916
77925
  "previewAndTest": [Function],
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -26291,6 +26292,7 @@ new message content.",
26291
26292
  "email": [Function],
26292
26293
  "facebookPreview": [Function],
26293
26294
  "gallery": [Function],
26295
+ "inapp": [Function],
26294
26296
  "language": [Function],
26295
26297
  "navigationConfig": [Function],
26296
26298
  "previewAndTest": [Function],
@@ -50684,6 +50686,7 @@ new message content.",
50684
50686
  "email": [Function],
50685
50687
  "facebookPreview": [Function],
50686
50688
  "gallery": [Function],
50689
+ "inapp": [Function],
50687
50690
  "language": [Function],
50688
50691
  "navigationConfig": [Function],
50689
50692
  "previewAndTest": [Function],
@@ -71063,6 +71066,7 @@ new message content.",
71063
71066
  "email": [Function],
71064
71067
  "facebookPreview": [Function],
71065
71068
  "gallery": [Function],
71069
+ "inapp": [Function],
71066
71070
  "language": [Function],
71067
71071
  "navigationConfig": [Function],
71068
71072
  "previewAndTest": [Function],
@@ -91719,6 +91723,7 @@ new message content.",
91719
91723
  "email": [Function],
91720
91724
  "facebookPreview": [Function],
91721
91725
  "gallery": [Function],
91726
+ "inapp": [Function],
91722
91727
  "language": [Function],
91723
91728
  "navigationConfig": [Function],
91724
91729
  "previewAndTest": [Function],
@@ -112551,6 +112556,7 @@ new message content.",
112551
112556
  "email": [Function],
112552
112557
  "facebookPreview": [Function],
112553
112558
  "gallery": [Function],
112559
+ "inapp": [Function],
112554
112560
  "language": [Function],
112555
112561
  "navigationConfig": [Function],
112556
112562
  "previewAndTest": [Function],
@@ -133489,6 +133495,7 @@ new message content.",
133489
133495
  "email": [Function],
133490
133496
  "facebookPreview": [Function],
133491
133497
  "gallery": [Function],
133498
+ "inapp": [Function],
133492
133499
  "language": [Function],
133493
133500
  "navigationConfig": [Function],
133494
133501
  "previewAndTest": [Function],
@@ -154321,6 +154328,7 @@ new message content.",
154321
154328
  "email": [Function],
154322
154329
  "facebookPreview": [Function],
154323
154330
  "gallery": [Function],
154331
+ "inapp": [Function],
154324
154332
  "language": [Function],
154325
154333
  "navigationConfig": [Function],
154326
154334
  "previewAndTest": [Function],
@@ -175259,6 +175267,7 @@ new message content.",
175259
175267
  "email": [Function],
175260
175268
  "facebookPreview": [Function],
175261
175269
  "gallery": [Function],
175270
+ "inapp": [Function],
175262
175271
  "language": [Function],
175263
175272
  "navigationConfig": [Function],
175264
175273
  "previewAndTest": [Function],
@@ -195361,6 +195370,7 @@ new message content.",
195361
195370
  "email": [Function],
195362
195371
  "facebookPreview": [Function],
195363
195372
  "gallery": [Function],
195373
+ "inapp": [Function],
195364
195374
  "language": [Function],
195365
195375
  "navigationConfig": [Function],
195366
195376
  "previewAndTest": [Function],
@@ -221531,6 +221541,7 @@ new message content.",
221531
221541
  "email": [Function],
221532
221542
  "facebookPreview": [Function],
221533
221543
  "gallery": [Function],
221544
+ "inapp": [Function],
221534
221545
  "language": [Function],
221535
221546
  "navigationConfig": [Function],
221536
221547
  "previewAndTest": [Function],
@@ -239758,6 +239769,7 @@ new message content.",
239758
239769
  "email": [Function],
239759
239770
  "facebookPreview": [Function],
239760
239771
  "gallery": [Function],
239772
+ "inapp": [Function],
239761
239773
  "language": [Function],
239762
239774
  "navigationConfig": [Function],
239763
239775
  "previewAndTest": [Function],
@@ -260149,6 +260161,7 @@ new message content.",
260149
260161
  "email": [Function],
260150
260162
  "facebookPreview": [Function],
260151
260163
  "gallery": [Function],
260164
+ "inapp": [Function],
260152
260165
  "language": [Function],
260153
260166
  "navigationConfig": [Function],
260154
260167
  "previewAndTest": [Function],
@@ -280808,6 +280821,7 @@ new message content.",
280808
280821
  "email": [Function],
280809
280822
  "facebookPreview": [Function],
280810
280823
  "gallery": [Function],
280824
+ "inapp": [Function],
280811
280825
  "language": [Function],
280812
280826
  "navigationConfig": [Function],
280813
280827
  "previewAndTest": [Function],
@@ -300910,6 +300924,7 @@ new message content.",
300910
300924
  "email": [Function],
300911
300925
  "facebookPreview": [Function],
300912
300926
  "gallery": [Function],
300927
+ "inapp": [Function],
300913
300928
  "language": [Function],
300914
300929
  "navigationConfig": [Function],
300915
300930
  "previewAndTest": [Function],
@@ -321289,6 +321304,7 @@ new message content.",
321289
321304
  "email": [Function],
321290
321305
  "facebookPreview": [Function],
321291
321306
  "gallery": [Function],
321307
+ "inapp": [Function],
321292
321308
  "language": [Function],
321293
321309
  "navigationConfig": [Function],
321294
321310
  "previewAndTest": [Function],
@@ -341951,6 +341967,7 @@ new message content.",
341951
341967
  "email": [Function],
341952
341968
  "facebookPreview": [Function],
341953
341969
  "gallery": [Function],
341970
+ "inapp": [Function],
341954
341971
  "language": [Function],
341955
341972
  "navigationConfig": [Function],
341956
341973
  "previewAndTest": [Function],
@@ -362344,6 +362361,7 @@ new message content.",
362344
362361
  "email": [Function],
362345
362362
  "facebookPreview": [Function],
362346
362363
  "gallery": [Function],
362364
+ "inapp": [Function],
362347
362365
  "language": [Function],
362348
362366
  "navigationConfig": [Function],
362349
362367
  "previewAndTest": [Function],
@@ -2281,6 +2281,7 @@ new message content.",
2281
2281
  "email": [Function],
2282
2282
  "facebookPreview": [Function],
2283
2283
  "gallery": [Function],
2284
+ "inapp": [Function],
2284
2285
  "language": [Function],
2285
2286
  "navigationConfig": [Function],
2286
2287
  "previewAndTest": [Function],
@@ -9335,6 +9336,7 @@ new message content.",
9335
9336
  "email": [Function],
9336
9337
  "facebookPreview": [Function],
9337
9338
  "gallery": [Function],
9339
+ "inapp": [Function],
9338
9340
  "language": [Function],
9339
9341
  "navigationConfig": [Function],
9340
9342
  "previewAndTest": [Function],
@@ -16195,6 +16197,7 @@ new message content.",
16195
16197
  "email": [Function],
16196
16198
  "facebookPreview": [Function],
16197
16199
  "gallery": [Function],
16200
+ "inapp": [Function],
16198
16201
  "language": [Function],
16199
16202
  "navigationConfig": [Function],
16200
16203
  "previewAndTest": [Function],
@@ -23055,6 +23058,7 @@ new message content.",
23055
23058
  "email": [Function],
23056
23059
  "facebookPreview": [Function],
23057
23060
  "gallery": [Function],
23061
+ "inapp": [Function],
23058
23062
  "language": [Function],
23059
23063
  "navigationConfig": [Function],
23060
23064
  "previewAndTest": [Function],