@hubspot/cms-component-library 0.1.0 → 0.3.0

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 (145) hide show
  1. package/components/componentLibrary/Accordion/AccordionContent/ContentFields.tsx +5 -3
  2. package/components/componentLibrary/Accordion/AccordionItem/StyleFields.tsx +5 -3
  3. package/components/componentLibrary/Accordion/AccordionItem/index.module.scss +2 -2
  4. package/components/componentLibrary/Accordion/AccordionItem/index.tsx +3 -3
  5. package/components/componentLibrary/Accordion/AccordionTitle/ContentFields.tsx +5 -3
  6. package/components/componentLibrary/Accordion/AccordionTitle/index.module.scss +2 -2
  7. package/components/componentLibrary/Accordion/stories/Accordion.stories.tsx +80 -1
  8. package/components/componentLibrary/Accordion/stories/AccordionDecorator.tsx +14 -14
  9. package/components/componentLibrary/Button/ContentFields.tsx +5 -3
  10. package/components/componentLibrary/Button/StyleFields.tsx +26 -4
  11. package/components/componentLibrary/Button/index.module.scss +22 -14
  12. package/components/componentLibrary/Button/index.tsx +6 -6
  13. package/components/componentLibrary/Button/llm.txt +5 -1
  14. package/components/componentLibrary/Button/stories/Button.AsButton.stories.tsx +30 -1
  15. package/components/componentLibrary/Button/stories/Button.AsLink.stories.tsx +38 -1
  16. package/components/componentLibrary/Button/stories/ButtonDecorator.tsx +1 -1
  17. package/components/componentLibrary/Button/types.ts +6 -1
  18. package/components/componentLibrary/Card/StyleFields.tsx +5 -3
  19. package/components/componentLibrary/Card/stories/Card.stories.tsx +46 -1
  20. package/components/componentLibrary/Card/stories/CardDecorator.tsx +1 -1
  21. package/components/componentLibrary/Divider/ContentFields.tsx +5 -3
  22. package/components/componentLibrary/Divider/StyleFields.tsx +5 -3
  23. package/components/componentLibrary/Divider/index.module.scss +6 -6
  24. package/components/componentLibrary/Divider/index.tsx +7 -3
  25. package/components/componentLibrary/Divider/stories/Divider.stories.tsx +44 -50
  26. package/components/componentLibrary/Divider/stories/{DividerDecorator.module.css → DividerDecorator.module.scss} +5 -4
  27. package/components/componentLibrary/Divider/stories/DividerDecorator.tsx +1 -1
  28. package/components/componentLibrary/Divider/types.ts +3 -1
  29. package/components/componentLibrary/Drawer/hooks/index.tsx +13 -0
  30. package/components/componentLibrary/Drawer/index.module.scss +94 -0
  31. package/components/componentLibrary/Drawer/index.tsx +131 -0
  32. package/components/componentLibrary/Drawer/llm.txt +416 -0
  33. package/components/componentLibrary/Drawer/stories/Drawer.stories.tsx +512 -0
  34. package/components/componentLibrary/Drawer/stories/DrawerDecorator.module.scss +8 -0
  35. package/components/componentLibrary/Drawer/stories/DrawerDecorator.tsx +18 -0
  36. package/components/componentLibrary/Drawer/types.ts +25 -0
  37. package/components/componentLibrary/Flex/stories/FlexDecorator.tsx +1 -1
  38. package/components/componentLibrary/Flex/types.ts +3 -1
  39. package/components/componentLibrary/Grid/stories/Grid.stories.tsx +454 -152
  40. package/components/componentLibrary/Grid/stories/GridDecorator.tsx +2 -2
  41. package/components/componentLibrary/Heading/ContentFields.tsx +5 -3
  42. package/components/componentLibrary/Heading/StyleFields.tsx +11 -9
  43. package/components/componentLibrary/Heading/index.tsx +3 -3
  44. package/components/componentLibrary/Heading/llm.txt +8 -8
  45. package/components/componentLibrary/Heading/stories/Heading.stories.tsx +3 -3
  46. package/components/componentLibrary/Heading/stories/HeadingDecorator.tsx +1 -1
  47. package/components/componentLibrary/Heading/types.ts +4 -4
  48. package/components/componentLibrary/Icon/ContentFields.tsx +5 -3
  49. package/components/componentLibrary/Icon/stories/Icon.stories.tsx +1 -1
  50. package/components/componentLibrary/Icon/stories/IconDecorator.tsx +1 -1
  51. package/components/componentLibrary/Image/ContentFields.tsx +5 -3
  52. package/components/componentLibrary/Image/index.tsx +4 -4
  53. package/components/componentLibrary/Image/llm.txt +17 -17
  54. package/components/componentLibrary/Image/stories/Image.stories.tsx +61 -18
  55. package/components/componentLibrary/Image/stories/ImageDecorator.tsx +1 -1
  56. package/components/componentLibrary/Image/types.ts +2 -2
  57. package/components/componentLibrary/LanguageSwitcher/ContentFields.tsx +18 -0
  58. package/components/componentLibrary/LanguageSwitcher/LanguageOptions.module.scss +37 -0
  59. package/components/componentLibrary/LanguageSwitcher/LanguageOptions.tsx +65 -0
  60. package/components/componentLibrary/LanguageSwitcher/StyleFields.tsx +48 -0
  61. package/components/componentLibrary/LanguageSwitcher/_dummyData.tsx +247 -0
  62. package/components/componentLibrary/LanguageSwitcher/assets/Globe.tsx +16 -0
  63. package/components/componentLibrary/LanguageSwitcher/index.module.scss +58 -0
  64. package/components/componentLibrary/LanguageSwitcher/index.tsx +125 -0
  65. package/components/componentLibrary/LanguageSwitcher/llm.txt +380 -0
  66. package/components/componentLibrary/LanguageSwitcher/stories/LanguageSwitcher.stories.tsx +349 -0
  67. package/components/componentLibrary/LanguageSwitcher/stories/LanguageSwitcherDecorator.module.scss +5 -0
  68. package/components/componentLibrary/LanguageSwitcher/stories/LanguageSwitcherDecorator.tsx +8 -0
  69. package/components/componentLibrary/LanguageSwitcher/types.ts +48 -0
  70. package/components/componentLibrary/LanguageSwitcher/utils.tsx +38 -0
  71. package/components/componentLibrary/Link/ContentFields.tsx +5 -3
  72. package/components/componentLibrary/Link/StyleFields.tsx +5 -3
  73. package/components/componentLibrary/Link/index.module.scss +10 -0
  74. package/components/componentLibrary/Link/index.tsx +24 -14
  75. package/components/componentLibrary/Link/stories/Link.stories.tsx +35 -5
  76. package/components/componentLibrary/Link/stories/LinkDecorator.tsx +11 -1
  77. package/components/componentLibrary/Link/types.ts +22 -13
  78. package/components/componentLibrary/List/ContentFields.tsx +5 -3
  79. package/components/componentLibrary/List/ListItem/ContentFields.tsx +6 -17
  80. package/components/componentLibrary/List/ListItem/index.module.scss +1 -13
  81. package/components/componentLibrary/List/ListItem/index.tsx +3 -30
  82. package/components/componentLibrary/List/ListItem/types.ts +1 -16
  83. package/components/componentLibrary/List/StyleFields.tsx +15 -18
  84. package/components/componentLibrary/List/index.module.scss +3 -0
  85. package/components/componentLibrary/List/index.tsx +5 -2
  86. package/components/componentLibrary/List/llm.txt +73 -103
  87. package/components/componentLibrary/List/stories/List.stories.tsx +56 -80
  88. package/components/componentLibrary/List/stories/ListDecorator.tsx +3 -6
  89. package/components/componentLibrary/List/types.ts +1 -3
  90. package/components/componentLibrary/Logo/_dummyLogoData.ts +12 -0
  91. package/components/componentLibrary/Logo/assets/hubspot-logo.png +0 -0
  92. package/components/componentLibrary/Logo/index.module.scss +22 -0
  93. package/components/componentLibrary/Logo/index.tsx +73 -0
  94. package/components/componentLibrary/Logo/llm.txt +262 -0
  95. package/components/componentLibrary/Logo/stories/Logo.stories.tsx +88 -0
  96. package/components/componentLibrary/Logo/stories/LogoDecorator.module.scss +10 -0
  97. package/components/componentLibrary/Logo/stories/LogoDecorator.tsx +8 -0
  98. package/components/componentLibrary/Logo/types.tsx +16 -0
  99. package/components/componentLibrary/Menu/ContentFields.tsx +16 -0
  100. package/components/componentLibrary/Menu/MenuItem/Chevron/index.module.scss +6 -0
  101. package/components/componentLibrary/Menu/MenuItem/Chevron/index.tsx +17 -0
  102. package/components/componentLibrary/Menu/MenuItem/index.module.scss +7 -0
  103. package/components/componentLibrary/Menu/MenuItem/index.tsx +266 -0
  104. package/components/componentLibrary/Menu/MenuItem/types.ts +17 -0
  105. package/components/componentLibrary/Menu/NavigationMenu/ContentFields.tsx +20 -0
  106. package/components/componentLibrary/Menu/NavigationMenu/index.tsx +18 -0
  107. package/components/componentLibrary/Menu/NavigationMenu/islands/NavigationMenuIsland.tsx +95 -0
  108. package/components/componentLibrary/Menu/NavigationMenu/islands/index.module.scss +100 -0
  109. package/components/componentLibrary/Menu/NavigationMenu/islands/types.ts +19 -0
  110. package/components/componentLibrary/Menu/NavigationMenu/llm.txt +197 -0
  111. package/components/componentLibrary/Menu/NavigationMenu/stories/NavigationMenu.stories.tsx +286 -0
  112. package/components/componentLibrary/Menu/NavigationMenu/stories/NavigationMenuDecorator.module.scss +15 -0
  113. package/components/componentLibrary/Menu/NavigationMenu/stories/NavigationMenuDecorator.tsx +12 -0
  114. package/components/componentLibrary/Menu/NavigationMenu/types.ts +3 -0
  115. package/components/componentLibrary/Menu/VerticalMenu/ContentFields.tsx +20 -0
  116. package/components/componentLibrary/Menu/VerticalMenu/index.tsx +18 -0
  117. package/components/componentLibrary/Menu/VerticalMenu/islands/index.module.scss +53 -0
  118. package/components/componentLibrary/Menu/VerticalMenu/islands/verticalMenuIsland.tsx +78 -0
  119. package/components/componentLibrary/Menu/VerticalMenu/llm.txt +177 -0
  120. package/components/componentLibrary/Menu/VerticalMenu/stories/VerticalMenu.stories.tsx +242 -0
  121. package/components/componentLibrary/Menu/VerticalMenu/stories/VerticalMenuDecorator.module.scss +19 -0
  122. package/components/componentLibrary/Menu/VerticalMenu/stories/VerticalMenuDecorator.tsx +12 -0
  123. package/components/componentLibrary/Menu/VerticalMenu/types.ts +21 -0
  124. package/components/componentLibrary/Menu/_dummyMenuData.js +1346 -0
  125. package/components/componentLibrary/Menu/types.ts +56 -0
  126. package/components/componentLibrary/Menu/utils/transformMenuData.ts +11 -0
  127. package/components/componentLibrary/_patterns/README.md +15 -17
  128. package/components/componentLibrary/_patterns/checklist-and-examples.md +17 -17
  129. package/components/componentLibrary/_patterns/component-structure.md +21 -23
  130. package/components/componentLibrary/_patterns/css-patterns.md +170 -18
  131. package/components/componentLibrary/_patterns/field-patterns.md +97 -27
  132. package/components/componentLibrary/_patterns/function-declaration-patterns.md +281 -0
  133. package/components/componentLibrary/_patterns/llm-txt.template.md +4 -2
  134. package/components/componentLibrary/_patterns/prop-naming-patterns.md +208 -0
  135. package/components/componentLibrary/_patterns/storybook-patterns.md +25 -8
  136. package/components/componentLibrary/_patterns/typescript-patterns.md +6 -3
  137. package/package.json +6 -3
  138. /package/components/componentLibrary/Button/stories/{ButtonDecorator.module.css → ButtonDecorator.module.scss} +0 -0
  139. /package/components/componentLibrary/Card/stories/{CardDecorator.module.css → CardDecorator.module.scss} +0 -0
  140. /package/components/componentLibrary/Flex/stories/{FlexDecorator.module.css → FlexDecorator.module.scss} +0 -0
  141. /package/components/componentLibrary/Grid/stories/{GridDecorator.module.css → GridDecorator.module.scss} +0 -0
  142. /package/components/componentLibrary/Heading/stories/{HeadingDecorator.module.css → HeadingDecorator.module.scss} +0 -0
  143. /package/components/componentLibrary/Icon/stories/{IconDecorator.module.css → IconDecorator.module.scss} +0 -0
  144. /package/components/componentLibrary/Image/stories/{ImageDecorator.module.css → ImageDecorator.module.scss} +0 -0
  145. /package/components/componentLibrary/Image/stories/assets/{catSmile.jpg → cat-smile.jpg} +0 -0
