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