@wix/auto_sdk_rich-content_ricos-conversations 1.0.1 → 1.0.2

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 (37) hide show
  1. package/build/cjs/index.d.ts +443 -3
  2. package/build/cjs/index.js +208 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +1 -1
  5. package/build/cjs/index.typings.js +208 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +443 -3
  8. package/build/cjs/meta.js +208 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +443 -3
  11. package/build/es/index.mjs +202 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +1 -1
  14. package/build/es/index.typings.mjs +202 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +443 -3
  17. package/build/es/meta.mjs +202 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +208 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +443 -3
  23. package/build/internal/cjs/index.typings.js +208 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +443 -3
  26. package/build/internal/cjs/meta.js +208 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +202 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +443 -3
  32. package/build/internal/es/index.typings.mjs +202 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +443 -3
  35. package/build/internal/es/meta.mjs +202 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -2002,6 +2002,8 @@ interface RicosConversationChunk extends RicosConversationChunkTypeDataOneOf {
2002
2002
  summaryOptions?: SummaryOptions;
2003
2003
  /** Suggestion options */
2004
2004
  suggestionOptions?: SuggestionOptions;
2005
+ /** Theme options */
2006
+ themeOptions?: ThemeOptions;
2005
2007
  /** The type of chunk that determines its behavior and purpose */
2006
2008
  type?: ChunkTypeWithLiterals;
2007
2009
  }
@@ -2027,6 +2029,8 @@ interface RicosConversationChunkTypeDataOneOf {
2027
2029
  summaryOptions?: SummaryOptions;
2028
2030
  /** Suggestion options */
2029
2031
  suggestionOptions?: SuggestionOptions;
2032
+ /** Theme options */
2033
+ themeOptions?: ThemeOptions;
2030
2034
  }
2031
2035
  /** Defines the type of operation this chunk represents in the conversation flow */