@@ -0,0 +1,1346 @@
1
+ export const dummyMenuData = {
2
+ body: {
3
+ pages_tree: {
4
+ active_branch: false,
5
+ active_node: false,
6
+ blog_node: false,
7
+ category_id: null,
8
+ children: [
9
+ {
10
+ active_branch: false,
11
+ active_node: false,
12
+ blog_node: false,
13
+ category_id: 1,
14
+ children: [],
15
+ content_group_id: null,
16
+ content_type: 'site_page',
17
+ error_message: null,
18
+ guid: null,
19
+ is_deleted: false,
20
+ is_non_linking_node: false,
21
+ is_published: true,
22
+ label: 'Test anchor',
23
+ level: null,
24
+ link_target: null,
25
+ live: true,
26
+ node_type: 2,
27
+ page_id: 188513707284,
28
+ page_title: 'ElevateBeejTest',
29
+ parent_guid: null,
30
+ slug: null,
31
+ state: 'PUBLISHED_OR_SCHEDULED',
32
+ subcategory: 'site_page',
33
+ top_level_ancestor_guid: null,
34
+ url: null,
35
+ url_param_str: '#test',
36
+ url_without_anchor: 'null',
37
+ },
38
+ {
39
+ active_branch: false,
40
+ active_node: false,
41
+ blog_node: false,
42
+ category_id: null,
43
+ children: [],
44
+ content_group_id: null,
45
+ content_type: null,
46
+ error_message: null,
47
+ guid: null,
48
+ is_deleted: false,
49
+ is_non_linking_node: false,
50
+ is_published: true,
51
+ label: 'Anchor',
52
+ level: null,
53
+ link_target: null,
54
+ live: true,
55
+ node_type: 3,
56
+ page_id: null,
57
+ page_title: null,
58
+ parent_guid: null,
59
+ slug: null,
60
+ state: null,
61
+ subcategory: null,
62
+ top_level_ancestor_guid: null,
63
+ url: '#test',
64
+ url_param_str: '',
65
+ url_without_anchor: '#test',
66
+ },
67
+ {
68
+ active_branch: false,
69
+ active_node: false,
70
+ blog_node: true,
71
+ category_id: 3,
72
+ children: [
73
+ {
74
+ active_branch: false,
75
+ active_node: false,
76
+ blog_node: true,
77
+ category_id: 3,
78
+ children: [
79
+ {
80
+ active_branch: false,
81
+ active_node: false,
82
+ blog_node: true,
83
+ category_id: 3,
84
+ children: [],
85
+ content_group_id: 50566744188,
86
+ content_type: 'blog',
87
+ error_message: null,
88
+ guid: null,
89
+ is_deleted: false,
90
+ is_non_linking_node: false,
91
+ is_published: true,
92
+ label: 'Menu Item 3',
93
+ level: null,
94
+ link_target: null,
95
+ live: true,
96
+ node_type: 1,
97
+ page_id: null,
98
+ page_title: 'Beeej Blog',
99
+ parent_guid: null,
100
+ slug: null,
101
+ state: 'PUBLISHED',
102
+ subcategory: null,
103
+ top_level_ancestor_guid: null,
104
+ url: null,
105
+ url_param_str: '',
106
+ url_without_anchor: 'null',
107
+ },
108
+ ],
109
+ content_group_id: 50566744188,
110
+ content_type: 'blog',
111
+ error_message: null,
112
+ guid: null,
113
+ is_deleted: false,
114
+ is_non_linking_node: false,
115
+ is_published: true,
116
+ label: 'Submenu 1',
117
+ level: null,
118
+ link_target: null,
119
+ live: true,
120
+ node_type: 1,
121
+ page_id: null,
122
+ page_title: 'Beeej Blog',
123
+ parent_guid: null,
124
+ slug: null,
125
+ state: 'PUBLISHED',
126
+ subcategory: null,
127
+ top_level_ancestor_guid: null,
128
+ url: null,
129
+ url_param_str: '',
130
+ url_without_anchor: 'null',
131
+ },
132
+ {
133
+ active_branch: false,
134
+ active_node: false,
135
+ blog_node: true,
136
+ category_id: 3,
137
+ children: [
138
+ {
139
+ active_branch: false,
140
+ active_node: false,
141
+ blog_node: true,
142
+ category_id: 3,
143
+ children: [],
144
+ content_group_id: 50566744188,
145
+ content_type: 'blog',
146
+ error_message: null,
147
+ guid: null,
148
+ is_deleted: false,
149
+ is_non_linking_node: false,
150
+ is_published: true,
151
+ label: 'Menu Item 3',
152
+ level: null,
153
+ link_target: null,
154
+ live: true,
155
+ node_type: 1,
156
+ page_id: null,
157
+ page_title: 'Beeej Blog',
158
+ parent_guid: null,
159
+ slug: null,
160
+ state: 'PUBLISHED',
161
+ subcategory: null,
162
+ top_level_ancestor_guid: null,
163
+ url: null,
164
+ url_param_str: '',
165
+ url_without_anchor: 'null',
166
+ },
167
+ ],
168
+ content_group_id: 50566744188,
169
+ content_type: 'blog',
170
+ error_message: null,
171
+ guid: null,
172
+ is_deleted: false,
173
+ is_non_linking_node: false,
174
+ is_published: true,
175
+ label: 'Submenu 2',
176
+ level: null,
177
+ link_target: null,
178
+ live: true,
179
+ node_type: 1,
180
+ page_id: null,
181
+ page_title: 'Beeej Blog',
182
+ parent_guid: null,
183
+ slug: null,
184
+ state: 'PUBLISHED',
185
+ subcategory: null,
186
+ top_level_ancestor_guid: null,
187
+ url: null,
188
+ url_param_str: '',
189
+ url_without_anchor: 'null',
190
+ },
191
+ {
192
+ active_branch: false,
193
+ active_node: false,
194
+ blog_node: false,
195
+ category_id: null,
196
+ children: [],
197
+ content_group_id: null,
198
+ content_type: null,
199
+ error_message: null,
200
+ guid: null,
201
+ is_deleted: false,
202
+ is_non_linking_node: false,
203
+ is_published: true,
204
+ label: 'Submenu 3',
205
+ level: null,
206
+ link_target: null,
207
+ live: true,
208
+ node_type: 3,
209
+ page_id: null,
210
+ page_title: null,
211
+ parent_guid: null,
212
+ slug: null,
213
+ state: null,
214
+ subcategory: null,
215
+ top_level_ancestor_guid: null,
216
+ url: null,
217
+ url_param_str: '',
218
+ url_without_anchor: 'null',
219
+ },
220
+ ],
221
+ content_group_id: 50566744188,
222
+ content_type: 'blog',
223
+ error_message: null,
224
+ guid: null,
225
+ is_deleted: false,
226
+ is_non_linking_node: false,
227
+ is_published: true,
228
+ label: 'First',
229
+ level: null,
230
+ link_target: null,
231
+ live: true,
232
+ node_type: 1,
233
+ page_id: null,
234
+ page_title: 'Beeej Blog',
235
+ parent_guid: null,
236
+ slug: null,
237
+ state: 'PUBLISHED',
238
+ subcategory: null,
239
+ top_level_ancestor_guid: null,
240
+ url: null,
241
+ url_param_str: '',
242
+ url_without_anchor: 'null',
243
+ },
244
+ {
245
+ active_branch: false,
246
+ active_node: false,
247
+ blog_node: true,
248
+ category_id: 3,
249
+ children: [
250
+ {
251
+ active_branch: false,
252
+ active_node: false,
253
+ blog_node: true,
254
+ category_id: 3,
255
+ children: [
256
+ {
257
+ active_branch: false,
258
+ active_node: false,
259
+ blog_node: true,
260
+ category_id: 3,
261
+ children: [],
262
+ content_group_id: 50566744188,
263
+ content_type: 'blog',
264
+ error_message: null,
265
+ guid: null,
266
+ is_deleted: false,
267
+ is_non_linking_node: false,
268
+ is_published: true,
269
+ label: 'Menu Item 3',
270
+ level: null,
271
+ link_target: null,
272
+ live: true,
273
+ node_type: 1,
274
+ page_id: null,
275
+ page_title: 'Beeej Blog',
276
+ parent_guid: null,
277
+ slug: null,
278
+ state: 'PUBLISHED',
279
+ subcategory: null,
280
+ top_level_ancestor_guid: null,
281
+ url: null,
282
+ url_param_str: '',
283
+ url_without_anchor: 'null',
284
+ },
285
+ ],
286
+ content_group_id: 50566744188,
287
+ content_type: 'blog',
288
+ error_message: null,
289
+ guid: null,
290
+ is_deleted: false,
291
+ is_non_linking_node: false,
292
+ is_published: true,
293
+ label: 'Menu Item 2',
294
+ level: null,
295
+ link_target: null,
296
+ live: true,
297
+ node_type: 1,
298
+ page_id: null,
299
+ page_title: 'Beeej Blog',
300
+ parent_guid: null,
301
+ slug: null,
302
+ state: 'PUBLISHED',
303
+ subcategory: null,
304
+ top_level_ancestor_guid: null,
305
+ url: null,
306
+ url_param_str: '',
307
+ url_without_anchor: 'null',
308
+ },
309
+ ],
310
+ content_group_id: 50566744188,
311
+ content_type: 'blog',
312
+ error_message: null,
313
+ guid: null,
314
+ is_deleted: false,
315
+ is_non_linking_node: false,
316
+ is_published: true,
317
+ label: 'Second',
318
+ level: null,
319
+ link_target: null,
320
+ live: true,
321
+ node_type: 1,
322
+ page_id: null,
323
+ page_title: 'Beeej Blog',
324
+ parent_guid: null,
325
+ slug: null,
326
+ state: 'PUBLISHED',
327
+ subcategory: null,
328
+ top_level_ancestor_guid: null,
329
+ url: null,
330
+ url_param_str: '',
331
+ url_without_anchor: 'null',
332
+ },
333
+ {
334
+ active_branch: false,
335
+ active_node: false,
336
+ blog_node: true,
337
+ category_id: 3,
338
+ children: [
339
+ {
340
+ active_branch: false,
341
+ active_node: false,
342
+ blog_node: true,
343
+ category_id: 3,
344
+ children: [
345
+ {
346
+ active_branch: false,
347
+ active_node: false,
348
+ blog_node: true,
349
+ category_id: 3,
350
+ children: [],
351
+ content_group_id: 50566744188,
352
+ content_type: 'blog',
353
+ error_message: null,
354
+ guid: null,
355
+ is_deleted: false,
356
+ is_non_linking_node: false,
357
+ is_published: true,
358
+ label: 'Menu Item 3',
359
+ level: null,
360
+ link_target: null,
361
+ live: true,
362
+ node_type: 1,
363
+ page_id: null,
364
+ page_title: 'Beeej Blog',
365
+ parent_guid: null,
366
+ slug: null,
367
+ state: 'PUBLISHED',
368
+ subcategory: null,
369
+ top_level_ancestor_guid: null,
370
+ url: null,
371
+ url_param_str: '',
372
+ url_without_anchor: 'null',
373
+ },
374
+ ],
375
+ content_group_id: 50566744188,
376
+ content_type: 'blog',
377
+ error_message: null,
378
+ guid: null,
379
+ is_deleted: false,
380
+ is_non_linking_node: false,
381
+ is_published: true,
382
+ label: 'Menu Item 2',
383
+ level: null,
384
+ link_target: null,
385
+ live: true,
386
+ node_type: 1,
387
+ page_id: null,
388
+ page_title: 'Beeej Blog',
389
+ parent_guid: null,
390
+ slug: null,
391
+ state: 'PUBLISHED',
392
+ subcategory: null,
393
+ top_level_ancestor_guid: null,
394
+ url: null,
395
+ url_param_str: '',
396
+ url_without_anchor: 'null',
397
+ },
398
+ ],
399
+ content_group_id: 50566744188,
400
+ content_type: 'blog',
401
+ error_message: null,
402
+ guid: null,
403
+ is_deleted: false,
404
+ is_non_linking_node: false,
405
+ is_published: true,
406
+ label: 'Third',
407
+ level: null,
408
+ link_target: null,
409
+ live: true,
410
+ node_type: 1,
411
+ page_id: null,
412
+ page_title: 'Beeej Blog',
413
+ parent_guid: null,
414
+ slug: null,
415
+ state: 'PUBLISHED',
416
+ subcategory: null,
417
+ top_level_ancestor_guid: null,
418
+ url: null,
419
+ url_param_str: '',
420
+ url_without_anchor: 'null',
421
+ },
422
+ ],
423
+ content_group_id: null,
424
+ content_type: null,
425
+ error_message: null,
426
+ guid: null,
427
+ is_deleted: false,
428
+ is_non_linking_node: false,
429
+ is_published: true,
430
+ label: null,
431
+ level: null,
432
+ link_target: null,
433
+ live: true,
434
+ node_type: 3,
435
+ page_id: null,
436
+ page_title: null,
437
+ parent_guid: null,
438
+ slug: null,
439
+ state: null,
440
+ subcategory: null,
441
+ top_level_ancestor_guid: null,
442
+ url: null,
443
+ url_param_str: '',
444
+ url_without_anchor: 'null',
445
+ },
446
+ },
447
+ cdnPurgeEmbargoTime: null,
448
+ cosObjectType: 'SITE_MENU',
449
+ created: 1676484466330,
450
+ createdById: 861393500,
451
+ deletedAt: 0,
452
+ hasUserChanges: false,
453
+ id: 50890781205,
454
+ label: 'Test',
455
+ name: 'Test',
456
+ pageTreeNodeProperty: {
457
+ activeBranch: false,
458
+ activeNode: false,
459
+ blogNode: false,
460
+ categoryId: null,
461
+ children: [
462
+ {
463
+ activeBranch: false,
464
+ activeNode: false,
465
+ blogNode: false,
466
+ categoryId: 1,
467
+ children: [],
468
+ contentGroupId: null,
469
+ contentType: 'site_page',
470
+ errorMessage: null,
471
+ guid: null,
472
+ isDeleted: false,
473
+ isNonLinkingNode: false,
474
+ isPublished: true,
475
+ label: 'Test anchor',
476
+ level: null,
477
+ linkTarget: null,
478
+ live: true,
479
+ nodeType: 2,
480
+ pageId: 188513707284,
481
+ pageTitle: 'ElevateBeejTest',
482
+ parentGuid: null,
483
+ slug: 'teaeasdfase',
484
+ state: 'PUBLISHED_OR_SCHEDULED',
485
+ subcategory: 'site_page',
486
+ topLevelAncestorGuid: null,
487
+ url: 'https://www.hubspot.com',
488
+ urlParamStr: '#test',
489
+ urlWithoutAnchor: 'https://www.hubspot.com',
490
+ },
491
+ {
492
+ activeBranch: false,
493
+ activeNode: false,
494
+ blogNode: false,
495
+ categoryId: null,
496
+ children: [],
497
+ contentGroupId: null,
498
+ contentType: null,
499
+ errorMessage: null,
500
+ guid: null,
501
+ isDeleted: false,
502
+ isNonLinkingNode: false,
503
+ isPublished: true,
504
+ label: 'Anchor',
505
+ level: null,
506
+ linkTarget: null,
507
+ live: true,
508
+ nodeType: 3,
509
+ pageId: null,
510
+ pageTitle: null,
511
+ parentGuid: null,
512
+ slug: null,
513
+ state: null,
514
+ subcategory: null,
515
+ topLevelAncestorGuid: null,
516
+ url: '#test',
517
+ urlParamStr: '',
518
+ urlWithoutAnchor: '#test',
519
+ },
520
+ {
521
+ activeBranch: false,
522
+ activeNode: false,
523
+ blogNode: true,
524
+ categoryId: 3,
525
+ children: [
526
+ {
527
+ activeBranch: false,
528
+ activeNode: false,
529
+ blogNode: true,
530
+ categoryId: 3,
531
+ children: [
532
+ {
533
+ activeBranch: false,
534
+ activeNode: false,
535
+ blogNode: true,
536
+ categoryId: 3,
537
+ children: [],
538
+ contentGroupId: 50566744188,
539
+ contentType: 'blog',
540
+ errorMessage: null,
541
+ guid: null,
542
+ isDeleted: false,
543
+ isNonLinkingNode: false,
544
+ isPublished: true,
545
+ label: 'Menu Item 3',
546
+ level: null,
547
+ linkTarget: null,
548
+ live: true,
549
+ nodeType: 1,
550
+ pageId: null,
551
+ pageTitle: 'Beeej Blog',
552
+ parentGuid: null,
553
+ slug: 'beeej-blog',
554
+ state: 'PUBLISHED',
555
+ subcategory: null,
556
+ topLevelAncestorGuid: null,
557
+ url: 'https://www.hubspot.com',
558
+ urlParamStr: '',
559
+ urlWithoutAnchor: 'https://www.hubspot.com',
560
+ },
561
+ ],
562
+ contentGroupId: 50566744188,
563
+ contentType: 'blog',
564
+ errorMessage: null,
565
+ guid: null,
566
+ isDeleted: false,
567
+ isNonLinkingNode: false,
568
+ isPublished: true,
569
+ label: 'Submenu 1',
570
+ level: null,
571
+ linkTarget: null,
572
+ live: true,
573
+ nodeType: 1,
574
+ pageId: null,
575
+ pageTitle: 'Beeej Blog',
576
+ parentGuid: null,
577
+ slug: 'beeej-blog',
578
+ state: 'PUBLISHED',
579
+ subcategory: null,
580
+ topLevelAncestorGuid: null,
581
+ url: 'https://www.hubspot.com',
582
+ urlParamStr: '',
583
+ urlWithoutAnchor: 'https://www.hubspot.com',
584
+ },
585
+ {
586
+ activeBranch: false,
587
+ activeNode: false,
588
+ blogNode: true,
589
+ categoryId: 3,
590
+ children: [
591
+ {
592
+ activeBranch: false,
593
+ activeNode: false,
594
+ blogNode: true,
595
+ categoryId: 3,
596
+ children: [],
597
+ contentGroupId: 50566744188,
598
+ contentType: 'blog',
599
+ errorMessage: null,
600
+ guid: null,
601
+ isDeleted: false,
602
+ isNonLinkingNode: false,
603
+ isPublished: true,
604
+ label: 'Menu Item 3',
605
+ level: null,
606
+ linkTarget: null,
607
+ live: true,
608
+ nodeType: 1,
609
+ pageId: null,
610
+ pageTitle: 'Beeej Blog',
611
+ parentGuid: null,
612
+ slug: 'beeej-blog',
613
+ state: 'PUBLISHED',
614
+ subcategory: null,
615
+ topLevelAncestorGuid: null,
616
+ url: 'https://www.hubspot.com',
617
+ urlParamStr: '',
618
+ urlWithoutAnchor: 'https://www.hubspot.com',
619
+ },
620
+ ],
621
+ contentGroupId: 50566744188,
622
+ contentType: 'blog',
623
+ errorMessage: null,
624
+ guid: null,
625
+ isDeleted: false,
626
+ isNonLinkingNode: false,
627
+ isPublished: true,
628
+ label: 'Submenu 2',
629
+ level: null,
630
+ linkTarget: null,
631
+ live: true,
632
+ nodeType: 1,
633
+ pageId: null,
634
+ pageTitle: 'Beeej Blog',
635
+ parentGuid: null,
636
+ slug: 'beeej-blog',
637
+ state: 'PUBLISHED',
638
+ subcategory: null,
639
+ topLevelAncestorGuid: null,
640
+ url: 'https://www.hubspot.com',
641
+ urlParamStr: '',
642
+ urlWithoutAnchor: 'https://www.hubspot.com',
643
+ },
644
+ {
645
+ activeBranch: false,
646
+ activeNode: false,
647
+ blogNode: false,
648
+ categoryId: null,
649
+ children: [],
650
+ contentGroupId: null,
651
+ contentType: null,
652
+ errorMessage: null,
653
+ guid: null,
654
+ isDeleted: false,
655
+ isNonLinkingNode: false,
656
+ isPublished: true,
657
+ label: 'Submenu 3',
658
+ level: null,
659
+ linkTarget: null,
660
+ live: true,
661
+ nodeType: 3,
662
+ pageId: null,
663
+ pageTitle: null,
664
+ parentGuid: null,
665
+ slug: null,
666
+ state: null,
667
+ subcategory: null,
668
+ topLevelAncestorGuid: null,
669
+ url: null,
670
+ urlParamStr: '',
671
+ urlWithoutAnchor: 'null',
672
+ },
673
+ ],
674
+ contentGroupId: 50566744188,
675
+ contentType: 'blog',
676
+ errorMessage: null,
677
+ guid: null,
678
+ isDeleted: false,
679
+ isNonLinkingNode: false,
680
+ isPublished: true,
681
+ label: 'First',
682
+ level: null,
683
+ linkTarget: null,
684
+ live: true,
685
+ nodeType: 1,
686
+ pageId: null,
687
+ pageTitle: 'Beeej Blog',
688
+ parentGuid: null,
689
+ slug: 'beeej-blog',
690
+ state: 'PUBLISHED',
691
+ subcategory: null,
692
+ topLevelAncestorGuid: null,
693
+ url: 'https://www.hubspot.com',
694
+ urlParamStr: '',
695
+ urlWithoutAnchor: 'https://www.hubspot.com',
696
+ },
697
+ {
698
+ activeBranch: false,
699
+ activeNode: false,
700
+ blogNode: true,
701
+ categoryId: 3,
702
+ children: [
703
+ {
704
+ activeBranch: false,
705
+ activeNode: false,
706
+ blogNode: true,
707
+ categoryId: 3,
708
+ children: [
709
+ {
710
+ activeBranch: false,
711
+ activeNode: false,
712
+ blogNode: true,
713
+ categoryId: 3,
714
+ children: [],
715
+ contentGroupId: 50566744188,
716
+ contentType: 'blog',
717
+ errorMessage: null,
718
+ guid: null,
719
+ isDeleted: false,
720
+ isNonLinkingNode: false,
721
+ isPublished: true,
722
+ label: 'Menu Item 3',
723
+ level: null,
724
+ linkTarget: null,
725
+ live: true,
726
+ nodeType: 1,
727
+ pageId: null,
728
+ pageTitle: 'Beeej Blog',
729
+ parentGuid: null,
730
+ slug: 'beeej-blog',
731
+ state: 'PUBLISHED',
732
+ subcategory: null,
733
+ topLevelAncestorGuid: null,
734
+ url: 'https://www.hubspot.com',
735
+ urlParamStr: '',
736
+ urlWithoutAnchor: 'https://www.hubspot.com',
737
+ },
738
+ ],
739
+ contentGroupId: 50566744188,
740
+ contentType: 'blog',
741
+ errorMessage: null,
742
+ guid: null,
743
+ isDeleted: false,
744
+ isNonLinkingNode: false,
745
+ isPublished: true,
746
+ label: 'Menu Item 2',
747
+ level: null,
748
+ linkTarget: null,
749
+ live: true,
750
+ nodeType: 1,
751
+ pageId: null,
752
+ pageTitle: 'Beeej Blog',
753
+ parentGuid: null,
754
+ slug: 'beeej-blog',
755
+ state: 'PUBLISHED',
756
+ subcategory: null,
757
+ topLevelAncestorGuid: null,
758
+ url: 'https://www.hubspot.com',
759
+ urlParamStr: '',
760
+ urlWithoutAnchor: 'https://www.hubspot.com',
761
+ },
762
+ ],
763
+ contentGroupId: 50566744188,
764
+ contentType: 'blog',
765
+ errorMessage: null,
766
+ guid: null,
767
+ isDeleted: false,
768
+ isNonLinkingNode: false,
769
+ isPublished: true,
770
+ label: 'Second',
771
+ level: null,
772
+ linkTarget: null,
773
+ live: true,
774
+ nodeType: 1,
775
+ pageId: null,
776
+ pageTitle: 'Beeej Blog',
777
+ parentGuid: null,
778
+ slug: 'beeej-blog',
779
+ state: 'PUBLISHED',
780
+ subcategory: null,
781
+ topLevelAncestorGuid: null,
782
+ url: 'https://www.hubspot.com',
783
+ urlParamStr: '',
784
+ urlWithoutAnchor: 'https://www.hubspot.com',
785
+ },
786
+ {
787
+ activeBranch: false,
788
+ activeNode: false,
789
+ blogNode: true,
790
+ categoryId: 3,
791
+ children: [
792
+ {
793
+ activeBranch: false,
794
+ activeNode: false,
795
+ blogNode: true,
796
+ categoryId: 3,
797
+ children: [
798
+ {
799
+ activeBranch: false,
800
+ activeNode: false,
801
+ blogNode: true,
802
+ categoryId: 3,
803
+ children: [],
804
+ contentGroupId: 50566744188,
805
+ contentType: 'blog',
806
+ errorMessage: null,
807
+ guid: null,
808
+ isDeleted: false,
809
+ isNonLinkingNode: false,
810
+ isPublished: true,
811
+ label: 'Menu Item 3',
812
+ level: null,
813
+ linkTarget: null,
814
+ live: true,
815
+ nodeType: 1,
816
+ pageId: null,
817
+ pageTitle: 'Beeej Blog',
818
+ parentGuid: null,
819
+ slug: 'beeej-blog',
820
+ state: 'PUBLISHED',
821
+ subcategory: null,
822
+ topLevelAncestorGuid: null,
823
+ url: 'https://www.hubspot.com',
824
+ urlParamStr: '',
825
+ urlWithoutAnchor: 'https://www.hubspot.com',
826
+ },
827
+ ],
828
+ contentGroupId: 50566744188,
829
+ contentType: 'blog',
830
+ errorMessage: null,
831
+ guid: null,
832
+ isDeleted: false,
833
+ isNonLinkingNode: false,
834
+ isPublished: true,
835
+ label: 'Menu Item 2',
836
+ level: null,
837
+ linkTarget: null,
838
+ live: true,
839
+ nodeType: 1,
840
+ pageId: null,
841
+ pageTitle: 'Beeej Blog',
842
+ parentGuid: null,
843
+ slug: 'beeej-blog',
844
+ state: 'PUBLISHED',
845
+ subcategory: null,
846
+ topLevelAncestorGuid: null,
847
+ url: 'https://www.hubspot.com',
848
+ urlParamStr: '',
849
+ urlWithoutAnchor: 'https://www.hubspot.com',
850
+ },
851
+ ],
852
+ contentGroupId: 50566744188,
853
+ contentType: 'blog',
854
+ errorMessage: null,
855
+ guid: null,
856
+ isDeleted: false,
857
+ isNonLinkingNode: false,
858
+ isPublished: true,
859
+ label: 'Third',
860
+ level: null,
861
+ linkTarget: null,
862
+ live: true,
863
+ nodeType: 1,
864
+ pageId: null,
865
+ pageTitle: 'Beeej Blog',
866
+ parentGuid: null,
867
+ slug: 'beeej-blog',
868
+ state: 'PUBLISHED',
869
+ subcategory: null,
870
+ topLevelAncestorGuid: null,
871
+ url: 'https://www.hubspot.com',
872
+ urlParamStr: '',
873
+ urlWithoutAnchor: 'https://www.hubspot.com',
874
+ },
875
+ ],
876
+ contentGroupId: null,
877
+ contentType: null,
878
+ errorMessage: null,
879
+ guid: null,
880
+ isDeleted: false,
881
+ isNonLinkingNode: false,
882
+ isPublished: true,
883
+ label: null,
884
+ level: null,
885
+ linkTarget: null,
886
+ live: true,
887
+ nodeType: 3,
888
+ pageId: null,
889
+ pageTitle: null,
890
+ parentGuid: null,
891
+ slug: null,
892
+ state: null,
893
+ subcategory: null,
894
+ topLevelAncestorGuid: null,
895
+ url: null,
896
+ urlParamStr: '',
897
+ urlWithoutAnchor: 'null',
898
+ },
899
+ pagesTree: {
900
+ active_branch: false,
901
+ active_node: false,
902
+ blog_node: false,
903
+ category_id: null,
904
+ children: [
905
+ {
906
+ active_branch: false,
907
+ active_node: false,
908
+ blog_node: false,
909
+ category_id: 1,
910
+ children: [],
911
+ content_group_id: null,
912
+ content_type: 'site_page',
913
+ error_message: null,
914
+ guid: null,
915
+ is_deleted: false,
916
+ is_non_linking_node: false,
917
+ is_published: true,
918
+ label: 'Test anchor',
919
+ level: null,
920
+ link_target: null,
921
+ live: true,
922
+ node_type: 2,
923
+ page_id: 188513707284,
924
+ page_title: 'ElevateBeejTest',
925
+ parent_guid: null,
926
+ slug: null,
927
+ state: 'PUBLISHED_OR_SCHEDULED',
928
+ subcategory: 'site_page',
929
+ top_level_ancestor_guid: null,
930
+ url: null,
931
+ url_param_str: '#test',
932
+ url_without_anchor: 'null',
933
+ },
934
+ {
935
+ active_branch: false,
936
+ active_node: false,
937
+ blog_node: false,
938
+ category_id: null,
939
+ children: [],
940
+ content_group_id: null,
941
+ content_type: null,
942
+ error_message: null,
943
+ guid: null,
944
+ is_deleted: false,
945
+ is_non_linking_node: false,
946
+ is_published: true,
947
+ label: 'Anchor',
948
+ level: null,
949
+ link_target: null,
950
+ live: true,
951
+ node_type: 3,
952
+ page_id: null,
953
+ page_title: null,
954
+ parent_guid: null,
955
+ slug: null,
956
+ state: null,
957
+ subcategory: null,
958
+ top_level_ancestor_guid: null,
959
+ url: '#test',
960
+ url_param_str: '',
961
+ url_without_anchor: '#test',
962
+ },
963
+ {
964
+ active_branch: false,
965
+ active_node: false,
966
+ blog_node: true,
967
+ category_id: 3,
968
+ children: [
969
+ {
970
+ active_branch: false,
971
+ active_node: false,
972
+ blog_node: true,
973
+ category_id: 3,
974
+ children: [
975
+ {
976
+ active_branch: false,
977
+ active_node: false,
978
+ blog_node: true,
979
+ category_id: 3,
980
+ children: [],
981
+ content_group_id: 50566744188,
982
+ content_type: 'blog',
983
+ error_message: null,
984
+ guid: null,
985
+ is_deleted: false,
986
+ is_non_linking_node: false,
987
+ is_published: true,
988
+ label: 'Menu Item 3',
989
+ level: null,
990
+ link_target: null,
991
+ live: true,
992
+ node_type: 1,
993
+ page_id: null,
994
+ page_title: 'Beeej Blog',
995
+ parent_guid: null,
996
+ slug: null,
997
+ state: 'PUBLISHED',
998
+ subcategory: null,
999
+ top_level_ancestor_guid: null,
1000
+ url: null,
1001
+ url_param_str: '',
1002
+ url_without_anchor: 'null',
1003
+ },
1004
+ ],
1005
+ content_group_id: 50566744188,
1006
+ content_type: 'blog',
1007
+ error_message: null,
1008
+ guid: null,
1009
+ is_deleted: false,
1010
+ is_non_linking_node: false,
1011
+ is_published: true,
1012
+ label: 'Submenu 1',
1013
+ level: null,
1014
+ link_target: null,
1015
+ live: true,
1016
+ node_type: 1,
1017
+ page_id: null,
1018
+ page_title: 'Beeej Blog',
1019
+ parent_guid: null,
1020
+ slug: null,
1021
+ state: 'PUBLISHED',
1022
+ subcategory: null,
1023
+ top_level_ancestor_guid: null,
1024
+ url: null,
1025
+ url_param_str: '',
1026
+ url_without_anchor: 'null',
1027
+ },
1028
+ {
1029
+ active_branch: false,
1030
+ active_node: false,
1031
+ blog_node: true,
1032
+ category_id: 3,
1033
+ children: [
1034
+ {
1035
+ active_branch: false,
1036
+ active_node: false,
1037
+ blog_node: true,
1038
+ category_id: 3,
1039
+ children: [],
1040
+ content_group_id: 50566744188,
1041
+ content_type: 'blog',
1042
+ error_message: null,
1043
+ guid: null,
1044
+ is_deleted: false,
1045
+ is_non_linking_node: false,
1046
+ is_published: true,
1047
+ label: 'Menu Item 3',
1048
+ level: null,
1049
+ link_target: null,
1050
+ live: true,
1051
+ node_type: 1,
1052
+ page_id: null,
1053
+ page_title: 'Beeej Blog',
1054
+ parent_guid: null,
1055
+ slug: null,
1056
+ state: 'PUBLISHED',
1057
+ subcategory: null,
1058
+ top_level_ancestor_guid: null,
1059
+ url: null,
1060
+ url_param_str: '',
1061
+ url_without_anchor: 'null',
1062
+ },
1063
+ ],
1064
+ content_group_id: 50566744188,
1065
+ content_type: 'blog',
1066
+ error_message: null,
1067
+ guid: null,
1068
+ is_deleted: false,
1069
+ is_non_linking_node: false,
1070
+ is_published: true,
1071
+ label: 'Submenu 2',
1072
+ level: null,
1073
+ link_target: null,
1074
+ live: true,
1075
+ node_type: 1,
1076
+ page_id: null,
1077
+ page_title: 'Beeej Blog',
1078
+ parent_guid: null,
1079
+ slug: null,
1080
+ state: 'PUBLISHED',
1081
+ subcategory: null,
1082
+ top_level_ancestor_guid: null,
1083
+ url: null,
1084
+ url_param_str: '',
1085
+ url_without_anchor: 'null',
1086
+ },
1087
+ {
1088
+ active_branch: false,
1089
+ active_node: false,
1090
+ blog_node: false,
1091
+ category_id: null,
1092
+ children: [],
1093
+ content_group_id: null,
1094
+ content_type: null,
1095
+ error_message: null,
1096
+ guid: null,
1097
+ is_deleted: false,
1098
+ is_non_linking_node: false,
1099
+ is_published: true,
1100
+ label: 'Submenu 3',
1101
+ level: null,
1102
+ link_target: null,
1103
+ live: true,
1104
+ node_type: 3,
1105
+ page_id: null,
1106
+ page_title: null,
1107
+ parent_guid: null,
1108
+ slug: null,
1109
+ state: null,
1110
+ subcategory: null,
1111
+ top_level_ancestor_guid: null,
1112
+ url: null,
1113
+ url_param_str: '',
1114
+ url_without_anchor: 'null',
1115
+ },
1116
+ ],
1117
+ content_group_id: 50566744188,
1118
+ content_type: 'blog',
1119
+ error_message: null,
1120
+ guid: null,
1121
+ is_deleted: false,
1122
+ is_non_linking_node: false,
1123
+ is_published: true,
1124
+ label: 'First',
1125
+ level: null,
1126
+ link_target: null,
1127
+ live: true,
1128
+ node_type: 1,
1129
+ page_id: null,
1130
+ page_title: 'Beeej Blog',
1131
+ parent_guid: null,
1132
+ slug: null,
1133
+ state: 'PUBLISHED',
1134
+ subcategory: null,
1135
+ top_level_ancestor_guid: null,
1136
+ url: null,
1137
+ url_param_str: '',
1138
+ url_without_anchor: 'null',
1139
+ },
1140
+ {
1141
+ active_branch: false,
1142
+ active_node: false,
1143
+ blog_node: true,
1144
+ category_id: 3,
1145
+ children: [
1146
+ {
1147
+ active_branch: false,
1148
+ active_node: false,
1149
+ blog_node: true,
1150
+ category_id: 3,
1151
+ children: [
1152
+ {
1153
+ active_branch: false,
1154
+ active_node: false,
1155
+ blog_node: true,
1156
+ category_id: 3,
1157
+ children: [],
1158
+ content_group_id: 50566744188,
1159
+ content_type: 'blog',
1160
+ error_message: null,
1161
+ guid: null,
1162
+ is_deleted: false,
1163
+ is_non_linking_node: false,
1164
+ is_published: true,
1165
+ label: 'Menu Item 3',
1166
+ level: null,
1167
+ link_target: null,
1168
+ live: true,
1169
+ node_type: 1,
1170
+ page_id: null,
1171
+ page_title: 'Beeej Blog',
1172
+ parent_guid: null,
1173
+ slug: null,
1174
+ state: 'PUBLISHED',
1175
+ subcategory: null,
1176
+ top_level_ancestor_guid: null,
1177
+ url: null,
1178
+ url_param_str: '',
1179
+ url_without_anchor: 'null',
1180
+ },
1181
+ ],
1182
+ content_group_id: 50566744188,
1183
+ content_type: 'blog',
1184
+ error_message: null,
1185
+ guid: null,
1186
+ is_deleted: false,
1187
+ is_non_linking_node: false,
1188
+ is_published: true,
1189
+ label: 'Menu Item 2',
1190
+ level: null,
1191
+ link_target: null,
1192
+ live: true,
1193
+ node_type: 1,
1194
+ page_id: null,
1195
+ page_title: 'Beeej Blog',
1196
+ parent_guid: null,
1197
+ slug: null,
1198
+ state: 'PUBLISHED',
1199
+ subcategory: null,
1200
+ top_level_ancestor_guid: null,
1201
+ url: null,
1202
+ url_param_str: '',
1203
+ url_without_anchor: 'null',
1204
+ },
1205
+ ],
1206
+ content_group_id: 50566744188,
1207
+ content_type: 'blog',
1208
+ error_message: null,
1209
+ guid: null,
1210
+ is_deleted: false,
1211
+ is_non_linking_node: false,
1212
+ is_published: true,
1213
+ label: 'Second',
1214
+ level: null,
1215
+ link_target: null,
1216
+ live: true,
1217
+ node_type: 1,
1218
+ page_id: null,
1219
+ page_title: 'Beeej Blog',
1220
+ parent_guid: null,
1221
+ slug: null,
1222
+ state: 'PUBLISHED',
1223
+ subcategory: null,
1224
+ top_level_ancestor_guid: null,
1225
+ url: null,
1226
+ url_param_str: '',
1227
+ url_without_anchor: 'null',
1228
+ },
1229
+ {
1230
+ active_branch: false,
1231
+ active_node: false,
1232
+ blog_node: true,
1233
+ category_id: 3,
1234
+ children: [
1235
+ {
1236
+ active_branch: false,
1237
+ active_node: false,
1238
+ blog_node: true,
1239
+ category_id: 3,
1240
+ children: [
1241
+ {
1242
+ active_branch: false,
1243
+ active_node: false,
1244
+ blog_node: true,
1245
+ category_id: 3,
1246
+ children: [],
1247
+ content_group_id: 50566744188,
1248
+ content_type: 'blog',
1249
+ error_message: null,
1250
+ guid: null,
1251
+ is_deleted: false,
1252
+ is_non_linking_node: false,
1253
+ is_published: true,
1254
+ label: 'Menu Item 3',
1255
+ level: null,
1256
+ link_target: null,
1257
+ live: true,
1258
+ node_type: 1,
1259
+ page_id: null,
1260
+ page_title: 'Beeej Blog',
1261
+ parent_guid: null,
1262
+ slug: null,
1263
+ state: 'PUBLISHED',
1264
+ subcategory: null,
1265
+ top_level_ancestor_guid: null,
1266
+ url: null,
1267
+ url_param_str: '',
1268
+ url_without_anchor: 'null',
1269
+ },
1270
+ ],
1271
+ content_group_id: 50566744188,
1272
+ content_type: 'blog',
1273
+ error_message: null,
1274
+ guid: null,
1275
+ is_deleted: false,
1276
+ is_non_linking_node: false,
1277
+ is_published: true,
1278
+ label: 'Menu Item 2',
1279
+ level: null,
1280
+ link_target: null,
1281
+ live: true,
1282
+ node_type: 1,
1283
+ page_id: null,
1284
+ page_title: 'Beeej Blog',
1285
+ parent_guid: null,
1286
+ slug: null,
1287
+ state: 'PUBLISHED',
1288
+ subcategory: null,
1289
+ top_level_ancestor_guid: null,
1290
+ url: null,
1291
+ url_param_str: '',
1292
+ url_without_anchor: 'null',
1293
+ },
1294
+ ],
1295
+ content_group_id: 50566744188,
1296
+ content_type: 'blog',
1297
+ error_message: null,
1298
+ guid: null,
1299
+ is_deleted: false,
1300
+ is_non_linking_node: false,
1301
+ is_published: true,
1302
+ label: 'Third',
1303
+ level: null,
1304
+ link_target: null,
1305
+ live: true,
1306
+ node_type: 1,
1307
+ page_id: null,
1308
+ page_title: 'Beeej Blog',
1309
+ parent_guid: null,
1310
+ slug: null,
1311
+ state: 'PUBLISHED',
1312
+ subcategory: null,
1313
+ top_level_ancestor_guid: null,
1314
+ url: null,
1315
+ url_param_str: '',
1316
+ url_without_anchor: 'null',
1317
+ },
1318
+ ],
1319
+ content_group_id: null,
1320
+ content_type: null,
1321
+ error_message: null,
1322
+ guid: null,
1323
+ is_deleted: false,
1324
+ is_non_linking_node: false,
1325
+ is_published: true,
1326
+ label: null,
1327
+ level: null,
1328
+ link_target: null,
1329
+ live: true,
1330
+ node_type: 3,
1331
+ page_id: null,
1332
+ page_title: null,
1333
+ parent_guid: null,
1334
+ slug: null,
1335
+ state: null,
1336
+ subcategory: null,
1337
+ top_level_ancestor_guid: null,
1338
+ url: null,
1339
+ url_param_str: '',
1340
+ url_without_anchor: 'null',
1341
+ },
1342
+ portalId: 885068889,
1343
+ siteId: null,
1344
+ updated: 1749845403728,
1345
+ updatedById: 861393500,
1346
+ };