freemium-survey-components 2.0.170 → 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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "2.0.170",
3
+ "version": "2.0.172",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",