posthog-js 1.89.2 → 1.90.0

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/dist/module.d.ts CHANGED
@@ -1070,6 +1070,7 @@ interface SurveyAppearance {
1070
1070
  ratingButtonActiveColor?: string;
1071
1071
  ratingButtonHoverColor?: string;
1072
1072
  whiteLabel?: boolean;
1073
+ autoDisappear?: boolean;
1073
1074
  displayThankYouMessage?: boolean;
1074
1075
  thankYouMessageHeader?: string;
1075
1076
  thankYouMessageDescription?: string;
@@ -1088,6 +1089,7 @@ interface SurveyQuestionBase {
1088
1089
  question: string;
1089
1090
  description?: string | null;
1090
1091
  optional?: boolean;
1092
+ buttonText?: string;
1091
1093
  }
1092
1094
  interface BasicSurveyQuestion extends SurveyQuestionBase {
1093
1095
  type: SurveyQuestionType.Open;