freemium-survey-components 2.0.290 → 2.0.291
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/lib/types/types.d.ts +92 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -1200,6 +1200,7 @@ export type ExportedComponentType = {
|
|
|
1200
1200
|
product?: ProductType;
|
|
1201
1201
|
};
|
|
1202
1202
|
hostConfig: HostConfigType;
|
|
1203
|
+
productConfigOverride: ProductConfigType;
|
|
1203
1204
|
surveyServAuthInfo: SurveyServAuthType;
|
|
1204
1205
|
product: ProductType;
|
|
1205
1206
|
placeholders: EmailPlaceholdersType;
|
|
@@ -1233,4 +1234,95 @@ export type FontSizeOptionType = {
|
|
|
1233
1234
|
label: string;
|
|
1234
1235
|
value: string;
|
|
1235
1236
|
};
|
|
1237
|
+
export type FeaturesKey = 'builder_language' | 'display_logic' | 'advanced_thankyou' | 'share_a_link' | 'builder_version';
|
|
1238
|
+
export type ProductConfigType = {
|
|
1239
|
+
previewChannel?: string[];
|
|
1240
|
+
version?: 2 | 3;
|
|
1241
|
+
surveyNameLimit?: number;
|
|
1242
|
+
surveyDescLimit?: number;
|
|
1243
|
+
iframeEnabled?: boolean;
|
|
1244
|
+
ratingLabelLimit?: number;
|
|
1245
|
+
surveyQuestionLimit?: number;
|
|
1246
|
+
filteredSurveyColumns?: string[];
|
|
1247
|
+
enableOnlyRatingTypes?: QuestionTypeVariantType[];
|
|
1248
|
+
enabledFeatures?: FeaturesKey[];
|
|
1249
|
+
activeChannels?: CollectorChannelType[];
|
|
1250
|
+
enableOnlyPointScales?: PointScaleRatingType[];
|
|
1251
|
+
enableOnlyQuestionTypes?: QuestionType[];
|
|
1252
|
+
enableNewThemeDesigns?: boolean;
|
|
1253
|
+
enabledNonThemedDashboardSelection?: boolean;
|
|
1254
|
+
enableThemeAsQuestionType?: boolean;
|
|
1255
|
+
enableThemeQuestionTypes?: string[];
|
|
1256
|
+
enableHeaderAlignment?: boolean;
|
|
1257
|
+
enableFooterAlignment?: boolean;
|
|
1258
|
+
enableHeaderThemeSettings?: boolean;
|
|
1259
|
+
enableEditAndResubmit?: boolean;
|
|
1260
|
+
disableSurveyRangeCustomization?: boolean;
|
|
1261
|
+
disableCollectors?: boolean;
|
|
1262
|
+
singleChannelMode?: boolean;
|
|
1263
|
+
disableUploads?: boolean;
|
|
1264
|
+
allContactsSelection?: boolean;
|
|
1265
|
+
reactivateCollector?: boolean;
|
|
1266
|
+
enableDkimChecks?: boolean;
|
|
1267
|
+
enableSurveyLimits?: boolean;
|
|
1268
|
+
enableSurveyBlockLimits?: boolean;
|
|
1269
|
+
enableRTE?: boolean;
|
|
1270
|
+
surveyBlockLimit?: number;
|
|
1271
|
+
enableAnalyticsPivot?: boolean;
|
|
1272
|
+
noOfFileQns?: number;
|
|
1273
|
+
mcqHideOthers?: boolean;
|
|
1274
|
+
mcqChoicesLimit?: number;
|
|
1275
|
+
mcqChoiceTextLimit?: number;
|
|
1276
|
+
defaultChannel?: string;
|
|
1277
|
+
NPSQuestionPlaceholders?: PlaceholderType[];
|
|
1278
|
+
EmailPlaceholders?: EmailPlaceholdersType;
|
|
1279
|
+
emailChannelInfo?: CollectorType;
|
|
1280
|
+
slackChannelInfo?: CollectorType;
|
|
1281
|
+
teamsChannelInfo?: CollectorType;
|
|
1282
|
+
enableTestEmailLimit?: boolean;
|
|
1283
|
+
isNewAuthFlowEnabled?: boolean;
|
|
1284
|
+
enableAllUsers?: boolean;
|
|
1285
|
+
enableAccountAndUserInfo?: boolean;
|
|
1286
|
+
enableVerifiedUsers?: boolean;
|
|
1287
|
+
enableSurveyThemes?: boolean;
|
|
1288
|
+
enableThirdPartyCollectors?: boolean;
|
|
1289
|
+
disablePlaceholdersFetching?: boolean;
|
|
1290
|
+
productName?: ProductType;
|
|
1291
|
+
filteredPromptTypes?: string[];
|
|
1292
|
+
collectorsDisplayStyle?: 'grid' | 'list';
|
|
1293
|
+
enableReorder?: boolean;
|
|
1294
|
+
enableScoring?: boolean;
|
|
1295
|
+
enableChoiceScoring?: boolean;
|
|
1296
|
+
enableSurveyEditColumn?: boolean;
|
|
1297
|
+
enableSurveyFilter?: boolean;
|
|
1298
|
+
enablePages?: boolean;
|
|
1299
|
+
enablePageSkipLogic?: boolean;
|
|
1300
|
+
enableRTLLanguages?: boolean;
|
|
1301
|
+
disableHideLogic?: boolean;
|
|
1302
|
+
showProgessBar?: boolean;
|
|
1303
|
+
showSurveyLogo?: boolean;
|
|
1304
|
+
enableDisplayFormat?: boolean;
|
|
1305
|
+
showActionButton?: boolean;
|
|
1306
|
+
collectorQuery?: {
|
|
1307
|
+
[key in string]: string;
|
|
1308
|
+
};
|
|
1309
|
+
displayButtonLimit?: number;
|
|
1310
|
+
enableEmptyLogic?: boolean;
|
|
1311
|
+
enableOnlyRatingScaleOrder?: QuestionTypeVariantType[];
|
|
1312
|
+
hideAdvScorePrecentage?: boolean;
|
|
1313
|
+
enablePromptQuestion?: boolean;
|
|
1314
|
+
enableBuilderActionMenu?: boolean;
|
|
1315
|
+
enableQuestionHint?: boolean;
|
|
1316
|
+
addFirstBlock?: boolean;
|
|
1317
|
+
enableQuestionComments?: boolean;
|
|
1318
|
+
enableSurveyFilterSearch?: boolean;
|
|
1319
|
+
enableCustomFooter?: boolean;
|
|
1320
|
+
disableDeepSchedulingFeatures?: string[];
|
|
1321
|
+
enableRTEFontSelector?: boolean;
|
|
1322
|
+
enableThemeQuestionDeleteOption?: boolean;
|
|
1323
|
+
enableAllTextBoxQuestionTypes?: boolean;
|
|
1324
|
+
enableQMandatoryForPivotQ?: boolean;
|
|
1325
|
+
enabledSkipLogicBasedOnConditions?: boolean;
|
|
1326
|
+
enableDisplayLogicOperators?: boolean;
|
|
1327
|
+
};
|
|
1236
1328
|
export {};
|