freemium-survey-components 2.0.430 → 2.0.431
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.
|
@@ -113,7 +113,6 @@ jobs:
|
|
|
113
113
|
### Changes:
|
|
114
114
|
- **Version**: ${{ steps.current_version.outputs.version }} → ${{ steps.version_bump.outputs.new_version }}
|
|
115
115
|
- **Type**: ${{ github.event.inputs.version_type }}
|
|
116
|
-
- **Build**: Verified successful
|
|
117
116
|
|
|
118
117
|
### Recent commits:
|
|
119
118
|
${{ steps.changes.outputs.changes }}
|
|
@@ -259,11 +258,11 @@ jobs:
|
|
|
259
258
|
|
|
260
259
|
### Installation:
|
|
261
260
|
\`\`\`bash
|
|
262
|
-
npm install
|
|
261
|
+
npm install freemium-survey-components@${{ steps.check_version.outputs.version }}
|
|
263
262
|
\`\`\`
|
|
264
263
|
|
|
265
264
|
### Links:
|
|
266
|
-
- [npm Package](https://www.npmjs.com/package
|
|
265
|
+
- [npm Package](https://www.npmjs.com/package/freemium-survey-components)
|
|
267
266
|
- [Documentation](https://github.com/${{ github.repository }}/blob/main/README.md)
|
|
268
267
|
|
|
269
268
|
---
|
package/lib/types/types.d.ts
CHANGED
|
@@ -1216,6 +1216,7 @@ export interface SurveyServResponseType {
|
|
|
1216
1216
|
event_id?: string;
|
|
1217
1217
|
language?: string;
|
|
1218
1218
|
detailed_response_score?: DetailedResponseScoreType;
|
|
1219
|
+
meta?: any;
|
|
1219
1220
|
}
|
|
1220
1221
|
export type PreviewChannelType = 'whatsapp' | 'email' | 'instagram' | 'chat';
|
|
1221
1222
|
export type ThemeType = 'light' | 'dark' | 'dew-light' | 'dew-dark';
|
|
@@ -1296,6 +1297,7 @@ export type ExportedComponentType = {
|
|
|
1296
1297
|
root?: HTMLElement;
|
|
1297
1298
|
disableSpacing?: boolean;
|
|
1298
1299
|
surveyCustomization?: SurveyCustomizationType;
|
|
1300
|
+
translationLanguageCode?: string;
|
|
1299
1301
|
};
|
|
1300
1302
|
export type CommonDebugType = {
|
|
1301
1303
|
log?: boolean;
|
|
@@ -1433,6 +1435,7 @@ export type ProductConfigType = {
|
|
|
1433
1435
|
enableResolutionQuestion?: boolean;
|
|
1434
1436
|
hideRangeCustomizationLevels?: boolean;
|
|
1435
1437
|
enableDesignSettingsInfoBanner?: boolean;
|
|
1438
|
+
enableFreddyResponseTranslation?: boolean;
|
|
1436
1439
|
};
|
|
1437
1440
|
export type TriggerSurveyResponseType = {
|
|
1438
1441
|
trigger_id?: string | null;
|