freemium-survey-components 2.0.429 → 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.
|
@@ -42,12 +42,6 @@ jobs:
|
|
|
42
42
|
registry-url: 'https://registry.npmjs.org'
|
|
43
43
|
cache: 'npm'
|
|
44
44
|
|
|
45
|
-
- name: Install dependencies
|
|
46
|
-
run: npm ci
|
|
47
|
-
|
|
48
|
-
- name: Build library
|
|
49
|
-
run: npm run build
|
|
50
|
-
|
|
51
45
|
- name: Configure Git
|
|
52
46
|
run: |
|
|
53
47
|
git config --local user.email "survey-serv-ci@users.noreply.github.com"
|
|
@@ -119,7 +113,6 @@ jobs:
|
|
|
119
113
|
### Changes:
|
|
120
114
|
- **Version**: ${{ steps.current_version.outputs.version }} → ${{ steps.version_bump.outputs.new_version }}
|
|
121
115
|
- **Type**: ${{ github.event.inputs.version_type }}
|
|
122
|
-
- **Build**: Verified successful
|
|
123
116
|
|
|
124
117
|
### Recent commits:
|
|
125
118
|
${{ steps.changes.outputs.changes }}
|
|
@@ -265,11 +258,11 @@ jobs:
|
|
|
265
258
|
|
|
266
259
|
### Installation:
|
|
267
260
|
\`\`\`bash
|
|
268
|
-
npm install
|
|
261
|
+
npm install freemium-survey-components@${{ steps.check_version.outputs.version }}
|
|
269
262
|
\`\`\`
|
|
270
263
|
|
|
271
264
|
### Links:
|
|
272
|
-
- [npm Package](https://www.npmjs.com/package
|
|
265
|
+
- [npm Package](https://www.npmjs.com/package/freemium-survey-components)
|
|
273
266
|
- [Documentation](https://github.com/${{ github.repository }}/blob/main/README.md)
|
|
274
267
|
|
|
275
268
|
---
|
|
@@ -281,8 +274,7 @@ jobs:
|
|
|
281
274
|
run: |
|
|
282
275
|
gh release create ${{ steps.check_version.outputs.version }} \
|
|
283
276
|
--title "Release ${{ steps.check_version.outputs.version }}" \
|
|
284
|
-
--notes-file release_notes.md
|
|
285
|
-
--latest
|
|
277
|
+
--notes-file release_notes.md
|
|
286
278
|
echo "GitHub release created!"
|
|
287
279
|
env:
|
|
288
280
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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;
|