freemium-survey-components 2.0.171 → 2.0.172
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 +10 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -448,11 +448,21 @@ export type WebLinkChannelInfoType = {
|
|
|
448
448
|
meta_image?: string | null;
|
|
449
449
|
message_option?: 'firstQuestion' | 'customMessage' | null;
|
|
450
450
|
};
|
|
451
|
+
export type SlackChannelInfoType = {
|
|
452
|
+
message?: string | null;
|
|
453
|
+
display?: DisplayButtonType | null;
|
|
454
|
+
};
|
|
455
|
+
export type TeamsChannelInfoType = {
|
|
456
|
+
message?: string | null;
|
|
457
|
+
display?: DisplayButtonType | null;
|
|
458
|
+
};
|
|
451
459
|
export type ChannelInfoType = {
|
|
452
460
|
email_channel_info?: EmailChannelInfoType | null;
|
|
453
461
|
web_in_app_channel_info?: WebAppChannelInfoType | null;
|
|
454
462
|
email_embed_channel_info?: EmailEmbedChannelInfoType | null;
|
|
455
463
|
web_link_channel_info?: WebLinkChannelInfoType | null;
|
|
464
|
+
slack_channel_info?: SlackChannelInfoType | null;
|
|
465
|
+
teams_channel_info?: TeamsChannelInfoType | null;
|
|
456
466
|
};
|
|
457
467
|
export type PreferredTimeType = {
|
|
458
468
|
hour?: number | null;
|