freemium-survey-components 2.0.287 → 2.0.289
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/lib/types/types.d.ts +11 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -309,6 +309,7 @@ export type SurveyMetaType = {
|
|
|
309
309
|
is_advanced_scoring_enabled: boolean;
|
|
310
310
|
score_range?: ScalePropertiesRangeType[] | null;
|
|
311
311
|
};
|
|
312
|
+
is_reordered?: boolean;
|
|
312
313
|
};
|
|
313
314
|
export type SurveyBlockCategoryType = {
|
|
314
315
|
id?: string | null;
|
|
@@ -475,6 +476,10 @@ export type DisplayButtonType = {
|
|
|
475
476
|
show_button?: boolean | null;
|
|
476
477
|
text?: string | null;
|
|
477
478
|
};
|
|
479
|
+
export type ChannelMetaType = {
|
|
480
|
+
meta_title?: string | null;
|
|
481
|
+
meta_description?: string | null;
|
|
482
|
+
};
|
|
478
483
|
export type EmailChannelInfoType = {
|
|
479
484
|
dkim_settings?: any | null;
|
|
480
485
|
from_name?: string | null;
|
|
@@ -493,6 +498,7 @@ export type EmailChannelInfoType = {
|
|
|
493
498
|
display?: DisplayButtonType | null;
|
|
494
499
|
unsubscribe_link?: string | null;
|
|
495
500
|
test_email?: string | null;
|
|
501
|
+
meta?: ChannelMetaType | null;
|
|
496
502
|
};
|
|
497
503
|
export type WidgetStyles = 'default' | 'compact' | 'cozy';
|
|
498
504
|
export type WebAppChannelInfoType = {
|
|
@@ -503,6 +509,7 @@ export type WebAppChannelInfoType = {
|
|
|
503
509
|
restricted_for_list_contacts?: boolean;
|
|
504
510
|
backdrop_enabled?: boolean;
|
|
505
511
|
backdrop_color?: string;
|
|
512
|
+
meta?: ChannelMetaType | null;
|
|
506
513
|
};
|
|
507
514
|
export type MarketingChannelsTypes = 'Freshmarketer' | 'Freshworks CRM' | 'Freshdesk Customer Success' | 'ActiveCampaign' | 'Autopilot' | 'Customer.io' | 'Campaign Monitor' | 'Drip' | 'HubSpot' | 'Klaviyo' | 'MailChimp' | 'Mailjet' | 'Sendinblue' | 'SendGrid' | 'Zoho Campaigns' | 'Stripo' | 'Intercom' | 'Calendly' | 'Marketo' | 'Pardot' | 'Zendesk' | 'Sharpspring' | 'Keap' | 'Convertkit' | 'ConstantContact' | 'GetResponse' | 'Mailgun' | 'Helpscout' | 'Vero' | 'Marketing Cloud' | 'Drift' | 'Boomtrain' | 'Bronto' | 'Salesmanago' | 'Lifecycle.io' | 'Braze' | 'Others';
|
|
508
515
|
export type EmailEmbedChannelInfoType = {
|
|
@@ -516,6 +523,7 @@ export type EmailEmbedChannelInfoType = {
|
|
|
516
523
|
name: string;
|
|
517
524
|
value: string;
|
|
518
525
|
}>;
|
|
526
|
+
meta?: ChannelMetaType | null;
|
|
519
527
|
};
|
|
520
528
|
export type WebLinkChannelInfoType = {
|
|
521
529
|
message?: string | null;
|
|
@@ -526,14 +534,17 @@ export type WebLinkChannelInfoType = {
|
|
|
526
534
|
short_url?: string | null;
|
|
527
535
|
meta_image?: string | null;
|
|
528
536
|
message_option?: 'firstQuestion' | 'customMessage' | null;
|
|
537
|
+
meta?: ChannelMetaType | null;
|
|
529
538
|
};
|
|
530
539
|
export type SlackChannelInfoType = {
|
|
531
540
|
message?: string | null;
|
|
532
541
|
display?: DisplayButtonType | null;
|
|
542
|
+
meta?: ChannelMetaType | null;
|
|
533
543
|
};
|
|
534
544
|
export type TeamsChannelInfoType = {
|
|
535
545
|
message?: string | null;
|
|
536
546
|
display?: DisplayButtonType | null;
|
|
547
|
+
meta?: ChannelMetaType | null;
|
|
537
548
|
};
|
|
538
549
|
export type ChannelInfoType = {
|
|
539
550
|
email_channel_info?: EmailChannelInfoType | null;
|