@wix/auto_sdk_stores_info-sections-v-3 1.0.37 → 1.0.39

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.
@@ -1689,6 +1689,27 @@ interface BorderColors {
1689
1689
  */
1690
1690
  bottom?: string | null;
1691
1691
  }
1692
+ /**
1693
+ * `NullValue` is a singleton enumeration to represent the null value for the
1694
+ * `Value` type union.
1695
+ *
1696
+ * The JSON representation for `NullValue` is JSON `null`.
1697
+ */
1698
+ declare enum NullValue {
1699
+ /** Null value. */
1700
+ NULL_VALUE = "NULL_VALUE"
1701
+ }
1702
+ /** @enumType */
1703
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
1704
+ /**
1705
+ * `ListValue` is a wrapper around a repeated field of values.
1706
+ *
1707
+ * The JSON representation for `ListValue` is JSON array.
1708
+ */
1709
+ interface ListValue {
1710
+ /** Repeated field of dynamically typed values. */
1711
+ values?: any[];
1712
+ }
1692
1713
  interface AudioData {
1693
1714
  /** Styling for the audio node's container. */
1694
1715
  containerData?: PluginContainerData;
@@ -1775,6 +1796,121 @@ interface TextNodeStyle {
1775
1796
  /** Line height for text in the node. */
1776
1797
  lineHeight?: string | null;
1777
1798
  }
1799
+ interface InvalidateCache extends InvalidateCacheGetByOneOf {
1800
+ /**
1801
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
1802
+ * @format GUID
1803
+ */
1804
+ metaSiteId?: string;
1805
+ /**
1806
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
1807
+ * @format GUID
1808
+ */
1809
+ siteId?: string;
1810
+ /** Invalidate by App */
1811
+ app?: App;
1812
+ /** Invalidate by page id */
1813
+ page?: Page;
1814
+ /** Invalidate by URI path */
1815
+ uri?: URI;
1816
+ /** Invalidate by file (for media files such as PDFs) */
1817
+ file?: File;
1818
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
1819
+ customTag?: CustomTag;
1820
+ /**
1821
+ * tell us why you're invalidating the cache. You don't need to add your app name
1822
+ * @maxLength 256
1823
+ */
1824
+ reason?: string | null;
1825
+ /** Is local DS */
1826
+ localDc?: boolean;
1827
+ hardPurge?: boolean;
1828
+ }
1829
+ /** @oneof */
1830
+ interface InvalidateCacheGetByOneOf {
1831
+ /**
1832
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
1833
+ * @format GUID
1834
+ */
1835
+ metaSiteId?: string;
1836
+ /**
1837
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
1838
+ * @format GUID
1839
+ */
1840
+ siteId?: string;
1841
+ /** Invalidate by App */
1842
+ app?: App;
1843
+ /** Invalidate by page id */
1844
+ page?: Page;
1845
+ /** Invalidate by URI path */
1846
+ uri?: URI;
1847
+ /** Invalidate by file (for media files such as PDFs) */
1848
+ file?: File;
1849
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
1850
+ customTag?: CustomTag;
1851
+ }
1852
+ interface App {
1853
+ /**
1854
+ * The AppDefId
1855
+ * @minLength 1
1856
+ */
1857
+ appDefId?: string;
1858
+ /**
1859
+ * The instance Id
1860
+ * @format GUID
1861
+ */
1862
+ instanceId?: string;
1863
+ }
1864
+ interface Page {
1865
+ /**
1866
+ * the msid the page is on
1867
+ * @format GUID
1868
+ */
1869
+ metaSiteId?: string;
1870
+ /**
1871
+ * Invalidate by Page ID
1872
+ * @minLength 1
1873
+ */
1874
+ pageId?: string;
1875
+ }
1876
+ interface URI {
1877
+ /**
1878
+ * the msid the URI is on
1879
+ * @format GUID
1880
+ */
1881
+ metaSiteId?: string;
1882
+ /**
1883
+ * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
1884
+ * @minLength 1
1885
+ */
1886
+ uriPath?: string;
1887
+ }
1888
+ interface File {
1889
+ /**
1890
+ * the msid the file is related to
1891
+ * @format GUID
1892
+ */
1893
+ metaSiteId?: string;
1894
+ /**
1895
+ * Invalidate by filename (for media files such as PDFs)
1896
+ * @minLength 1
1897
+ * @maxLength 256
1898
+ */
1899
+ fileName?: string;
1900
+ }
1901
+ interface CustomTag {
1902
+ /**
1903
+ * the msid the tag is related to
1904
+ * @format GUID
1905
+ */
1906
+ metaSiteId?: string;
1907
+ /**
1908
+ * Tag to invalidate by
1909
+ * @minLength 1
1910
+ * @maxLength 256
1911
+ */
1912
+ tag?: string;
1913
+ }
1778
1914
  interface CreateInfoSectionRequest {
1779
1915
  /** Info section to create. */
1780
1916
  infoSection: InfoSection;
@@ -2131,6 +2267,168 @@ interface BulkInfoSectionResult {
2131
2267
  /** Bulk action metadata for info section. */
2132
2268
  itemMetadata?: ItemMetadata;
2133
2269
  }
2270
+ interface DomainEvent extends DomainEventBodyOneOf {
2271
+ createdEvent?: EntityCreatedEvent;
2272
+ updatedEvent?: EntityUpdatedEvent;
2273
+ deletedEvent?: EntityDeletedEvent;
2274
+ actionEvent?: ActionEvent;
2275
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2276
+ id?: string;
2277
+ /**
2278
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2279
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2280
+ */
2281
+ entityFqdn?: string;
2282
+ /**
2283
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2284
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2285
+ */
2286
+ slug?: string;
2287
+ /** ID of the entity associated with the event. */
2288
+ entityId?: string;
2289
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2290
+ eventTime?: Date | null;
2291
+ /**
2292
+ * Whether the event was triggered as a result of a privacy regulation application
2293
+ * (for example, GDPR).
2294
+ */
2295
+ triggeredByAnonymizeRequest?: boolean | null;
2296
+ /** If present, indicates the action that triggered the event. */
2297
+ originatedFrom?: string | null;
2298
+ /**
2299
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2300
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2301
+ */
2302
+ entityEventSequence?: string | null;
2303
+ }
2304
+ /** @oneof */
2305
+ interface DomainEventBodyOneOf {
2306
+ createdEvent?: EntityCreatedEvent;
2307
+ updatedEvent?: EntityUpdatedEvent;
2308
+ deletedEvent?: EntityDeletedEvent;
2309
+ actionEvent?: ActionEvent;
2310
+ }
2311
+ interface EntityCreatedEvent {
2312
+ entityAsJson?: string;
2313
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2314
+ restoreInfo?: RestoreInfo;
2315
+ }
2316
+ interface RestoreInfo {
2317
+ deletedDate?: Date | null;
2318
+ }
2319
+ interface EntityUpdatedEvent {
2320
+ /**
2321
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2322
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2323
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2324
+ */
2325
+ currentEntityAsJson?: string;
2326
+ }
2327
+ interface EntityDeletedEvent {
2328
+ /** Entity that was deleted. */
2329
+ deletedEntityAsJson?: string | null;
2330
+ }
2331
+ interface ActionEvent {
2332
+ bodyAsJson?: string;
2333
+ }
2334
+ interface Empty {
2335
+ }
2336
+ interface MessageEnvelope {
2337
+ /**
2338
+ * App instance ID.
2339
+ * @format GUID
2340
+ */
2341
+ instanceId?: string | null;
2342
+ /**
2343
+ * Event type.
2344
+ * @maxLength 150
2345
+ */
2346
+ eventType?: string;
2347
+ /** The identification type and identity data. */
2348
+ identity?: IdentificationData;
2349
+ /** Stringify payload. */
2350
+ data?: string;
2351
+ }
2352
+ interface IdentificationData extends IdentificationDataIdOneOf {
2353
+ /**
2354
+ * ID of a site visitor that has not logged in to the site.
2355
+ * @format GUID
2356
+ */
2357
+ anonymousVisitorId?: string;
2358
+ /**
2359
+ * ID of a site visitor that has logged in to the site.
2360
+ * @format GUID
2361
+ */
2362
+ memberId?: string;
2363
+ /**
2364
+ * ID of a Wix user (site owner, contributor, etc.).
2365
+ * @format GUID
2366
+ */
2367
+ wixUserId?: string;
2368
+ /**
2369
+ * ID of an app.
2370
+ * @format GUID
2371
+ */
2372
+ appId?: string;
2373
+ /** @readonly */
2374
+ identityType?: WebhookIdentityTypeWithLiterals;
2375
+ }
2376
+ /** @oneof */
2377
+ interface IdentificationDataIdOneOf {
2378
+ /**
2379
+ * ID of a site visitor that has not logged in to the site.
2380
+ * @format GUID
2381
+ */
2382
+ anonymousVisitorId?: string;
2383
+ /**
2384
+ * ID of a site visitor that has logged in to the site.
2385
+ * @format GUID
2386
+ */
2387
+ memberId?: string;
2388
+ /**
2389
+ * ID of a Wix user (site owner, contributor, etc.).
2390
+ * @format GUID
2391
+ */
2392
+ wixUserId?: string;
2393
+ /**
2394
+ * ID of an app.
2395
+ * @format GUID
2396
+ */
2397
+ appId?: string;
2398
+ }
2399
+ declare enum WebhookIdentityType {
2400
+ UNKNOWN = "UNKNOWN",
2401
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2402
+ MEMBER = "MEMBER",
2403
+ WIX_USER = "WIX_USER",
2404
+ APP = "APP"
2405
+ }
2406
+ /** @enumType */
2407
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2408
+ /** @docsIgnore */
2409
+ type CreateInfoSectionValidationErrors = {
2410
+ ruleName?: 'INFO_SECTIONS_LIMIT_EXCEEDED';
2411
+ } | {
2412
+ ruleName?: 'ONLY_SPACES_STRING_ERROR';
2413
+ };
2414
+ /** @docsIgnore */
2415
+ type GetOrCreateInfoSectionValidationErrors = {
2416
+ ruleName?: 'INFO_SECTIONS_LIMIT_EXCEEDED';
2417
+ } | {
2418
+ ruleName?: 'ONLY_SPACES_STRING_ERROR';
2419
+ };
2420
+ /** @docsIgnore */
2421
+ type BulkGetOrCreateInfoSectionsValidationErrors = {
2422
+ ruleName?: 'INFO_SECTIONS_LIMIT_EXCEEDED';
2423
+ } | {
2424
+ ruleName?: 'ONLY_SPACES_STRING_ERROR';
2425
+ };
2426
+ /** @docsIgnore */
2427
+ type BulkCreateInfoSectionsValidationErrors = {
2428
+ ruleName?: 'INFO_SECTIONS_LIMIT_EXCEEDED';
2429
+ } | {
2430
+ ruleName?: 'ONLY_SPACES_STRING_ERROR';
2431
+ };
2134
2432
 
2135
2433
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
2136
2434
  getUrl: (context: any) => string;
@@ -2159,4 +2457,4 @@ declare function bulkCreateInfoSections(): __PublicMethodMetaInfo<'POST', {}, Bu
2159
2457
  declare function bulkUpdateInfoSections(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateInfoSectionsRequest$1, BulkUpdateInfoSectionsRequest, BulkUpdateInfoSectionsResponse$1, BulkUpdateInfoSectionsResponse>;
2160
2458
  declare function bulkDeleteInfoSections(): __PublicMethodMetaInfo<'POST', {}, BulkDeleteInfoSectionsRequest$1, BulkDeleteInfoSectionsRequest, BulkDeleteInfoSectionsResponse$1, BulkDeleteInfoSectionsResponse>;
2161
2459
 
2162
- export { type __PublicMethodMetaInfo, bulkCreateInfoSections, bulkDeleteInfoSections, bulkGetOrCreateInfoSections, bulkUpdateInfoSections, createInfoSection, deleteInfoSection, getInfoSection, getOrCreateInfoSection, queryInfoSections, updateInfoSection };
2460
+ export { type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, type App as AppOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequestOriginal, type BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponseOriginal, type BulkCreateInfoSectionsValidationErrors as BulkCreateInfoSectionsValidationErrorsOriginal, type BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequestOriginal, type BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponseOriginal, type BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequestOriginal, type BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponseOriginal, type BulkGetOrCreateInfoSectionsValidationErrors as BulkGetOrCreateInfoSectionsValidationErrorsOriginal, type BulkInfoSectionItemResult as BulkInfoSectionItemResultOriginal, type BulkInfoSectionResult as BulkInfoSectionResultOriginal, type BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequestOriginal, type BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CreateInfoSectionRequest as CreateInfoSectionRequestOriginal, type CreateInfoSectionResponse as CreateInfoSectionResponseOriginal, type CreateInfoSectionValidationErrors as CreateInfoSectionValidationErrorsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteInfoSectionRequest as DeleteInfoSectionRequestOriginal, type DeleteInfoSectionResponse as DeleteInfoSectionResponseOriginal, type Design as DesignOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetInfoSectionRequest as GetInfoSectionRequestOriginal, type GetInfoSectionResponse as GetInfoSectionResponseOriginal, type GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequestOriginal, type GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponseOriginal, type GetOrCreateInfoSectionValidationErrors as GetOrCreateInfoSectionValidationErrorsOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, type InfoSectionForGetOrCreate as InfoSectionForGetOrCreateOriginal, type InfoSection as InfoSectionOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedInfoSection as MaskedInfoSectionOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type Page as PageOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type QueryInfoSectionsRequest as QueryInfoSectionsRequestOriginal, type QueryInfoSectionsResponse as QueryInfoSectionsResponseOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type UpdateInfoSectionRequest as UpdateInfoSectionRequestOriginal, type UpdateInfoSectionResponse as UpdateInfoSectionResponseOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateInfoSections, bulkDeleteInfoSections, bulkGetOrCreateInfoSections, bulkUpdateInfoSections, createInfoSection, deleteInfoSection, getInfoSection, getOrCreateInfoSection, queryInfoSections, updateInfoSection };