2032
2036
  declare enum ChunkType {
@@ -2055,10 +2059,12 @@ declare enum ChunkType {
2055
2059
  /** Summary chunk type */
2056
2060
  SUMMARY = "SUMMARY",
2057
2061
  /** Suggestion chunk type */
2058
- SUGGESTION = "SUGGESTION"
2062
+ SUGGESTION = "SUGGESTION",
2063
+ /** Theme chunk type */
2064
+ THEME = "THEME"
2059
2065
  }
2060
2066
  /** @enumType */
2061
- type ChunkTypeWithLiterals = ChunkType | 'CHUNK_TYPE_UNKNOWN' | 'EXPLAIN' | 'INSERT' | 'REPLACE' | 'NODE' | 'NODE_TEXT' | 'INSERT_END' | 'REPLACE_END' | 'TOOL_USE' | 'PATCH' | 'PROGRESS' | 'SUMMARY' | 'SUGGESTION';
2067
+ type ChunkTypeWithLiterals = ChunkType | 'CHUNK_TYPE_UNKNOWN' | 'EXPLAIN' | 'INSERT' | 'REPLACE' | 'NODE' | 'NODE_TEXT' | 'INSERT_END' | 'REPLACE_END' | 'TOOL_USE' | 'PATCH' | 'PROGRESS' | 'SUMMARY' | 'SUGGESTION' | 'THEME';
2062
2068
  /** Options for explanation chunks that provide context about AI operations */
2063
2069
  interface ExplainOption {
2064
2070
  /**
@@ -2194,6 +2200,440 @@ declare enum SuggestionAction {
2194
2200
  }
2195
2201
  /** @enumType */
2196
2202
  type SuggestionActionWithLiterals = SuggestionAction | 'SUGGESTION_ACTION_UNKNOWN' | 'REPLACE' | 'INSERT';
2203
+ interface ThemeOptions {
2204
+ /** Generated theme */
2205
+ theme?: Theme;
2206
+ }
2207
+ /**
2208
+ * Theme represents the complete visual styling configuration for a ricos document.
2209
+ * It encapsulates all theme elements including colors, fonts, and component styling.
2210
+ */
2211
+ interface Theme {
2212
+ /**
2213
+ * Palette of colors used in the theme
2214
+ * Limited to 6 colors in eight-value hexadecimal format (e.g., #FF0099AA)
2215
+ * @format COLOR_HEX
2216
+ * @maxSize 6
2217
+ */
2218
+ colorPalette?: string[];
2219
+ /**
2220
+ * Background configuration for the page
2221
+ * Can be either a solid color or an image with various styling options
2222
+ */
2223
+ background?: V1Background;
2224
+ /**
2225
+ * Typography settings for various text elements
2226
+ * Includes styling for headings and paragraphs
2227
+ */
2228
+ typography?: Typography;
2229
+ /**
2230
+ * Button styling configuration
2231
+ * Defines how buttons appear, including their hover states
2232
+ */
2233
+ button?: Button;
2234
+ /**
2235
+ * Image styling configuration
2236
+ * Defines how images appear, including borders
2237
+ */
2238
+ image?: V1Image;
2239
+ }
2240
+ /**
2241
+ * Background defines the styling for a page's background.
2242
+ * Supports either color or image backgrounds with configuration options for each.
2243
+ */
2244
+ interface V1Background extends V1BackgroundBackgroundTypeOptionsOneOf {
2245
+ /** Settings for color backgrounds, available when type = COLOR */
2246
+ colorOptions?: ColorOptions;
2247
+ /** Settings for image backgrounds, available when type = IMAGE */
2248
+ imageOptions?: ImageOptions;
2249
+ /** Background type determines whether this is a color or image background */
2250
+ type?: BackgroundBackgroundTypeWithLiterals;
2251
+ }
2252
+ /** @oneof */
2253
+ interface V1BackgroundBackgroundTypeOptionsOneOf {
2254
+ /** Settings for color backgrounds, available when type = COLOR */
2255
+ colorOptions?: ColorOptions;
2256
+ /** Settings for image backgrounds, available when type = IMAGE */
2257
+ imageOptions?: ImageOptions;
2258
+ }
2259
+ /**
2260
+ * ColorSwatch defines a color or gradient that can be used for styling elements.
2261
+ * Supports either solid colors or gradients with configuration options for each.
2262
+ */
2263
+ interface ColorSwatch extends ColorSwatchColorTypeOptionsOneOf {
2264
+ /**
2265
+ * Solid color value, available when type = COLOR
2266
+ * @format COLOR_HEX
2267
+ */
2268
+ colorOptions?: string | null;
2269
+ /** Gradient configuration, available when type = GRADIENT */
2270
+ gradientOptions?: V1Gradient;
2271
+ /** Type determines whether this is a solid color or gradient */
2272
+ type?: ColorSwatchTypeWithLiterals;
2273
+ }
2274
+ /** @oneof */
2275
+ interface ColorSwatchColorTypeOptionsOneOf {
2276
+ /**
2277
+ * Solid color value, available when type = COLOR
2278
+ * @format COLOR_HEX
2279
+ */
2280
+ colorOptions?: string | null;
2281
+ /** Gradient configuration, available when type = GRADIENT */
2282
+ gradientOptions?: V1Gradient;
2283
+ }
2284
+ /** ColorSwatchType determines what kind of color styling is being used. */
2285
+ declare enum ColorSwatchType {
2286
+ /** Default value when color swatch type is not specified */
2287
+ UNKNOWN_COLOR_SWATCH_TYPE = "UNKNOWN_COLOR_SWATCH_TYPE",
2288
+ /** Color swatch is a solid color */
2289
+ COLOR = "COLOR",
2290
+ /** Color swatch is a gradient */
2291
+ GRADIENT = "GRADIENT"
2292
+ }
2293
+ /** @enumType */
2294
+ type ColorSwatchTypeWithLiterals = ColorSwatchType | 'UNKNOWN_COLOR_SWATCH_TYPE' | 'COLOR' | 'GRADIENT';
2295
+ /**
2296
+ * Gradient defines a color gradient configuration.
2297
+ * Supports both linear and radial gradients with multiple color stops.
2298
+ */
2299
+ interface V1Gradient extends V1GradientGradientTypeOptionsOneOf {
2300
+ /**
2301
+ * Angle in degrees for linear gradients (0-360)
2302
+ * @max 360
2303
+ */
2304
+ linearOptions?: number | null;
2305
+ /** Center point for radial gradients */
2306
+ radialOptions?: Center;
2307
+ /** Type determines whether this is a linear or radial gradient */
2308
+ type?: GradientTypeWithLiterals;
2309
+ /**
2310
+ * Color stops that define the gradient colors and positions
2311
+ * @maxSize 10
2312
+ */
2313
+ stops?: GradientStop[];
2314
+ /**
2315
+ * Global opacity of the gradients (0.0 to 1.0)
2316
+ * @max 1
2317
+ */
2318
+ opacity?: number | null;
2319
+ }
2320
+ /** @oneof */
2321
+ interface V1GradientGradientTypeOptionsOneOf {
2322
+ /**
2323
+ * Angle in degrees for linear gradients (0-360)
2324
+ * @max 360
2325
+ */
2326
+ linearOptions?: number | null;
2327
+ /** Center point for radial gradients */
2328
+ radialOptions?: Center;
2329
+ }
2330
+ /** GradientType determines what kind of gradient is being used. */
2331
+ declare enum GradientType {
2332
+ /** Default value when gradient type is not specified */
2333
+ UNKNOWN_GRADIENT_TYPE = "UNKNOWN_GRADIENT_TYPE",
2334
+ /** Linear gradient that transitions colors along a straight line */
2335
+ LINEAR = "LINEAR",
2336
+ /** Radial gradient that transitions colors outward from a center point */
2337
+ RADIAL = "RADIAL"
2338
+ }
2339
+ /** @enumType */
2340
+ type GradientTypeWithLiterals = GradientType | 'UNKNOWN_GRADIENT_TYPE' | 'LINEAR' | 'RADIAL';
2341
+ /**
2342
+ * GradientStop defines a color position within a gradient.
2343
+ * Each stop has a color, opacity, and position value.
2344
+ */
2345
+ interface GradientStop {
2346
+ /**
2347
+ * Color in eight-value hexadecimal format (e.g., #FF0099AA)
2348
+ * @format COLOR_HEX
2349
+ */
2350
+ color?: string | null;
2351
+ /**
2352
+ * Opacity of the color at this stop (0.0 to 1.0)
2353
+ * Deprecated, opacity is an alpha part of the color field
2354
+ * @max 1
2355
+ * @deprecated Opacity of the color at this stop (0.0 to 1.0)
2356
+ * Deprecated, opacity is an alpha part of the color field
2357
+ * @replacedBy color
2358
+ * @targetRemovalDate 2025-11-30
2359
+ */
2360
+ opacity?: number | null;
2361
+ /**
2362
+ * Position of this stop within the gradient (0.0 to 1.0)
2363
+ * 0.0 represents the start of the gradient, 1.0 represents the end
2364
+ * @max 1
2365
+ */
2366
+ position?: number | null;
2367
+ }
2368
+ /**
2369
+ * Center defines the center point for a radial gradient.
2370
+ * Uses normalized coordinates (0.0 to 1.0) where (0,0) is top-left
2371
+ * and (1,1) is bottom-right of the container.
2372
+ */
2373
+ interface Center {
2374
+ /**
2375
+ * X-coordinate of the center point (0.0 to 1.0)
2376
+ * @max 1
2377
+ */
2378
+ x?: number | null;
2379
+ /**
2380
+ * Y-coordinate of the center point (0.0 to 1.0)
2381
+ * @max 1
2382
+ */
2383
+ y?: number | null;
2384
+ }
2385
+ /** ImageScaling defines how the background image should be sized. */
2386
+ declare enum ImageScaling {
2387
+ /** Default value when scaling is not specified */
2388
+ UNKNOWN_IMAGE_SCALING = "UNKNOWN_IMAGE_SCALING",
2389
+ /** Image will cover the entire container, potentially cropping parts of the image */
2390
+ COVER = "COVER",
2391
+ /** Image will be contained within the container, maintaining its aspect ratio */
2392
+ CONTAIN = "CONTAIN",
2393
+ /** Image will use its original size without scaling */
2394
+ AUTO = "AUTO"
2395
+ }
2396
+ /** @enumType */
2397
+ type ImageScalingWithLiterals = ImageScaling | 'UNKNOWN_IMAGE_SCALING' | 'COVER' | 'CONTAIN' | 'AUTO';
2398
+ /** ImagePosition defines how the image is positioned within its container. */
2399
+ declare enum ImageOptionsImagePosition {
2400
+ /** Default value when position is not specified */
2401
+ UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
2402
+ /** Position image at the top center of the container */
2403
+ TOP = "TOP",
2404
+ /** Position image at the top left corner of the container */
2405
+ TOP_LEFT = "TOP_LEFT",
2406
+ /** Position image at the top right corner of the container */
2407
+ TOP_RIGHT = "TOP_RIGHT",
2408
+ /** Position image at the center of the container */
2409
+ CENTER = "CENTER",
2410
+ /** Position image at the middle left of the container */
2411
+ CENTER_LEFT = "CENTER_LEFT",
2412
+ /** Position image at the middle right of the container */
2413
+ CENTER_RIGHT = "CENTER_RIGHT",
2414
+ /** Position image at the bottom center of the container */
2415
+ BOTTOM = "BOTTOM",
2416
+ /** Position image at the bottom left corner of the container */
2417
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2418
+ /** Position image at the bottom right corner of the container */
2419
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2420
+ }
2421
+ /** @enumType */
2422
+ type ImageOptionsImagePositionWithLiterals = ImageOptionsImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2423
+ /** BackgroundType determines what kind of background is being used. */
2424
+ declare enum BackgroundBackgroundType {
2425
+ /** Default value when background type is not specified */
2426
+ UNKNOWN_BACKGROUND_TYPE = "UNKNOWN_BACKGROUND_TYPE",
2427
+ /** Background is a solid color */
2428
+ COLOR = "COLOR",
2429
+ /** Background is an image */
2430
+ IMAGE = "IMAGE"
2431
+ }
2432
+ /** @enumType */
2433
+ type BackgroundBackgroundTypeWithLiterals = BackgroundBackgroundType | 'UNKNOWN_BACKGROUND_TYPE' | 'COLOR' | 'IMAGE';
2434
+ /**
2435
+ * Options for configuring a solid color background.
2436
+ * Includes color and opacity settings.
2437
+ */
2438
+ interface ColorOptions {
2439
+ /** Background color swatch, supporting both solid colors and gradients */
2440
+ color?: ColorSwatch;
2441
+ }
2442
+ /**
2443
+ * Options for configuring an image background.
2444
+ * Includes image source, positioning, scaling, and overlay settings.
2445
+ */
2446
+ interface ImageOptions {
2447
+ /**
2448
+ * Background image URL pointing to the source image
2449
+ * @format WEB_URL
2450
+ */
2451
+ url?: string | null;
2452
+ /**
2453
+ * Image opacity, ranging from 0 (fully transparent) to 1 (fully opaque)
2454
+ * @max 1
2455
+ */
2456
+ opacity?: number | null;
2457
+ /** Image background color (overlay color) swatch, supporting both solid colors and gradients */
2458
+ color?: ColorSwatch;
2459
+ /** Image scaling method that determines how the image fits in the container */
2460
+ scaling?: ImageScalingWithLiterals;
2461
+ /** Image position within the container when it doesn't fill the entire space */
2462
+ position?: ImageOptionsImagePositionWithLiterals;
2463
+ }
2464
+ /**
2465
+ * Typography defines styling for all text elements in a quick-page.
2466
+ * Includes configurations for different heading levels and paragraph text.
2467
+ */
2468
+ interface Typography {
2469
+ /** Styling for primary/largest heading (h1) */
2470
+ heading1?: TypographyTextStyle;
2471
+ /** Styling for secondary heading (h2) */
2472
+ heading2?: TypographyTextStyle;
2473
+ /** Styling for tertiary heading (h3) */
2474
+ heading3?: TypographyTextStyle;
2475
+ /** Styling for fourth-level heading (h4) */
2476
+ heading4?: TypographyTextStyle;
2477
+ /** Styling for fifth-level heading (h5) */
2478
+ heading5?: TypographyTextStyle;
2479
+ /** Styling for sixth-level heading (h6) */
2480
+ heading6?: TypographyTextStyle;
2481
+ /** Styling for regular paragraph text */
2482
+ paragraph?: TypographyTextStyle;
2483
+ }
2484
+ /**
2485
+ * TextStyle defines the visual properties of text elements.
2486
+ * Includes font family, weight, color, size, and spacing options.
2487
+ */
2488
+ interface TypographyTextStyle {
2489
+ /**
2490
+ * Font family name, limited to 50 characters
2491
+ * Determines the typeface used for the text
2492
+ * @maxLength 50
2493
+ */
2494
+ fontFamily?: string | null;
2495
+ /**
2496
+ * Font weight value (0-1000)
2497
+ * Standard values: 400 (normal), 700 (bold)
2498
+ * @max 1000
2499
+ */
2500
+ weight?: number | null;
2501
+ /**
2502
+ * Text color in eight-value hexadecimal format (e.g., #FF0099AA)
2503
+ * @format COLOR_HEX
2504
+ */
2505
+ color?: string | null;
2506
+ /**
2507
+ * Font size in pixels (0-400)
2508
+ * @max 400
2509
+ */
2510
+ size?: number | null;
2511
+ /**
2512
+ * Defines the spacing between each line of the text (0-10)
2513
+ * 1.0 is standard single line spacing
2514
+ * @max 10
2515
+ */
2516
+ lineHeight?: number | null;
2517
+ /**
2518
+ * The text letter spacing in em units (0-10)
2519
+ * Controls the space between each character
2520
+ * @max 10
2521
+ */
2522
+ letterSpacing?: number | null;
2523
+ }
2524
+ /**
2525
+ * Button defines the styling configuration for buttons.
2526
+ * Includes normal state styling and hover effects.
2527
+ */
2528
+ interface Button {
2529
+ /**
2530
+ * Background color in eight-value hexadecimal format (e.g., #FF0099AA)
2531
+ * @format COLOR_HEX
2532
+ */
2533
+ backgroundColor?: string | null;
2534
+ /**
2535
+ * Text color in eight-value hexadecimal format (e.g., #FF0099AA)
2536
+ * @format COLOR_HEX
2537
+ */
2538
+ textColor?: string | null;
2539
+ /** Button size preset (small, medium, large) */
2540
+ size?: ButtonSizeWithLiterals;
2541
+ /** Border configuration */
2542
+ border?: ButtonBorder;
2543
+ /** Hover state styling when user's cursor is over the button */
2544
+ hover?: Hover;
2545
+ }
2546
+ /**
2547
+ * ButtonSize defines the preset size options for buttons.
2548
+ * Affects padding, font size, and overall button dimensions.
2549
+ */
2550
+ declare enum ButtonSize {
2551
+ /** Default value when button size is not specified */
2552
+ UNKNOWN_BUTTON_SIZE = "UNKNOWN_BUTTON_SIZE",
2553
+ /** Small button size - minimal padding, smaller text */
2554
+ SMALL = "SMALL",
2555
+ /** Medium button size - standard padding and text size */
2556
+ MEDIUM = "MEDIUM",
2557
+ /** Large button size - generous padding, larger text */
2558
+ LARGE = "LARGE"
2559
+ }
2560
+ /** @enumType */
2561
+ type ButtonSizeWithLiterals = ButtonSize | 'UNKNOWN_BUTTON_SIZE' | 'SMALL' | 'MEDIUM' | 'LARGE';
2562
+ /**
2563
+ * Border defines the styling for button borders.
2564
+ * Includes settings for radius, width, color, and opacity.
2565
+ */
2566
+ interface ButtonBorder {
2567
+ /**
2568
+ * Border radius in pixels (0-100)
2569
+ * Controls how rounded the corners of the button will be
2570
+ * @max 100
2571
+ */
2572
+ radius?: number | null;
2573
+ /**
2574
+ * Border width in pixels (0-10)
2575
+ * Controls the thickness of the border around the button
2576
+ * @max 10
2577
+ */
2578
+ width?: number | null;
2579
+ /**
2580
+ * Border color in eight-value hexadecimal format (e.g., #FF0099AA)
2581
+ * @format COLOR_HEX
2582
+ */
2583
+ color?: string | null;
2584
+ }
2585
+ /**
2586
+ * Hover defines styling for the button's hover state.
2587
+ * These styles are applied when the user's cursor is over the button.
2588
+ */
2589
+ interface Hover {
2590
+ /**
2591
+ * Background color on hover in eight-value hexadecimal format (e.g., #FF0099AA)
2592
+ * @format COLOR_HEX
2593
+ */
2594
+ backgroundColor?: string | null;
2595
+ /**
2596
+ * Text color on hover in eight-value hexadecimal format (e.g., #FF0099AA)
2597
+ * @format COLOR_HEX
2598
+ */
2599
+ textColor?: string | null;
2600
+ /**
2601
+ * Border color on hover in eight-value hexadecimal format (e.g., #FF0099AA)
2602
+ * @format COLOR_HEX
2603
+ */
2604
+ borderColor?: string | null;
2605
+ }
2606
+ /**
2607
+ * Image message defines styling configurations for images used in quick-pages.
2608
+ * Currently supports border styling with plans for additional image styling options.
2609
+ */
2610
+ interface V1Image {
2611
+ /** Border configuration for the image */
2612
+ border?: ImageBorder;
2613
+ }
2614
+ /**
2615
+ * Border defines the styling for image borders.
2616
+ * Includes settings for radius, width, color, and opacity.
2617
+ */
2618
+ interface ImageBorder {
2619
+ /**
2620
+ * Border radius in pixels (0-100)
2621
+ * Controls how rounded the corners of the image will be
2622
+ * @max 100
2623
+ */
2624
+ radius?: number | null;
2625
+ /**
2626
+ * Border width in pixels (0-10)
2627
+ * Controls the thickness of the border around the image
2628
+ * @max 10
2629
+ */
2630
+ width?: number | null;
2631
+ /**
2632
+ * Border color in eight-value hexadecimal format (e.g., #FF0099AA)
2633
+ * @format COLOR_HEX
2634
+ */
2635
+ color?: string | null;
2636
+ }
2197
2637
  /** Request message for continuing an existing conversation with streaming response delivery */
2198
2638
  interface ContinueConversationStreamedRequest {
2199
2639
  /** The conversation context including the current document state and message history. */
@@ -2490,4 +2930,4 @@ interface ListConversationSuggestionsOptions {
2490
2930
  suggestions?: Suggestion[];
2491
2931
  }
2492
2932
 
2493
- export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, ChunkType, type ChunkTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type ContinueConversationStreamedOptions, type ContinueConversationStreamedRequest, type ConversationResponse, type CreateConversationStreamedOptions, type CreateConversationStreamedRequest, type CreateRicosConversationOptions, type CreateRicosConversationRequest, type CreateRicosConversationResponse, Crop, type CropWithLiterals, type DebugOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type ExplainOption, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InsertOptions, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListConversationSuggestionsOptions, type ListConversationSuggestionsRequest, type ListConversationSuggestionsResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type MetadataOptions, Name, type NameWithLiterals, type Node, type NodeDataOneOf, type NodeOptions, type NodeStyle, type NodeTextOptions, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type PatchOptions, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, PositionsPosition, type PositionsPositionWithLiterals, type PricingData, type ProgressOptions, type PromptConfiguration, type RangeDetails, type Rel, type ReplaceOptions, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RicosConversation, type RicosConversationChunk, type RicosConversationChunkTypeDataOneOf, type RicosConversationUserMessageOneOf, Scaling, type ScalingWithLiterals, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Suggestion, SuggestionAction, type SuggestionActionWithLiterals, type SuggestionOptions, type SuggestionPositionDetailsOneOf, type SummaryOptions, type TableCellData, type TableData, Target, type TargetWithLiterals, type TemplateSearchConfiguration, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Tool, type ToolConfigurationOneOf, type ToolUseOptions, Type, type TypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals };
2933
+ export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundBackgroundType, type BackgroundBackgroundTypeWithLiterals, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type Button, type ButtonBorder, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type Center, ChunkType, type ChunkTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, type ContinueConversationStreamedOptions, type ContinueConversationStreamedRequest, type ConversationResponse, type CreateConversationStreamedOptions, type CreateConversationStreamedRequest, type CreateRicosConversationOptions, type CreateRicosConversationRequest, type CreateRicosConversationResponse, Crop, type CropWithLiterals, type DebugOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type ExplainOption, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type GradientStop, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageOptions, ImageOptionsImagePosition, type ImageOptionsImagePositionWithLiterals, ImagePosition, type ImagePositionWithLiterals, ImageScaling, type ImageScalingWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InsertOptions, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListConversationSuggestionsOptions, type ListConversationSuggestionsRequest, type ListConversationSuggestionsResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type MetadataOptions, Name, type NameWithLiterals, type Node, type NodeDataOneOf, type NodeOptions, type NodeStyle, type NodeTextOptions, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type PatchOptions, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, PositionsPosition, type PositionsPositionWithLiterals, type PricingData, type ProgressOptions, type PromptConfiguration, type RangeDetails, type Rel, type ReplaceOptions, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RicosConversation, type RicosConversationChunk, type RicosConversationChunkTypeDataOneOf, type RicosConversationUserMessageOneOf, Scaling, type ScalingWithLiterals, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Suggestion, SuggestionAction, type SuggestionActionWithLiterals, type SuggestionOptions, type SuggestionPositionDetailsOneOf, type SummaryOptions, type TableCellData, type TableData, Target, type TargetWithLiterals, type TemplateSearchConfiguration, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Theme, type ThemeOptions, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Tool, type ToolConfigurationOneOf, type ToolUseOptions, Type, type TypeWithLiterals, type Typography, type TypographyTextStyle, type V1Background, type V1BackgroundBackgroundTypeOptionsOneOf, type V1Gradient, type V1GradientGradientTypeOptionsOneOf, type V1Image, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals };