@wix/viewer 1.0.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.
@@ -0,0 +1,596 @@
1
+ interface SiteStructureItem$1 {
2
+ /**
3
+ * The end goal: this field should contain a unique identifier for this site-structure item.\
4
+ * Currently it contains:
5
+ * - For site-structure integrated TPAs - the unique identifier provided by the TPA.
6
+ * - For all other item types - empty string.
7
+ */
8
+ itemId?: string;
9
+ /**
10
+ * An identifier for the type of the item. One of:
11
+ * - For the site's static pages - "static_page".
12
+ * - For legacy integration TPAs - the TPA's app-def-id.
13
+ * - For TPAs with new site-structure integration - the item type identifier provided by the TPA. Commonly one of that TPA's supported sub-pages.
14
+ * - For items that are the result of a dynamic router - "dynamic-page".
15
+ */
16
+ itemTypeIdentifier?: string;
17
+ /**
18
+ * An identifier for the source of the item. One of:
19
+ * - For the site's static pages - "editor".
20
+ * - For legacy integration TPAs - the TPA's app-def-id.
21
+ * - For TPAs with new site-structure integration - the TPA's app-def-id.
22
+ * - For items that are the result of a dynamic router - Wix-Code's app-def-id: '675bbcef-18d8-41f5-800e-131ec9e08762'.
23
+ */
24
+ sourceId?: string;
25
+ /**
26
+ * An identifier for the configuration of the item. Used currently as some sort of a placeholder for further filtering.
27
+ * - For items of type "dynamic-page" - The 'prefix' field that is part of the router-config object of the router that is related to this item (see WixCodeDynamicRouterResolver).
28
+ * - For all other items types - empty string.
29
+ */
30
+ configId?: string;
31
+ /**
32
+ * A human readable name string associated with the item.\
33
+ * Currently exists only for new TPA site-structure integration items, and contains the 'name' field provided by the TPA for that item.\
34
+ * This field is not guaranteed to be unique across the item list.
35
+ */
36
+ name?: string | null;
37
+ /**
38
+ * Deprecated. Previously used for media content that is associated with an item.\
39
+ * See 'image' and 'video' fields of this message.
40
+ * @deprecated
41
+ */
42
+ media?: MediaItem$1[];
43
+ /** A relative url path that can be used, with the site's base-url, to reach the page represented by this item. */
44
+ path?: string | null;
45
+ /**
46
+ * A timestamp representing the moment that this item was last changed.
47
+ * - For static pages - the site's last publish time.
48
+ * - For all kinds of TPAs - the last-modified field in the respective response item from the TPA.
49
+ * - For items that are the result of a dynamic router - the content of the 'lastModified' optional field in the response item from Wix-Code's RPC endpoint, or, if missing, the site's last publish time. (see WixCodeDynamicRouterResolver).
50
+ */
51
+ updatedDate?: Date | null;
52
+ /**
53
+ * A value indicating whether the item is inactive or not. E.g. hidden product/finished event etc.\
54
+ * Currently exists only for new TPA site-structure integration items, and contains the 'inactive' field provided by the TPA for that item.
55
+ */
56
+ inactive?: boolean | null;
57
+ /**
58
+ * A general free schema field to include further metadata related to this item.\
59
+ * Currently exists only for:\
60
+ * Static pages - a JSON that is the merge of:
61
+ * 1. The advancedSeoData JSON string that exists for the page in the master-page.
62
+ * 2. A JSON of the form:
63
+ * ```javascript
64
+ * {
65
+ * "seo_legacy": {
66
+ * "hidden_from_seo": true / false
67
+ * },
68
+ * "password_protected": true / false
69
+ * }
70
+ * ```
71
+ * New TPA site-structure integration items - the 'metadata' field provided by the TPA for that item.
72
+ */
73
+ metadata?: Record<string, any> | null;
74
+ /**
75
+ * An image media metadata the is related to this item.\
76
+ * Currently exists only for new TPA site-structure integration items, and contains the 'image' field provided by the TPA for that item.
77
+ */
78
+ image?: Image[];
79
+ /**
80
+ * A video media metadata the is related to this item.\
81
+ * Currently exists only for new TPA site-structure integration items, and contains the 'video' field provided by the TPA for that item.
82
+ */
83
+ video?: VideoV2[];
84
+ /** A value indicating whether the item is protected or not, by password or login. */
85
+ protected?: boolean | null;
86
+ /**
87
+ * ID of the translations of the item. As same item can have multiple instances, one for each language, we can match them by this ID.\
88
+ * For example:
89
+ * Blog has one post, translated to 2 languages (EN, FR):
90
+ * - EN item path is `/amazing-post`
91
+ * - FR item path is `/poste-incroyable
92
+ * Both of them might have different `item_id`, but will share the same `translation_id`, to be easily match together
93
+ * Currently only relevant for Blog
94
+ */
95
+ translationId?: string;
96
+ /** A value indicating whether the item is a custom error page or not. */
97
+ isCustomErrorPage?: boolean | null;
98
+ }
99
+ /** Deprecated - Copy this message into your service, do not reference it */
100
+ interface MediaItem$1 extends MediaItemMediaOneOf$1 {
101
+ /** WixMedia image */
102
+ image?: Image;
103
+ /** WixMedia video */
104
+ video?: Video;
105
+ /** WixMedia document */
106
+ document?: Document;
107
+ }
108
+ /** @oneof */
109
+ interface MediaItemMediaOneOf$1 {
110
+ /** WixMedia image */
111
+ image?: Image;
112
+ /** WixMedia video */
113
+ video?: Video;
114
+ /** WixMedia document */
115
+ document?: Document;
116
+ }
117
+ interface Image {
118
+ /** WixMedia image ID. */
119
+ id?: string;
120
+ /** Image URL. */
121
+ url?: string;
122
+ /**
123
+ * Original image height.
124
+ * @readonly
125
+ */
126
+ height?: number;
127
+ /**
128
+ * Original image width.
129
+ * @readonly
130
+ */
131
+ width?: number;
132
+ /** Image alt text. */
133
+ altText?: string | null;
134
+ /**
135
+ * Image filename.
136
+ * @readonly
137
+ */
138
+ filename?: string | null;
139
+ }
140
+ /** Deprecated - use VideoV2 */
141
+ interface Video {
142
+ /** WixMedia ID */
143
+ id?: string;
144
+ /** URL of video */
145
+ url?: string;
146
+ /**
147
+ * Original image height
148
+ * @readonly
149
+ */
150
+ height?: number;
151
+ /**
152
+ * Original image width
153
+ * @readonly
154
+ */
155
+ width?: number;
156
+ /** Video poster */
157
+ thumbnail?: Image;
158
+ }
159
+ interface Document {
160
+ /** WixMedia ID. */
161
+ id?: string;
162
+ /** Document URL. */
163
+ url?: string;
164
+ /** Document filename. */
165
+ filename?: string | null;
166
+ }
167
+ interface VideoV2 {
168
+ /** WixMedia ID. */
169
+ id?: string;
170
+ /**
171
+ * Available resolutions for the video, starting with the optimal resolution.
172
+ * @readonly
173
+ */
174
+ resolutions?: VideoResolution[];
175
+ /**
176
+ * Video filename.
177
+ * @readonly
178
+ */
179
+ filename?: string | null;
180
+ }
181
+ interface VideoResolution {
182
+ /** Video URL. */
183
+ url?: string;
184
+ /** Video height. */
185
+ height?: number;
186
+ /** Video width. */
187
+ width?: number;
188
+ /** Video format for example, mp4, hls. */
189
+ format?: string;
190
+ }
191
+ interface SiteStructureRequest$1 {
192
+ /** An enum indicating whether the request is for the latest published version (0) or the latest saved version (1) of the site */
193
+ pageVersion?: PageSegment$1;
194
+ /**
195
+ * Pagination request metadata, currently applicable for:\
196
+ * - Queries filtered for items from a TPA that is part of the new-integration (TpaSiteStructureService)
197
+ * - Queries filtered for dynamic router items from the new dynamic-pages-router integration (DynamicSiteStructureService)
198
+ */
199
+ paging?: CursorPaging$1;
200
+ /** Filtering metadata. Only items allowed by the filter will be returned. */
201
+ filter?: SiteStructureRequestFilter$1;
202
+ /** General sorting metadata. Currently not supported. */
203
+ sorting?: Sorting$1;
204
+ /** General field mask metadata. Currently not supported. */
205
+ fieldSet?: string[];
206
+ /** Language metadata. Contains 2 chars language code and/or 4 chars language tag. */
207
+ languageMetadata?: LanguageMetadata$1;
208
+ }
209
+ declare enum PageSegment$1 {
210
+ PUBLISHED = "PUBLISHED",
211
+ SAVED = "SAVED"
212
+ }
213
+ interface CursorPaging$1 {
214
+ /** Maximum number of items to return in the results. */
215
+ limit?: number | null;
216
+ /**
217
+ * Pointer to the next or previous page in the list of results.
218
+ *
219
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
220
+ * Not relevant for the first request.
221
+ */
222
+ cursor?: string | null;
223
+ }
224
+ /** A filter metadata type. The filter forces an 'and' logic between all of its comprising parts. */
225
+ interface SiteStructureRequestFilter$1 {
226
+ /** In accordance to SiteStructureItem.item_type_identifier */
227
+ itemTypeIdentifier?: string;
228
+ /** In accordance to SiteStructureItem.source_id */
229
+ sourceId?: string;
230
+ /** In accordance to SiteStructureItem.config_id */
231
+ configId?: string;
232
+ }
233
+ interface Sorting$1 {
234
+ /** Name of the field to sort by. */
235
+ fieldName?: string;
236
+ /** Sort order. */
237
+ order?: SortOrder$1;
238
+ }
239
+ declare enum SortOrder$1 {
240
+ ASC = "ASC",
241
+ DESC = "DESC"
242
+ }
243
+ interface LanguageMetadata$1 {
244
+ /** 2 chars language code (e.g. 'en') */
245
+ code?: string;
246
+ /** 4 chars language tag (e.g. 'en-us') */
247
+ tag?: string | null;
248
+ }
249
+ interface SiteStructureResponse$1 {
250
+ /** The total number of items to be returned, combining all paginated responses. */
251
+ totalResults?: number;
252
+ /** A cursor based paging response metadata, including the item count in the current page and a cursor string to be used for querying of the next page. */
253
+ pageData?: CursorPagingMetaData$1;
254
+ /** A list of all the result items. */
255
+ results?: SiteStructureItem$1[];
256
+ }
257
+ interface CursorPagingMetaData$1 {
258
+ /** The item count in the current page */
259
+ count?: number | null;
260
+ /** The cursor which will be used to query the next page */
261
+ cursor?: string | null;
262
+ }
263
+ interface GetSiteStructureMetadataRequest$1 {
264
+ /** Page's version */
265
+ pageVersion?: PageSegment$1;
266
+ }
267
+ interface GetSiteStructureMetadataResponse$1 {
268
+ /** A list of pages types */
269
+ pageTypes?: SitePageType$1[];
270
+ }
271
+ interface SitePageType$1 {
272
+ /** Type identifier */
273
+ itemTypeIdentifier?: string;
274
+ /** Site's page-type sourceId */
275
+ sourceId?: string;
276
+ /** Site's page-type configId */
277
+ configId?: string;
278
+ }
279
+ interface FocalPointNonNullableFields {
280
+ x: number;
281
+ y: number;
282
+ }
283
+ interface ImageNonNullableFields {
284
+ id: string;
285
+ url: string;
286
+ height: number;
287
+ width: number;
288
+ focalPoint?: FocalPointNonNullableFields;
289
+ }
290
+ interface VideoNonNullableFields {
291
+ id: string;
292
+ url: string;
293
+ height: number;
294
+ width: number;
295
+ thumbnail?: ImageNonNullableFields;
296
+ }
297
+ interface DocumentNonNullableFields {
298
+ id: string;
299
+ url: string;
300
+ }
301
+ interface MediaItemNonNullableFields$1 {
302
+ image?: ImageNonNullableFields;
303
+ video?: VideoNonNullableFields;
304
+ document?: DocumentNonNullableFields;
305
+ }
306
+ interface VideoResolutionNonNullableFields {
307
+ url: string;
308
+ height: number;
309
+ width: number;
310
+ poster?: ImageNonNullableFields;
311
+ format: string;
312
+ }
313
+ interface VideoV2NonNullableFields {
314
+ id: string;
315
+ url: string;
316
+ resolutions: VideoResolutionNonNullableFields[];
317
+ posters: ImageNonNullableFields[];
318
+ }
319
+ interface SiteStructureItemNonNullableFields$1 {
320
+ itemId: string;
321
+ itemTypeIdentifier: string;
322
+ sourceId: string;
323
+ configId: string;
324
+ media: MediaItemNonNullableFields$1[];
325
+ image: ImageNonNullableFields[];
326
+ video: VideoV2NonNullableFields[];
327
+ translationId: string;
328
+ }
329
+ interface SiteStructureResponseNonNullableFields$1 {
330
+ totalResults: number;
331
+ results: SiteStructureItemNonNullableFields$1[];
332
+ }
333
+ interface SitePageTypeNonNullableFields$1 {
334
+ itemTypeIdentifier: string;
335
+ sourceId: string;
336
+ configId: string;
337
+ pageIdentifiers: string[];
338
+ }
339
+ interface GetSiteStructureMetadataResponseNonNullableFields$1 {
340
+ pageTypes: SitePageTypeNonNullableFields$1[];
341
+ }
342
+
343
+ interface SiteStructureItem {
344
+ /**
345
+ * The end goal: this field should contain a unique identifier for this site-structure item.\
346
+ * Currently it contains:
347
+ * - For site-structure integrated TPAs - the unique identifier provided by the TPA.
348
+ * - For all other item types - empty string.
349
+ */
350
+ itemId?: string;
351
+ /**
352
+ * An identifier for the type of the item. One of:
353
+ * - For the site's static pages - "static_page".
354
+ * - For legacy integration TPAs - the TPA's app-def-id.
355
+ * - For TPAs with new site-structure integration - the item type identifier provided by the TPA. Commonly one of that TPA's supported sub-pages.
356
+ * - For items that are the result of a dynamic router - "dynamic-page".
357
+ */
358
+ itemTypeIdentifier?: string;
359
+ /**
360
+ * An identifier for the source of the item. One of:
361
+ * - For the site's static pages - "editor".
362
+ * - For legacy integration TPAs - the TPA's app-def-id.
363
+ * - For TPAs with new site-structure integration - the TPA's app-def-id.
364
+ * - For items that are the result of a dynamic router - Wix-Code's app-def-id: '675bbcef-18d8-41f5-800e-131ec9e08762'.
365
+ */
366
+ sourceId?: string;
367
+ /**
368
+ * An identifier for the configuration of the item. Used currently as some sort of a placeholder for further filtering.
369
+ * - For items of type "dynamic-page" - The 'prefix' field that is part of the router-config object of the router that is related to this item (see WixCodeDynamicRouterResolver).
370
+ * - For all other items types - empty string.
371
+ */
372
+ configId?: string;
373
+ /**
374
+ * A human readable name string associated with the item.\
375
+ * Currently exists only for new TPA site-structure integration items, and contains the 'name' field provided by the TPA for that item.\
376
+ * This field is not guaranteed to be unique across the item list.
377
+ */
378
+ name?: string | null;
379
+ /**
380
+ * Deprecated. Previously used for media content that is associated with an item.\
381
+ * See 'image' and 'video' fields of this message.
382
+ * @deprecated
383
+ */
384
+ media?: MediaItem[];
385
+ /** A relative url path that can be used, with the site's base-url, to reach the page represented by this item. */
386
+ path?: string | null;
387
+ /**
388
+ * A timestamp representing the moment that this item was last changed.
389
+ * - For static pages - the site's last publish time.
390
+ * - For all kinds of TPAs - the last-modified field in the respective response item from the TPA.
391
+ * - For items that are the result of a dynamic router - the content of the 'lastModified' optional field in the response item from Wix-Code's RPC endpoint, or, if missing, the site's last publish time. (see WixCodeDynamicRouterResolver).
392
+ */
393
+ _updatedDate?: Date | null;
394
+ /**
395
+ * A value indicating whether the item is inactive or not. E.g. hidden product/finished event etc.\
396
+ * Currently exists only for new TPA site-structure integration items, and contains the 'inactive' field provided by the TPA for that item.
397
+ */
398
+ inactive?: boolean | null;
399
+ /**
400
+ * A general free schema field to include further metadata related to this item.\
401
+ * Currently exists only for:\
402
+ * Static pages - a JSON that is the merge of:
403
+ * 1. The advancedSeoData JSON string that exists for the page in the master-page.
404
+ * 2. A JSON of the form:
405
+ * ```javascript
406
+ * {
407
+ * "seo_legacy": {
408
+ * "hidden_from_seo": true / false
409
+ * },
410
+ * "password_protected": true / false
411
+ * }
412
+ * ```
413
+ * New TPA site-structure integration items - the 'metadata' field provided by the TPA for that item.
414
+ */
415
+ metadata?: Record<string, any> | null;
416
+ /**
417
+ * An image media metadata the is related to this item.\
418
+ * Currently exists only for new TPA site-structure integration items, and contains the 'image' field provided by the TPA for that item.
419
+ */
420
+ image?: string[];
421
+ /**
422
+ * A video media metadata the is related to this item.\
423
+ * Currently exists only for new TPA site-structure integration items, and contains the 'video' field provided by the TPA for that item.
424
+ */
425
+ video?: string[];
426
+ /** A value indicating whether the item is protected or not, by password or login. */
427
+ protected?: boolean | null;
428
+ /**
429
+ * ID of the translations of the item. As same item can have multiple instances, one for each language, we can match them by this ID.\
430
+ * For example:
431
+ * Blog has one post, translated to 2 languages (EN, FR):
432
+ * - EN item path is `/amazing-post`
433
+ * - FR item path is `/poste-incroyable
434
+ * Both of them might have different `item_id`, but will share the same `translation_id`, to be easily match together
435
+ * Currently only relevant for Blog
436
+ */
437
+ translationId?: string;
438
+ /** A value indicating whether the item is a custom error page or not. */
439
+ isCustomErrorPage?: boolean | null;
440
+ }
441
+ /** Deprecated - Copy this message into your service, do not reference it */
442
+ interface MediaItem extends MediaItemMediaOneOf {
443
+ /** WixMedia image */
444
+ image?: string;
445
+ /** WixMedia video */
446
+ video?: string;
447
+ /** WixMedia document */
448
+ document?: string;
449
+ }
450
+ /** @oneof */
451
+ interface MediaItemMediaOneOf {
452
+ /** WixMedia image */
453
+ image?: string;
454
+ /** WixMedia video */
455
+ video?: string;
456
+ /** WixMedia document */
457
+ document?: string;
458
+ }
459
+ interface SiteStructureRequest {
460
+ /** An enum indicating whether the request is for the latest published version (0) or the latest saved version (1) of the site */
461
+ pageVersion?: PageSegment;
462
+ /**
463
+ * Pagination request metadata, currently applicable for:\
464
+ * - Queries filtered for items from a TPA that is part of the new-integration (TpaSiteStructureService)
465
+ * - Queries filtered for dynamic router items from the new dynamic-pages-router integration (DynamicSiteStructureService)
466
+ */
467
+ paging?: CursorPaging;
468
+ /** Filtering metadata. Only items allowed by the filter will be returned. */
469
+ filter?: SiteStructureRequestFilter;
470
+ /** General sorting metadata. Currently not supported. */
471
+ sorting?: Sorting;
472
+ /** General field mask metadata. Currently not supported. */
473
+ fieldSet?: string[];
474
+ /** Language metadata. Contains 2 chars language code and/or 4 chars language tag. */
475
+ languageMetadata?: LanguageMetadata;
476
+ }
477
+ declare enum PageSegment {
478
+ PUBLISHED = "PUBLISHED",
479
+ SAVED = "SAVED"
480
+ }
481
+ interface CursorPaging {
482
+ /** Maximum number of items to return in the results. */
483
+ limit?: number | null;
484
+ /**
485
+ * Pointer to the next or previous page in the list of results.
486
+ *
487
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
488
+ * Not relevant for the first request.
489
+ */
490
+ cursor?: string | null;
491
+ }
492
+ /** A filter metadata type. The filter forces an 'and' logic between all of its comprising parts. */
493
+ interface SiteStructureRequestFilter {
494
+ /** In accordance to SiteStructureItem.item_type_identifier */
495
+ itemTypeIdentifier?: string;
496
+ /** In accordance to SiteStructureItem.source_id */
497
+ sourceId?: string;
498
+ /** In accordance to SiteStructureItem.config_id */
499
+ configId?: string;
500
+ }
501
+ interface Sorting {
502
+ /** Name of the field to sort by. */
503
+ fieldName?: string;
504
+ /** Sort order. */
505
+ order?: SortOrder;
506
+ }
507
+ declare enum SortOrder {
508
+ ASC = "ASC",
509
+ DESC = "DESC"
510
+ }
511
+ interface LanguageMetadata {
512
+ /** 2 chars language code (e.g. 'en') */
513
+ code?: string;
514
+ /** 4 chars language tag (e.g. 'en-us') */
515
+ tag?: string | null;
516
+ }
517
+ interface SiteStructureResponse {
518
+ /** The total number of items to be returned, combining all paginated responses. */
519
+ totalResults?: number;
520
+ /** A cursor based paging response metadata, including the item count in the current page and a cursor string to be used for querying of the next page. */
521
+ pageData?: CursorPagingMetaData;
522
+ /** A list of all the result items. */
523
+ results?: SiteStructureItem[];
524
+ }
525
+ interface CursorPagingMetaData {
526
+ /** The item count in the current page */
527
+ count?: number | null;
528
+ /** The cursor which will be used to query the next page */
529
+ cursor?: string | null;
530
+ }
531
+ interface GetSiteStructureMetadataRequest {
532
+ /** Page's version */
533
+ pageVersion?: PageSegment;
534
+ }
535
+ interface GetSiteStructureMetadataResponse {
536
+ /** A list of pages types */
537
+ pageTypes?: SitePageType[];
538
+ }
539
+ interface SitePageType {
540
+ /** Type identifier */
541
+ itemTypeIdentifier?: string;
542
+ /** Site's page-type sourceId */
543
+ sourceId?: string;
544
+ /** Site's page-type configId */
545
+ configId?: string;
546
+ }
547
+ interface MediaItemNonNullableFields {
548
+ image: string;
549
+ video: string;
550
+ document: string;
551
+ }
552
+ interface SiteStructureItemNonNullableFields {
553
+ itemId: string;
554
+ itemTypeIdentifier: string;
555
+ sourceId: string;
556
+ configId: string;
557
+ media: MediaItemNonNullableFields[];
558
+ image: string[];
559
+ video: string[];
560
+ translationId: string;
561
+ }
562
+ interface SiteStructureResponseNonNullableFields {
563
+ totalResults: number;
564
+ results: SiteStructureItemNonNullableFields[];
565
+ }
566
+ interface SitePageTypeNonNullableFields {
567
+ itemTypeIdentifier: string;
568
+ sourceId: string;
569
+ configId: string;
570
+ pageIdentifiers: string[];
571
+ }
572
+ interface GetSiteStructureMetadataResponseNonNullableFields {
573
+ pageTypes: SitePageTypeNonNullableFields[];
574
+ }
575
+
576
+ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
577
+ getUrl: (context: any) => string;
578
+ httpMethod: K;
579
+ path: string;
580
+ pathParams: M;
581
+ __requestType: T;
582
+ __originalRequestType: S;
583
+ __responseType: Q;
584
+ __originalResponseType: R;
585
+ };
586
+ declare function getSiteStructure(): __PublicMethodMetaInfo<'POST', {}, SiteStructureRequest, SiteStructureRequest$1, SiteStructureResponse & SiteStructureResponseNonNullableFields, SiteStructureResponse$1 & SiteStructureResponseNonNullableFields$1>;
587
+ declare function getSiteStructureMetadata(): __PublicMethodMetaInfo<'POST', {}, GetSiteStructureMetadataRequest, GetSiteStructureMetadataRequest$1, GetSiteStructureMetadataResponse & GetSiteStructureMetadataResponseNonNullableFields, GetSiteStructureMetadataResponse$1 & GetSiteStructureMetadataResponseNonNullableFields$1>;
588
+
589
+ type meta___PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = __PublicMethodMetaInfo<K, M, T, S, Q, R>;
590
+ declare const meta_getSiteStructure: typeof getSiteStructure;
591
+ declare const meta_getSiteStructureMetadata: typeof getSiteStructureMetadata;
592
+ declare namespace meta {
593
+ export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_getSiteStructure as getSiteStructure, meta_getSiteStructureMetadata as getSiteStructureMetadata };
594
+ }
595
+
596
+ export { meta as siteStructureService };