@wix/auto_sdk_rich-content_ricos-conversations 1.0.4 → 1.0.5
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.
- package/build/cjs/index.d.ts +49 -27
- package/build/cjs/index.js +20 -429
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +20 -421
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +50 -19
- package/build/cjs/meta.js +20 -405
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +49 -27
- package/build/es/index.mjs +18 -428
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +18 -420
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +50 -19
- package/build/es/meta.mjs +18 -404
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -14
- package/build/internal/cjs/index.js +20 -429
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +49 -37
- package/build/internal/cjs/index.typings.js +20 -421
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +50 -19
- package/build/internal/cjs/meta.js +20 -405
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -14
- package/build/internal/es/index.mjs +18 -428
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +49 -37
- package/build/internal/es/index.typings.mjs +18 -420
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +50 -19
- package/build/internal/es/meta.mjs +18 -404
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/cjs/index.d.ts
CHANGED
|
@@ -1981,6 +1981,8 @@ interface Theme {
|
|
|
1981
1981
|
* Defines how images appear, including borders
|
|
1982
1982
|
*/
|
|
1983
1983
|
image?: V1Image;
|
|
1984
|
+
/** Page setup configuration for layout and spacing */
|
|
1985
|
+
pageSetup?: PageSetup;
|
|
1984
1986
|
}
|
|
1985
1987
|
/**
|
|
1986
1988
|
* Background defines the styling for a page's background.
|
|
@@ -2379,6 +2381,52 @@ interface ImageBorder {
|
|
|
2379
2381
|
*/
|
|
2380
2382
|
color?: string | null;
|
|
2381
2383
|
}
|
|
2384
|
+
/**
|
|
2385
|
+
* PageSetup defines the layout configuration for pages.
|
|
2386
|
+
* Includes settings for horizontal padding and vertical padding to control page spacing.
|
|
2387
|
+
*/
|
|
2388
|
+
interface PageSetup {
|
|
2389
|
+
/** Horizontal padding configuration that determines the horizontal spacing of page content */
|
|
2390
|
+
horizontalPadding?: HorizontalPaddingTypeWithLiterals;
|
|
2391
|
+
/** Vertical padding configuration that controls spacing above and below content */
|
|
2392
|
+
verticalPadding?: VerticalPaddingTypeWithLiterals;
|
|
2393
|
+
}
|
|
2394
|
+
/**
|
|
2395
|
+
* Type defines the preset horizontal padding options for page content.
|
|
2396
|
+
* Each option provides different amounts of horizontal spacing for content layout.
|
|
2397
|
+
*/
|
|
2398
|
+
declare enum HorizontalPaddingType {
|
|
2399
|
+
/** Default value when horizontal padding is not specified */
|
|
2400
|
+
UNKNOWN_HORIZONTAL_PADDING = "UNKNOWN_HORIZONTAL_PADDING",
|
|
2401
|
+
/** No horizontal padding - content extends to page edges */
|
|
2402
|
+
NONE = "NONE",
|
|
2403
|
+
/** Small horizontal padding - minimal left/right spacing, results in wide content area */
|
|
2404
|
+
SMALL = "SMALL",
|
|
2405
|
+
/** Medium horizontal padding - standard left/right spacing, results in balanced content width */
|
|
2406
|
+
MEDIUM = "MEDIUM",
|
|
2407
|
+
/** Large horizontal padding - generous left/right spacing, results in narrow content area */
|
|
2408
|
+
LARGE = "LARGE"
|
|
2409
|
+
}
|
|
2410
|
+
/** @enumType */
|
|
2411
|
+
type HorizontalPaddingTypeWithLiterals = HorizontalPaddingType | 'UNKNOWN_HORIZONTAL_PADDING' | 'NONE' | 'SMALL' | 'MEDIUM' | 'LARGE';
|
|
2412
|
+
/**
|
|
2413
|
+
* Type defines the preset vertical padding options for page content.
|
|
2414
|
+
* Each option provides different amounts of spacing around content.
|
|
2415
|
+
*/
|
|
2416
|
+
declare enum VerticalPaddingType {
|
|
2417
|
+
/** Default value when vertical padding is not specified */
|
|
2418
|
+
UNKNOWN_VERTICAL_PADDING = "UNKNOWN_VERTICAL_PADDING",
|
|
2419
|
+
/** No vertical padding - content extends to page edges */
|
|
2420
|
+
NONE = "NONE",
|
|
2421
|
+
/** Small vertical padding - minimal spacing around content */
|
|
2422
|
+
SMALL = "SMALL",
|
|
2423
|
+
/** Medium vertical padding - standard spacing around content */
|
|
2424
|
+
MEDIUM = "MEDIUM",
|
|
2425
|
+
/** Large vertical padding - generous spacing around content */
|
|
2426
|
+
LARGE = "LARGE"
|
|
2427
|
+
}
|
|
2428
|
+
/** @enumType */
|
|
2429
|
+
type VerticalPaddingTypeWithLiterals = VerticalPaddingType | 'UNKNOWN_VERTICAL_PADDING' | 'NONE' | 'SMALL' | 'MEDIUM' | 'LARGE';
|
|
2382
2430
|
/** Request message for prompting the AI assistant with streaming response delivery */
|
|
2383
2431
|
interface CreateConversationStreamedRequest {
|
|
2384
2432
|
/**
|
|
@@ -2403,11 +2451,6 @@ interface CreateConversationStreamedRequest {
|
|
|
2403
2451
|
interface ConversationResponse {
|
|
2404
2452
|
/** A single chunk of the AI's response stream. */
|
|
2405
2453
|
chunk?: RicosConversationChunk;
|
|
2406
|
-
/**
|
|
2407
|
-
* Unique identifier for this conversation session.
|
|
2408
|
-
* @format GUID
|
|
2409
|
-
*/
|
|
2410
|
-
conversationId?: string | null;
|
|
2411
2454
|
}
|
|
2412
2455
|
/**
|
|
2413
2456
|
* Represents a single chunk in a Ricos AI conversation flow
|
|
@@ -2636,21 +2679,10 @@ interface ThemeOptions {
|
|
|
2636
2679
|
/** Generated theme */
|
|
2637
2680
|
theme?: Theme;
|
|
2638
2681
|
}
|
|
2639
|
-
/** Request message for continuing an existing conversation with streaming response delivery */
|
|
2640
|
-
interface ContinueConversationStreamedRequest {
|
|
2641
|
-
/** The conversation context including the current document state and message history. */
|
|
2642
|
-
ricosConversation?: RicosConversation;
|
|
2643
|
-
}
|
|
2644
2682
|
/** Request message for creating a new conversation with non-streamed response */
|
|
2645
2683
|
interface CreateRicosConversationRequest {
|
|
2646
2684
|
/** The conversation context including the current document state and message history */
|
|
2647
2685
|
ricosConversation?: RicosConversation;
|
|
2648
|
-
/**
|
|
2649
|
-
* Flag to control whether this conversation should be persisted for future continuation
|
|
2650
|
-
* When true, the conversation will be stored and can be continued using the continue endpoint
|
|
2651
|
-
* When false, the conversation will not be persisted
|
|
2652
|
-
*/
|
|
2653
|
-
persist?: boolean;
|
|
2654
2686
|
/**
|
|
2655
2687
|
* Invocation id
|
|
2656
2688
|
* @format GUID
|
|
@@ -2907,19 +2939,9 @@ interface CreateConversationStreamedOptions {
|
|
|
2907
2939
|
*/
|
|
2908
2940
|
invocationId?: string | null;
|
|
2909
2941
|
}
|
|
2910
|
-
interface ContinueConversationStreamedOptions {
|
|
2911
|
-
/** The conversation context including the current document state and message history. */
|
|
2912
|
-
ricosConversation?: RicosConversation;
|
|
2913
|
-
}
|
|
2914
2942
|
interface CreateRicosConversationOptions {
|
|
2915
2943
|
/** The conversation context including the current document state and message history */
|
|
2916
2944
|
ricosConversation?: RicosConversation;
|
|
2917
|
-
/**
|
|
2918
|
-
* Flag to control whether this conversation should be persisted for future continuation
|
|
2919
|
-
* When true, the conversation will be stored and can be continued using the continue endpoint
|
|
2920
|
-
* When false, the conversation will not be persisted
|
|
2921
|
-
*/
|
|
2922
|
-
persist?: boolean;
|
|
2923
2945
|
/**
|
|
2924
2946
|
* Invocation id
|
|
2925
2947
|
* @format GUID
|
|
@@ -2934,4 +2956,4 @@ interface ListConversationSuggestionsOptions {
|
|
|
2934
2956
|
suggestions?: Suggestion[];
|
|
2935
2957
|
}
|
|
2936
2958
|
|
|
2937
|
-
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
|
|
2959
|
+
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 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, HorizontalPaddingType, type HorizontalPaddingTypeWithLiterals, 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 PageSetup, 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, VerticalPaddingType, type VerticalPaddingTypeWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals };
|
package/build/cjs/index.js
CHANGED
|
@@ -37,6 +37,7 @@ __export(index_exports, {
|
|
|
37
37
|
FontType: () => FontType,
|
|
38
38
|
GIFType: () => GIFType,
|
|
39
39
|
GradientType: () => GradientType,
|
|
40
|
+
HorizontalPaddingType: () => HorizontalPaddingType,
|
|
40
41
|
ImageOptionsImagePosition: () => ImageOptionsImagePosition,
|
|
41
42
|
ImagePosition: () => ImagePosition,
|
|
42
43
|
ImageScaling: () => ImageScaling,
|
|
@@ -67,13 +68,13 @@ __export(index_exports, {
|
|
|
67
68
|
Type: () => Type,
|
|
68
69
|
VerticalAlignment: () => VerticalAlignment,
|
|
69
70
|
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
71
|
+
VerticalPaddingType: () => VerticalPaddingType,
|
|
70
72
|
ViewMode: () => ViewMode,
|
|
71
73
|
ViewRole: () => ViewRole,
|
|
72
74
|
VoteRole: () => VoteRole,
|
|
73
75
|
WebhookIdentityType: () => WebhookIdentityType,
|
|
74
76
|
Width: () => Width,
|
|
75
77
|
WidthType: () => WidthType,
|
|
76
|
-
continueConversationStreamed: () => continueConversationStreamed4,
|
|
77
78
|
createConversationStreamed: () => createConversationStreamed4,
|
|
78
79
|
createRicosConversation: () => createRicosConversation4,
|
|
79
80
|
listConversationSuggestions: () => listConversationSuggestions4
|
|
@@ -512,391 +513,6 @@ function createConversationStreamed(payload) {
|
|
|
512
513
|
}
|
|
513
514
|
return __createConversationStreamed;
|
|
514
515
|
}
|
|
515
|
-
function continueConversationStreamed(payload) {
|
|
516
|
-
function __continueConversationStreamed({ host }) {
|
|
517
|
-
const serializedData = (0, import_transform_paths.transformPaths)(payload, [
|
|
518
|
-
{
|
|
519
|
-
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
520
|
-
paths: [
|
|
521
|
-
{
|
|
522
|
-
path: "ricosConversation.messageInRichContent.nodes.galleryData.items.image.media.duration"
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
path: "ricosConversation.messageInRichContent.nodes.galleryData.items.video.media.duration"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
path: "ricosConversation.messageInRichContent.nodes.galleryData.items.video.thumbnail.duration"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
path: "ricosConversation.messageInRichContent.nodes.galleryData.options.item.ratio"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
path: "ricosConversation.messageInRichContent.nodes.imageData.image.duration"
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
path: "ricosConversation.messageInRichContent.nodes.mapData.mapSettings.lat"
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
path: "ricosConversation.messageInRichContent.nodes.mapData.mapSettings.lng"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
path: "ricosConversation.messageInRichContent.nodes.pollData.poll.image.duration"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
path: "ricosConversation.messageInRichContent.nodes.pollData.poll.options.image.duration"
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
path: "ricosConversation.messageInRichContent.nodes.pollData.design.poll.background.image.duration"
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
path: "ricosConversation.messageInRichContent.nodes.appEmbedData.image.duration"
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
path: "ricosConversation.messageInRichContent.nodes.videoData.video.duration"
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
path: "ricosConversation.messageInRichContent.nodes.videoData.thumbnail.duration"
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
path: "ricosConversation.messageInRichContent.nodes.audioData.audio.duration"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
path: "ricosConversation.messageInRichContent.nodes.audioData.coverImage.duration"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
path: "ricosConversation.messageInRichContent.nodes.layoutData.backgroundImage.media.duration"
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
path: "ricosConversation.messageInRichContent.nodes.layoutData.backdropImage.media.duration"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
path: "ricosConversation.document.nodes.galleryData.items.image.media.duration"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
path: "ricosConversation.document.nodes.galleryData.items.video.media.duration"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
path: "ricosConversation.document.nodes.galleryData.items.video.thumbnail.duration"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
path: "ricosConversation.document.nodes.galleryData.options.item.ratio"
|
|
583
|
-
},
|
|
584
|
-
{ path: "ricosConversation.document.nodes.imageData.image.duration" },
|
|
585
|
-
{ path: "ricosConversation.document.nodes.mapData.mapSettings.lat" },
|
|
586
|
-
{ path: "ricosConversation.document.nodes.mapData.mapSettings.lng" },
|
|
587
|
-
{
|
|
588
|
-
path: "ricosConversation.document.nodes.pollData.poll.image.duration"
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
path: "ricosConversation.document.nodes.pollData.poll.options.image.duration"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
path: "ricosConversation.document.nodes.pollData.design.poll.background.image.duration"
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
path: "ricosConversation.document.nodes.appEmbedData.image.duration"
|
|
598
|
-
},
|
|
599
|
-
{ path: "ricosConversation.document.nodes.videoData.video.duration" },
|
|
600
|
-
{
|
|
601
|
-
path: "ricosConversation.document.nodes.videoData.thumbnail.duration"
|
|
602
|
-
},
|
|
603
|
-
{ path: "ricosConversation.document.nodes.audioData.audio.duration" },
|
|
604
|
-
{
|
|
605
|
-
path: "ricosConversation.document.nodes.audioData.coverImage.duration"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
path: "ricosConversation.document.nodes.layoutData.backgroundImage.media.duration"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
path: "ricosConversation.document.nodes.layoutData.backdropImage.media.duration"
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
path: "ricosConversation.documentSelection.nodes.galleryData.items.image.media.duration"
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
path: "ricosConversation.documentSelection.nodes.galleryData.items.video.media.duration"
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
path: "ricosConversation.documentSelection.nodes.galleryData.items.video.thumbnail.duration"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
path: "ricosConversation.documentSelection.nodes.galleryData.options.item.ratio"
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
path: "ricosConversation.documentSelection.nodes.imageData.image.duration"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
path: "ricosConversation.documentSelection.nodes.mapData.mapSettings.lat"
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
path: "ricosConversation.documentSelection.nodes.mapData.mapSettings.lng"
|
|
633
|
-
},
|
|
634
|
-
{
|
|
635
|
-
path: "ricosConversation.documentSelection.nodes.pollData.poll.image.duration"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
path: "ricosConversation.documentSelection.nodes.pollData.poll.options.image.duration"
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
path: "ricosConversation.documentSelection.nodes.pollData.design.poll.background.image.duration"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
path: "ricosConversation.documentSelection.nodes.appEmbedData.image.duration"
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
path: "ricosConversation.documentSelection.nodes.videoData.video.duration"
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
path: "ricosConversation.documentSelection.nodes.videoData.thumbnail.duration"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
path: "ricosConversation.documentSelection.nodes.audioData.audio.duration"
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
path: "ricosConversation.documentSelection.nodes.audioData.coverImage.duration"
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
path: "ricosConversation.documentSelection.nodes.layoutData.backgroundImage.media.duration"
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
path: "ricosConversation.documentSelection.nodes.layoutData.backdropImage.media.duration"
|
|
663
|
-
},
|
|
664
|
-
{ path: "ricosConversation.promptConfiguration.temperature" },
|
|
665
|
-
{ path: "ricosConversation.promptConfiguration.topP" },
|
|
666
|
-
{
|
|
667
|
-
path: "ricosConversation.theme.background.colorOptions.color.gradientOptions.opacity"
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
path: "ricosConversation.theme.background.colorOptions.color.gradientOptions.radialOptions.x"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
path: "ricosConversation.theme.background.colorOptions.color.gradientOptions.radialOptions.y"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
path: "ricosConversation.theme.background.colorOptions.color.gradientOptions.stops.opacity"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
path: "ricosConversation.theme.background.colorOptions.color.gradientOptions.stops.position"
|
|
680
|
-
},
|
|
681
|
-
{ path: "ricosConversation.theme.background.imageOptions.opacity" },
|
|
682
|
-
{
|
|
683
|
-
path: "ricosConversation.theme.background.imageOptions.color.gradientOptions.opacity"
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
path: "ricosConversation.theme.background.imageOptions.color.gradientOptions.radialOptions.x"
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
path: "ricosConversation.theme.background.imageOptions.color.gradientOptions.radialOptions.y"
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
path: "ricosConversation.theme.background.imageOptions.color.gradientOptions.stops.opacity"
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
path: "ricosConversation.theme.background.imageOptions.color.gradientOptions.stops.position"
|
|
696
|
-
},
|
|
697
|
-
{ path: "ricosConversation.theme.typography.heading1.lineHeight" },
|
|
698
|
-
{ path: "ricosConversation.theme.typography.heading1.letterSpacing" },
|
|
699
|
-
{ path: "ricosConversation.theme.typography.heading2.lineHeight" },
|
|
700
|
-
{ path: "ricosConversation.theme.typography.heading2.letterSpacing" },
|
|
701
|
-
{ path: "ricosConversation.theme.typography.heading3.lineHeight" },
|
|
702
|
-
{ path: "ricosConversation.theme.typography.heading3.letterSpacing" },
|
|
703
|
-
{ path: "ricosConversation.theme.typography.heading4.lineHeight" },
|
|
704
|
-
{ path: "ricosConversation.theme.typography.heading4.letterSpacing" },
|
|
705
|
-
{ path: "ricosConversation.theme.typography.heading5.lineHeight" },
|
|
706
|
-
{ path: "ricosConversation.theme.typography.heading5.letterSpacing" },
|
|
707
|
-
{ path: "ricosConversation.theme.typography.heading6.lineHeight" },
|
|
708
|
-
{ path: "ricosConversation.theme.typography.heading6.letterSpacing" },
|
|
709
|
-
{ path: "ricosConversation.theme.typography.paragraph.lineHeight" },
|
|
710
|
-
{
|
|
711
|
-
path: "ricosConversation.theme.typography.paragraph.letterSpacing"
|
|
712
|
-
}
|
|
713
|
-
]
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
|
|
717
|
-
paths: [
|
|
718
|
-
{
|
|
719
|
-
path: "ricosConversation.messageInRichContent.metadata.createdTimestamp"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
path: "ricosConversation.messageInRichContent.metadata.updatedTimestamp"
|
|
723
|
-
},
|
|
724
|
-
{ path: "ricosConversation.document.metadata.createdTimestamp" },
|
|
725
|
-
{ path: "ricosConversation.document.metadata.updatedTimestamp" },
|
|
726
|
-
{
|
|
727
|
-
path: "ricosConversation.documentSelection.metadata.createdTimestamp"
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
path: "ricosConversation.documentSelection.metadata.updatedTimestamp"
|
|
731
|
-
}
|
|
732
|
-
]
|
|
733
|
-
}
|
|
734
|
-
]);
|
|
735
|
-
const metadata = {
|
|
736
|
-
entityFqdn: "wix.ricos.v1.ricos_conversation",
|
|
737
|
-
method: "POST",
|
|
738
|
-
methodFqn: "wix.ricos.v1.RicosAiAssistant.ContinueConversationStreamed",
|
|
739
|
-
packageName: PACKAGE_NAME,
|
|
740
|
-
migrationOptions: {
|
|
741
|
-
optInTransformResponse: true
|
|
742
|
-
},
|
|
743
|
-
url: resolveWixRicosV1RicosAiAssistantUrl({
|
|
744
|
-
protoPath: "/v1/ricos-conversations/streamed/continue",
|
|
745
|
-
data: serializedData,
|
|
746
|
-
host
|
|
747
|
-
}),
|
|
748
|
-
data: serializedData,
|
|
749
|
-
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
750
|
-
{
|
|
751
|
-
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
752
|
-
paths: [
|
|
753
|
-
{
|
|
754
|
-
path: "chunk.nodeOptions.node.galleryData.items.image.media.duration"
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
path: "chunk.nodeOptions.node.galleryData.items.video.media.duration"
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
path: "chunk.nodeOptions.node.galleryData.items.video.thumbnail.duration"
|
|
761
|
-
},
|
|
762
|
-
{ path: "chunk.nodeOptions.node.galleryData.options.item.ratio" },
|
|
763
|
-
{ path: "chunk.nodeOptions.node.imageData.image.duration" },
|
|
764
|
-
{ path: "chunk.nodeOptions.node.mapData.mapSettings.lat" },
|
|
765
|
-
{ path: "chunk.nodeOptions.node.mapData.mapSettings.lng" },
|
|
766
|
-
{ path: "chunk.nodeOptions.node.pollData.poll.image.duration" },
|
|
767
|
-
{
|
|
768
|
-
path: "chunk.nodeOptions.node.pollData.poll.options.image.duration"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
path: "chunk.nodeOptions.node.pollData.design.poll.background.image.duration"
|
|
772
|
-
},
|
|
773
|
-
{ path: "chunk.nodeOptions.node.appEmbedData.image.duration" },
|
|
774
|
-
{ path: "chunk.nodeOptions.node.videoData.video.duration" },
|
|
775
|
-
{ path: "chunk.nodeOptions.node.videoData.thumbnail.duration" },
|
|
776
|
-
{ path: "chunk.nodeOptions.node.audioData.audio.duration" },
|
|
777
|
-
{ path: "chunk.nodeOptions.node.audioData.coverImage.duration" },
|
|
778
|
-
{
|
|
779
|
-
path: "chunk.nodeOptions.node.layoutData.backgroundImage.media.duration"
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
path: "chunk.nodeOptions.node.layoutData.backdropImage.media.duration"
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
path: "chunk.patchOptions.node.galleryData.items.image.media.duration"
|
|
786
|
-
},
|
|
787
|
-
{
|
|
788
|
-
path: "chunk.patchOptions.node.galleryData.items.video.media.duration"
|
|
789
|
-
},
|
|
790
|
-
{
|
|
791
|
-
path: "chunk.patchOptions.node.galleryData.items.video.thumbnail.duration"
|
|
792
|
-
},
|
|
793
|
-
{
|
|
794
|
-
path: "chunk.patchOptions.node.galleryData.options.item.ratio"
|
|
795
|
-
},
|
|
796
|
-
{ path: "chunk.patchOptions.node.imageData.image.duration" },
|
|
797
|
-
{ path: "chunk.patchOptions.node.mapData.mapSettings.lat" },
|
|
798
|
-
{ path: "chunk.patchOptions.node.mapData.mapSettings.lng" },
|
|
799
|
-
{ path: "chunk.patchOptions.node.pollData.poll.image.duration" },
|
|
800
|
-
{
|
|
801
|
-
path: "chunk.patchOptions.node.pollData.poll.options.image.duration"
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
path: "chunk.patchOptions.node.pollData.design.poll.background.image.duration"
|
|
805
|
-
},
|
|
806
|
-
{ path: "chunk.patchOptions.node.appEmbedData.image.duration" },
|
|
807
|
-
{ path: "chunk.patchOptions.node.videoData.video.duration" },
|
|
808
|
-
{ path: "chunk.patchOptions.node.videoData.thumbnail.duration" },
|
|
809
|
-
{ path: "chunk.patchOptions.node.audioData.audio.duration" },
|
|
810
|
-
{ path: "chunk.patchOptions.node.audioData.coverImage.duration" },
|
|
811
|
-
{
|
|
812
|
-
path: "chunk.patchOptions.node.layoutData.backgroundImage.media.duration"
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
path: "chunk.patchOptions.node.layoutData.backdropImage.media.duration"
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
path: "chunk.themeOptions.theme.background.colorOptions.color.gradientOptions.opacity"
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
path: "chunk.themeOptions.theme.background.colorOptions.color.gradientOptions.radialOptions.x"
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
path: "chunk.themeOptions.theme.background.colorOptions.color.gradientOptions.radialOptions.y"
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
path: "chunk.themeOptions.theme.background.colorOptions.color.gradientOptions.stops.opacity"
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
path: "chunk.themeOptions.theme.background.colorOptions.color.gradientOptions.stops.position"
|
|
831
|
-
},
|
|
832
|
-
{
|
|
833
|
-
path: "chunk.themeOptions.theme.background.imageOptions.opacity"
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
path: "chunk.themeOptions.theme.background.imageOptions.color.gradientOptions.opacity"
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
path: "chunk.themeOptions.theme.background.imageOptions.color.gradientOptions.radialOptions.x"
|
|
840
|
-
},
|
|
841
|
-
{
|
|
842
|
-
path: "chunk.themeOptions.theme.background.imageOptions.color.gradientOptions.radialOptions.y"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
path: "chunk.themeOptions.theme.background.imageOptions.color.gradientOptions.stops.opacity"
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
path: "chunk.themeOptions.theme.background.imageOptions.color.gradientOptions.stops.position"
|
|
849
|
-
},
|
|
850
|
-
{
|
|
851
|
-
path: "chunk.themeOptions.theme.typography.heading1.lineHeight"
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
path: "chunk.themeOptions.theme.typography.heading1.letterSpacing"
|
|
855
|
-
},
|
|
856
|
-
{
|
|
857
|
-
path: "chunk.themeOptions.theme.typography.heading2.lineHeight"
|
|
858
|
-
},
|
|
859
|
-
{
|
|
860
|
-
path: "chunk.themeOptions.theme.typography.heading2.letterSpacing"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
path: "chunk.themeOptions.theme.typography.heading3.lineHeight"
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
path: "chunk.themeOptions.theme.typography.heading3.letterSpacing"
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
path: "chunk.themeOptions.theme.typography.heading4.lineHeight"
|
|
870
|
-
},
|
|
871
|
-
{
|
|
872
|
-
path: "chunk.themeOptions.theme.typography.heading4.letterSpacing"
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
path: "chunk.themeOptions.theme.typography.heading5.lineHeight"
|
|
876
|
-
},
|
|
877
|
-
{
|
|
878
|
-
path: "chunk.themeOptions.theme.typography.heading5.letterSpacing"
|
|
879
|
-
},
|
|
880
|
-
{
|
|
881
|
-
path: "chunk.themeOptions.theme.typography.heading6.lineHeight"
|
|
882
|
-
},
|
|
883
|
-
{
|
|
884
|
-
path: "chunk.themeOptions.theme.typography.heading6.letterSpacing"
|
|
885
|
-
},
|
|
886
|
-
{
|
|
887
|
-
path: "chunk.themeOptions.theme.typography.paragraph.lineHeight"
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
path: "chunk.themeOptions.theme.typography.paragraph.letterSpacing"
|
|
891
|
-
}
|
|
892
|
-
]
|
|
893
|
-
}
|
|
894
|
-
])
|
|
895
|
-
};
|
|
896
|
-
return metadata;
|
|
897
|
-
}
|
|
898
|
-
return __continueConversationStreamed;
|
|
899
|
-
}
|
|
900
516
|
function createRicosConversation(payload) {
|
|
901
517
|
function __createRicosConversation({ host }) {
|
|
902
518
|
const serializedData = (0, import_transform_paths.transformPaths)(payload, [
|
|
@@ -1635,6 +1251,22 @@ var ButtonSize = /* @__PURE__ */ ((ButtonSize2) => {
|
|
|
1635
1251
|
ButtonSize2["LARGE"] = "LARGE";
|
|
1636
1252
|
return ButtonSize2;
|
|
1637
1253
|
})(ButtonSize || {});
|
|
1254
|
+
var HorizontalPaddingType = /* @__PURE__ */ ((HorizontalPaddingType2) => {
|
|
1255
|
+
HorizontalPaddingType2["UNKNOWN_HORIZONTAL_PADDING"] = "UNKNOWN_HORIZONTAL_PADDING";
|
|
1256
|
+
HorizontalPaddingType2["NONE"] = "NONE";
|
|
1257
|
+
HorizontalPaddingType2["SMALL"] = "SMALL";
|
|
1258
|
+
HorizontalPaddingType2["MEDIUM"] = "MEDIUM";
|
|
1259
|
+
HorizontalPaddingType2["LARGE"] = "LARGE";
|
|
1260
|
+
return HorizontalPaddingType2;
|
|
1261
|
+
})(HorizontalPaddingType || {});
|
|
1262
|
+
var VerticalPaddingType = /* @__PURE__ */ ((VerticalPaddingType2) => {
|
|
1263
|
+
VerticalPaddingType2["UNKNOWN_VERTICAL_PADDING"] = "UNKNOWN_VERTICAL_PADDING";
|
|
1264
|
+
VerticalPaddingType2["NONE"] = "NONE";
|
|
1265
|
+
VerticalPaddingType2["SMALL"] = "SMALL";
|
|
1266
|
+
VerticalPaddingType2["MEDIUM"] = "MEDIUM";
|
|
1267
|
+
VerticalPaddingType2["LARGE"] = "LARGE";
|
|
1268
|
+
return VerticalPaddingType2;
|
|
1269
|
+
})(VerticalPaddingType || {});
|
|
1638
1270
|
var ChunkType = /* @__PURE__ */ ((ChunkType2) => {
|
|
1639
1271
|
ChunkType2["CHUNK_TYPE_UNKNOWN"] = "CHUNK_TYPE_UNKNOWN";
|
|
1640
1272
|
ChunkType2["EXPLAIN"] = "EXPLAIN";
|
|
@@ -1715,44 +1347,11 @@ async function createConversationStreamed2(options) {
|
|
|
1715
1347
|
throw transformedError;
|
|
1716
1348
|
}
|
|
1717
1349
|
}
|
|
1718
|
-
async function continueConversationStreamed2(options) {
|
|
1719
|
-
const { httpClient, sideEffects } = arguments[1];
|
|
1720
|
-
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
|
|
1721
|
-
{ ricosConversation: options?.ricosConversation },
|
|
1722
|
-
[
|
|
1723
|
-
"ricosConversation.messageInRichContent",
|
|
1724
|
-
"ricosConversation.document",
|
|
1725
|
-
"ricosConversation.documentSelection"
|
|
1726
|
-
]
|
|
1727
|
-
);
|
|
1728
|
-
const reqOpts = continueConversationStreamed(payload);
|
|
1729
|
-
sideEffects?.onSiteCall?.();
|
|
1730
|
-
try {
|
|
1731
|
-
const result = await httpClient.request(reqOpts);
|
|
1732
|
-
sideEffects?.onSuccess?.(result);
|
|
1733
|
-
return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data, []);
|
|
1734
|
-
} catch (err) {
|
|
1735
|
-
const transformedError = (0, import_transform_error.transformError)(
|
|
1736
|
-
err,
|
|
1737
|
-
{
|
|
1738
|
-
spreadPathsToArguments: {},
|
|
1739
|
-
explicitPathsToArguments: {
|
|
1740
|
-
ricosConversation: "$[0].ricosConversation"
|
|
1741
|
-
},
|
|
1742
|
-
singleArgumentUnchanged: false
|
|
1743
|
-
},
|
|
1744
|
-
["options"]
|
|
1745
|
-
);
|
|
1746
|
-
sideEffects?.onError?.(err);
|
|
1747
|
-
throw transformedError;
|
|
1748
|
-
}
|
|
1749
|
-
}
|
|
1750
1350
|
async function createRicosConversation2(options) {
|
|
1751
1351
|
const { httpClient, sideEffects } = arguments[1];
|
|
1752
1352
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
|
|
1753
1353
|
{
|
|
1754
1354
|
ricosConversation: options?.ricosConversation,
|
|
1755
|
-
persist: options?.persist,
|
|
1756
1355
|
invocationId: options?.invocationId
|
|
1757
1356
|
},
|
|
1758
1357
|
[
|
|
@@ -1774,7 +1373,6 @@ async function createRicosConversation2(options) {
|
|
|
1774
1373
|
spreadPathsToArguments: {},
|
|
1775
1374
|
explicitPathsToArguments: {
|
|
1776
1375
|
ricosConversation: "$[0].ricosConversation",
|
|
1777
|
-
persist: "$[0].persist",
|
|
1778
1376
|
invocationId: "$[0].invocationId"
|
|
1779
1377
|
},
|
|
1780
1378
|
singleArgumentUnchanged: false
|
|
@@ -1823,13 +1421,6 @@ function createConversationStreamed3(httpClient) {
|
|
|
1823
1421
|
{ httpClient }
|
|
1824
1422
|
);
|
|
1825
1423
|
}
|
|
1826
|
-
function continueConversationStreamed3(httpClient) {
|
|
1827
|
-
return (options) => continueConversationStreamed2(
|
|
1828
|
-
options,
|
|
1829
|
-
// @ts-ignore
|
|
1830
|
-
{ httpClient }
|
|
1831
|
-
);
|
|
1832
|
-
}
|
|
1833
1424
|
function createRicosConversation3(httpClient) {
|
|
1834
1425
|
return (options) => createRicosConversation2(
|
|
1835
1426
|
options,
|
|
@@ -1849,7 +1440,6 @@ function listConversationSuggestions3(httpClient) {
|
|
|
1849
1440
|
// src/ricos-v1-ricos-conversation-ricos-conversations.context.ts
|
|
1850
1441
|
var import_rest_modules2 = require("@wix/sdk-runtime/rest-modules");
|
|
1851
1442
|
var createConversationStreamed4 = /* @__PURE__ */ (0, import_rest_modules2.createRESTModule)(createConversationStreamed3);
|
|
1852
|
-
var continueConversationStreamed4 = /* @__PURE__ */ (0, import_rest_modules2.createRESTModule)(continueConversationStreamed3);
|
|
1853
1443
|
var createRicosConversation4 = /* @__PURE__ */ (0, import_rest_modules2.createRESTModule)(createRicosConversation3);
|
|
1854
1444
|
var listConversationSuggestions4 = /* @__PURE__ */ (0, import_rest_modules2.createRESTModule)(listConversationSuggestions3);
|
|
1855
1445
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1871,6 +1461,7 @@ var listConversationSuggestions4 = /* @__PURE__ */ (0, import_rest_modules2.crea
|
|
|
1871
1461
|
FontType,
|
|
1872
1462
|
GIFType,
|
|
1873
1463
|
GradientType,
|
|
1464
|
+
HorizontalPaddingType,
|
|
1874
1465
|
ImageOptionsImagePosition,
|
|
1875
1466
|
ImagePosition,
|
|
1876
1467
|
ImageScaling,
|
|
@@ -1901,13 +1492,13 @@ var listConversationSuggestions4 = /* @__PURE__ */ (0, import_rest_modules2.crea
|
|
|
1901
1492
|
Type,
|
|
1902
1493
|
VerticalAlignment,
|
|
1903
1494
|
VerticalAlignmentAlignment,
|
|
1495
|
+
VerticalPaddingType,
|
|
1904
1496
|
ViewMode,
|
|
1905
1497
|
ViewRole,
|
|
1906
1498
|
VoteRole,
|
|
1907
1499
|
WebhookIdentityType,
|
|
1908
1500
|
Width,
|
|
1909
1501
|
WidthType,
|
|
1910
|
-
continueConversationStreamed,
|
|
1911
1502
|
createConversationStreamed,
|
|
1912
1503
|
createRicosConversation,
|
|
1913
1504
|
listConversationSuggestions
|