posthog-js 1.149.2 → 1.150.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
@@ -1312,7 +1312,7 @@ interface LinkSurveyQuestion extends SurveyQuestionBase {
1312
1312
  interface RatingSurveyQuestion extends SurveyQuestionBase {
1313
1313
  type: SurveyQuestionType.Rating;
1314
1314
  display: 'number' | 'emoji';
1315
- scale: number;
1315
+ scale: 3 | 5 | 7 | 10;
1316
1316
  lowerBoundLabel: string;
1317
1317
  upperBoundLabel: string;
1318
1318
  }