@choiceform/os-client-core 3.4.7 → 3.4.12
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/changelog.md +43 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +95 -144
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -740,6 +740,12 @@ interface CFSetupOptions {
|
|
|
740
740
|
* @param message 错误内容
|
|
741
741
|
*/
|
|
742
742
|
error(message: string): void;
|
|
743
|
+
/**
|
|
744
|
+
* 上传日志的方法,核心包运行时会生成一些有利于追踪已知错误的日志,希望能通过这个方法上传。
|
|
745
|
+
* 如果不设置则不会上传错误。而是在控制台打印出来
|
|
746
|
+
* @param message
|
|
747
|
+
*/
|
|
748
|
+
uploadLog?(message: string, level?: 'log' | 'error'):void;
|
|
743
749
|
/**
|
|
744
750
|
* 如果在单页模式中有很多题目,进行作答后点击下一题,其中某道题目的答案不满足要求,
|
|
745
751
|
* 这时候可能这道题目不再滚动条所在的可见范围内,
|
|
@@ -800,9 +806,9 @@ interface CFSetupOptions {
|
|
|
800
806
|
* 自定义中断回调方法
|
|
801
807
|
* 当核心包中运行发生异常,或者需要去往外部程序时,会中断答题流程,同时触发调用这个方法
|
|
802
808
|
* 客户端中可以配置该方法来在此时机做一些自定义的事情。
|
|
803
|
-
*
|
|
809
|
+
* 默认行为:总是会在方法被调用的一秒内压制系统消息
|
|
804
810
|
*/
|
|
805
|
-
customAbort?(
|
|
811
|
+
customAbort?(): void;
|
|
806
812
|
/**
|
|
807
813
|
* 自定义的去往开始页面方法,只有使用web核心包是需要关注这个方法
|
|
808
814
|
*
|
|
@@ -1054,19 +1060,19 @@ interface CFCore extends CFSetupOptions {
|
|
|
1054
1060
|
* 多次调用,只有第一次会发送请求
|
|
1055
1061
|
* 请求的数据会放到缓存中,后面几次获得的都是返回的缓存数据
|
|
1056
1062
|
*/
|
|
1057
|
-
fetchStartState(): Promise<CFStartState>;
|
|
1063
|
+
fetchStartState(): Promise<CFStartState | null>;
|
|
1058
1064
|
/**
|
|
1059
1065
|
* 获取答题也数据的方法
|
|
1060
1066
|
* 多次调用,只有第一次会发送请求
|
|
1061
1067
|
* 请求的数据会放到缓存中,后面几次获得的都是返回的缓存数据
|
|
1062
1068
|
*/
|
|
1063
|
-
fetchSurveyState(): Promise<CFSurveyState>;
|
|
1069
|
+
fetchSurveyState(): Promise<CFSurveyState | null>;
|
|
1064
1070
|
/**
|
|
1065
1071
|
* 获取奖励页面数据的方法
|
|
1066
1072
|
* 多次调用,只有第一次会发送请求
|
|
1067
1073
|
* 请求的数据会放到缓存中,后面几次获得的都是返回的缓存数据
|
|
1068
1074
|
*/
|
|
1069
|
-
fetchRewardState(): Promise<CFRewardState>;
|
|
1075
|
+
fetchRewardState(): Promise<CFRewardState | null>;
|
|
1070
1076
|
/**
|
|
1071
1077
|
* 获取主题
|
|
1072
1078
|
*/
|
|
@@ -2850,6 +2856,10 @@ interface ICFSmallPayload {
|
|
|
2850
2856
|
* 测试用例数据
|
|
2851
2857
|
*/
|
|
2852
2858
|
readonly testCases: ICFTestCase[];
|
|
2859
|
+
/**
|
|
2860
|
+
* 最后发布时间
|
|
2861
|
+
*/
|
|
2862
|
+
readonly publishedAt: string;
|
|
2853
2863
|
}
|
|
2854
2864
|
|
|
2855
2865
|
|
|
@@ -4244,7 +4254,11 @@ interface ICFSlideRateNode extends ICFSubjectNode, ICFFillNodeMixin {
|
|
|
4244
4254
|
* 奖励节点
|
|
4245
4255
|
* @ignore
|
|
4246
4256
|
*/
|
|
4247
|
-
interface ICFGiftNode extends ICFInputNodeMixin {
|
|
4257
|
+
interface ICFGiftNode extends ICFInputNodeMixin, IOriginCustomLogo {
|
|
4258
|
+
/**
|
|
4259
|
+
* 自带的多语言翻译包,可以不需要请求大翻译包就实现开始页面的语言切换。
|
|
4260
|
+
*/
|
|
4261
|
+
readonly i18n?: any;
|
|
4248
4262
|
/**
|
|
4249
4263
|
* 结束按钮文字
|
|
4250
4264
|
* @ignore
|
|
@@ -4272,7 +4286,7 @@ interface ICFGiftNode extends ICFInputNodeMixin {
|
|
|
4272
4286
|
* 中奖id
|
|
4273
4287
|
* @ignore
|
|
4274
4288
|
*/
|
|
4275
|
-
readonly
|
|
4289
|
+
readonly rewardId: string;
|
|
4276
4290
|
/**
|
|
4277
4291
|
* 手机号码
|
|
4278
4292
|
*/
|
|
@@ -4297,6 +4311,7 @@ interface ICFGiftNode extends ICFInputNodeMixin {
|
|
|
4297
4311
|
* @ignore
|
|
4298
4312
|
*/
|
|
4299
4313
|
readonly needVerification: boolean;
|
|
4314
|
+
|
|
4300
4315
|
}
|
|
4301
4316
|
|
|
4302
4317
|
/**
|
|
@@ -4499,6 +4514,11 @@ interface ICFStartNode extends ICFNode, ICFStartMiniState, ICFOutputNodeMixin, C
|
|
|
4499
4514
|
* @ignore
|
|
4500
4515
|
*/
|
|
4501
4516
|
readonly logoText: string;
|
|
4517
|
+
/**
|
|
4518
|
+
* @ignore
|
|
4519
|
+
* 自定义logo的图片内容
|
|
4520
|
+
*/
|
|
4521
|
+
readonly logoImage?: CFImageInNode;
|
|
4502
4522
|
/**
|
|
4503
4523
|
* @ignore
|
|
4504
4524
|
*/
|
|
@@ -4538,7 +4558,7 @@ interface ICFStartNode extends ICFNode, ICFStartMiniState, ICFOutputNodeMixin, C
|
|
|
4538
4558
|
* 循环节点
|
|
4539
4559
|
* @ignore
|
|
4540
4560
|
*/
|
|
4541
|
-
interface ICFLoopNode extends ICFInOutNodeMixin
|
|
4561
|
+
interface ICFLoopNode extends ICFInOutNodeMixin, ICFOptNodeMixin {
|
|
4542
4562
|
readonly loopEnd: ICFPort;
|
|
4543
4563
|
readonly loopStart: ICFPort;
|
|
4544
4564
|
}
|
|
@@ -5711,7 +5731,6 @@ interface IQuestionCustomData {}
|
|
|
5711
5731
|
* 题目基础类型
|
|
5712
5732
|
*/
|
|
5713
5733
|
interface CFQuestion extends ICFNode, ICFTypeInfo {
|
|
5714
|
-
readonly __ques__: true;
|
|
5715
5734
|
/**
|
|
5716
5735
|
* 预留,其实很多题目并不需要该属性
|
|
5717
5736
|
*/
|
|
@@ -5740,7 +5759,7 @@ interface CFQuestion extends ICFNode, ICFTypeInfo {
|
|
|
5740
5759
|
* 原始节点
|
|
5741
5760
|
* @ignore
|
|
5742
5761
|
*/
|
|
5743
|
-
readonly origin:
|
|
5762
|
+
readonly origin: any;
|
|
5744
5763
|
/**
|
|
5745
5764
|
* 选择类型
|
|
5746
5765
|
* 对于选择类型的题目有效,用于确定这是单选模式和多选模式
|
|
@@ -6508,20 +6527,16 @@ interface CFEndPage extends ICFEndNode, CFQuestion, CFMediaNodeMixin {
|
|
|
6508
6527
|
* 如果有[[CFLotteryPage.qrCode]]属性,则需要将他渲染成二维码,并提示用户微信扫描二维码可以领奖
|
|
6509
6528
|
*/
|
|
6510
6529
|
interface CFLotteryPage extends ICFLotteryNode, CFQuestion {
|
|
6511
|
-
|
|
6512
|
-
* 中奖节点id
|
|
6513
|
-
* @ignore
|
|
6514
|
-
*/
|
|
6515
|
-
readonly rewardNodeId: string;
|
|
6530
|
+
readonly rewardRaw?: ICFRewardRaw;
|
|
6516
6531
|
/**
|
|
6517
6532
|
* 二维码信息,如有值,则需要渲染成二维码,并提示微信扫码可领取奖励.
|
|
6518
6533
|
*/
|
|
6519
|
-
readonly qrCode
|
|
6534
|
+
readonly qrCode?: string;
|
|
6520
6535
|
/**
|
|
6521
6536
|
* 跳转链接
|
|
6522
6537
|
* @ignore
|
|
6523
6538
|
*/
|
|
6524
|
-
readonly linkUrl
|
|
6539
|
+
readonly linkUrl?: string;
|
|
6525
6540
|
/**
|
|
6526
6541
|
* 结束按钮文字
|
|
6527
6542
|
* @ignore
|
|
@@ -6531,11 +6546,7 @@ interface CFLotteryPage extends ICFLotteryNode, CFQuestion {
|
|
|
6531
6546
|
* 是否已中奖
|
|
6532
6547
|
* @ignore
|
|
6533
6548
|
*/
|
|
6534
|
-
readonly goal
|
|
6535
|
-
/**
|
|
6536
|
-
* 活动名称
|
|
6537
|
-
*/
|
|
6538
|
-
readonly activityName: string;
|
|
6549
|
+
readonly goal?: boolean;
|
|
6539
6550
|
/**
|
|
6540
6551
|
* 奖励名称
|
|
6541
6552
|
*/
|
|
@@ -6831,7 +6842,7 @@ interface ICFDataHub extends ICFSubjectNode, CFSubjectQuestion {
|
|
|
6831
6842
|
* 虚拟循环题
|
|
6832
6843
|
* @ignore
|
|
6833
6844
|
*/
|
|
6834
|
-
interface ICFLoopHub extends ICFLoopNode, CFQuestion
|
|
6845
|
+
interface ICFLoopHub extends ICFLoopNode, CFQuestion, ICFOptNodeMixin {
|
|
6835
6846
|
/**
|
|
6836
6847
|
* 包含的循环仰视变量列表
|
|
6837
6848
|
*/
|
|
@@ -6893,6 +6904,7 @@ interface ICFIntroMeta {
|
|
|
6893
6904
|
readonly payload_digest: string;
|
|
6894
6905
|
readonly diagram_url: string;
|
|
6895
6906
|
readonly langs: ICFRemoteLang[];
|
|
6907
|
+
readonly published_at:string;
|
|
6896
6908
|
}
|
|
6897
6909
|
|
|
6898
6910
|
/**
|
|
@@ -6918,6 +6930,7 @@ interface ICFParsedSmallPayload {
|
|
|
6918
6930
|
readonly langResume: boolean;
|
|
6919
6931
|
readonly testCases: ICFTestCase[];
|
|
6920
6932
|
readonly disabledLangs: string[];
|
|
6933
|
+
readonly publishedAt: string;
|
|
6921
6934
|
}
|
|
6922
6935
|
|
|
6923
6936
|
/**
|
|
@@ -7232,6 +7245,10 @@ interface ICFEmbedApi {
|
|
|
7232
7245
|
* @ignore
|
|
7233
7246
|
*/
|
|
7234
7247
|
interface CFStateBase {
|
|
7248
|
+
/**
|
|
7249
|
+
* 核心
|
|
7250
|
+
*/
|
|
7251
|
+
readonly core?: CFCore;
|
|
7235
7252
|
/**
|
|
7236
7253
|
* UI交互回调函数
|
|
7237
7254
|
*/
|
|
@@ -7389,15 +7406,23 @@ interface CFRealtimeState extends CFSurveyState, CFStartState {
|
|
|
7389
7406
|
* 自定义logo
|
|
7390
7407
|
* @ignore
|
|
7391
7408
|
*/
|
|
7392
|
-
interface
|
|
7409
|
+
interface ICFCustomLogoBase {
|
|
7393
7410
|
/**
|
|
7394
7411
|
* 是否使用自定义logo
|
|
7395
7412
|
* @ignore
|
|
7396
7413
|
*/
|
|
7397
7414
|
readonly useCustomLogo: boolean;
|
|
7415
|
+
}
|
|
7416
|
+
|
|
7417
|
+
interface IOriginCustomLogo extends ICFCustomLogoBase {
|
|
7418
|
+
readonly logoText?: string;
|
|
7419
|
+
readonly logoImage?: CFImageInNode;
|
|
7420
|
+
}
|
|
7421
|
+
|
|
7422
|
+
interface ICFCustomLogo extends ICFCustomLogoBase{
|
|
7398
7423
|
/**
|
|
7399
|
-
|
|
7400
|
-
|
|
7424
|
+
* 自定logo文字
|
|
7425
|
+
*/
|
|
7401
7426
|
readonly customText: string;
|
|
7402
7427
|
/**
|
|
7403
7428
|
* 自定logo图片地址
|
|
@@ -7411,10 +7436,10 @@ interface ICFCustomLogo {
|
|
|
7411
7436
|
interface ICFRewardRaw {
|
|
7412
7437
|
readonly id?: number;
|
|
7413
7438
|
readonly gift_id?: string;
|
|
7414
|
-
readonly code
|
|
7415
|
-
readonly type
|
|
7416
|
-
readonly lottery_id
|
|
7417
|
-
readonly lottery_option_id
|
|
7439
|
+
readonly code?: string;
|
|
7440
|
+
readonly type?: GIFT_TYPE;
|
|
7441
|
+
readonly lottery_id?: string;
|
|
7442
|
+
readonly lottery_option_id?: string;
|
|
7418
7443
|
}
|
|
7419
7444
|
|
|
7420
7445
|
/**
|
|
@@ -7426,123 +7451,43 @@ interface ICFLotteryResult {
|
|
|
7426
7451
|
readonly rewardImage?: CFImageInNode;
|
|
7427
7452
|
}
|
|
7428
7453
|
|
|
7454
|
+
|
|
7429
7455
|
/**
|
|
7430
7456
|
* @ignore
|
|
7431
7457
|
*/
|
|
7432
|
-
interface
|
|
7458
|
+
interface ICFRedEnvelopeReward {
|
|
7433
7459
|
readonly recipient?: CFUserInfo;
|
|
7460
|
+
readonly theme: CFTheme;
|
|
7434
7461
|
gift?: {
|
|
7435
|
-
readonly
|
|
7436
|
-
readonly id: string;
|
|
7462
|
+
readonly id: number;
|
|
7437
7463
|
readonly title: string;
|
|
7438
7464
|
readonly description: string;
|
|
7439
7465
|
config: {
|
|
7440
7466
|
readonly gift_name: string;
|
|
7441
7467
|
};
|
|
7468
|
+
origin: ICFGiftNode
|
|
7442
7469
|
};
|
|
7443
7470
|
readonly amount?: number;
|
|
7444
7471
|
readonly type?: GIFT_TYPE;
|
|
7445
7472
|
}
|
|
7446
7473
|
|
|
7447
7474
|
/**
|
|
7448
|
-
*
|
|
7449
|
-
*
|
|
7475
|
+
* 缓存的奖励信息,由于奖励页面会重开页面,内存会丢失,预览模式下和自定义奖励模式下后台是不给后续接口的,
|
|
7476
|
+
* 需要自己缓存关键信息用于展示奖励页面,正好这两种模式下都不会切换设备,所以用缓存也可以。
|
|
7477
|
+
*
|
|
7478
|
+
* 正式答题的红包奖励会使用后台后续接口给的信息,不会使用这些缓存信息。
|
|
7450
7479
|
*/
|
|
7451
|
-
interface
|
|
7452
|
-
readonly
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
*/
|
|
7456
|
-
readonly goal: boolean;
|
|
7457
|
-
/**
|
|
7458
|
-
* @ignore
|
|
7459
|
-
*/
|
|
7460
|
-
readonly goalId: string;
|
|
7461
|
-
/**
|
|
7462
|
-
* @ignore
|
|
7463
|
-
*/
|
|
7464
|
-
readonly origin: ICFGiftNode;
|
|
7465
|
-
/**
|
|
7466
|
-
* 奖励标题
|
|
7467
|
-
*/
|
|
7468
|
-
readonly rewardTitle: string;
|
|
7469
|
-
/**
|
|
7470
|
-
* 奖励描述
|
|
7471
|
-
*/
|
|
7472
|
-
readonly rewardDescribe: string;
|
|
7473
|
-
/**
|
|
7474
|
-
* @ignore
|
|
7475
|
-
*/
|
|
7476
|
-
readonly noWxShare: boolean;
|
|
7477
|
-
/**
|
|
7478
|
-
* @ignore
|
|
7479
|
-
*/
|
|
7480
|
-
readonly wxShareInfo: ICFWxShareInfo;
|
|
7481
|
-
/**
|
|
7482
|
-
* @ignore
|
|
7483
|
-
*/
|
|
7484
|
-
readonly quesTitle: string;
|
|
7485
|
-
/**
|
|
7486
|
-
* 图片列表
|
|
7487
|
-
*/
|
|
7488
|
-
readonly images: CFImageInNode[];
|
|
7489
|
-
/**
|
|
7490
|
-
* 奖励名称
|
|
7491
|
-
*/
|
|
7492
|
-
readonly rewardName: string;
|
|
7493
|
-
/**
|
|
7494
|
-
* 奖励数量
|
|
7495
|
-
*/
|
|
7496
|
-
readonly rewardCount: number;
|
|
7497
|
-
/**
|
|
7498
|
-
* @ignore
|
|
7499
|
-
*/
|
|
7500
|
-
readonly lotteryCount: number;
|
|
7501
|
-
/**
|
|
7502
|
-
* @ignore
|
|
7503
|
-
*/
|
|
7504
|
-
readonly sendTime: string;
|
|
7505
|
-
/**
|
|
7506
|
-
* 奖励类型,UI根据此决定渲染方式
|
|
7507
|
-
*/
|
|
7508
|
-
readonly rewardType: GIFT_TYPE;
|
|
7509
|
-
/**
|
|
7510
|
-
* @ignore
|
|
7511
|
-
*/
|
|
7512
|
-
readonly verifyCode: string;
|
|
7513
|
-
/**
|
|
7514
|
-
* @ignore
|
|
7515
|
-
*/
|
|
7516
|
-
readonly rewardNodeId: string;
|
|
7517
|
-
/**
|
|
7518
|
-
* @ignore
|
|
7519
|
-
*/
|
|
7520
|
-
readonly logoUrl: string;
|
|
7521
|
-
/**
|
|
7522
|
-
* @ignore
|
|
7523
|
-
*/
|
|
7524
|
-
readonly transactionID: string;
|
|
7525
|
-
/**
|
|
7526
|
-
* @ignore
|
|
7527
|
-
* 问卷原始id
|
|
7528
|
-
*/
|
|
7529
|
-
readonly surveyId: string;
|
|
7530
|
-
/**
|
|
7531
|
-
* 标题
|
|
7532
|
-
*/
|
|
7533
|
-
readonly title: string;
|
|
7534
|
-
/**
|
|
7535
|
-
* @ignore
|
|
7536
|
-
*/
|
|
7537
|
-
readonly companyID: string;
|
|
7538
|
-
/**
|
|
7539
|
-
* 活动名称
|
|
7540
|
-
*/
|
|
7541
|
-
readonly activityName: string;
|
|
7480
|
+
interface ICFCachedReward {
|
|
7481
|
+
readonly custom?: ICFCustomReward;
|
|
7482
|
+
readonly redEnvelope?: ICFRedEnvelopeReward;
|
|
7483
|
+
}
|
|
7542
7484
|
|
|
7543
|
-
readonly summary: string;
|
|
7544
7485
|
|
|
7545
|
-
|
|
7486
|
+
interface ICFCustomReward {
|
|
7487
|
+
readonly qrCode: string;
|
|
7488
|
+
readonly theme: CFTheme;
|
|
7489
|
+
readonly giftNode: ICFGiftNode;
|
|
7490
|
+
readonly rewardId: number;
|
|
7546
7491
|
}
|
|
7547
7492
|
|
|
7548
7493
|
/**
|
|
@@ -7550,8 +7495,18 @@ interface ICFRewardInfo extends ICFGiftNode, ICFLotteryResult, ICFCustomLogo {
|
|
|
7550
7495
|
*
|
|
7551
7496
|
* 渲染奖励信息
|
|
7552
7497
|
*/
|
|
7553
|
-
interface CFRewardState extends
|
|
7498
|
+
interface CFRewardState extends CFStateBase, ICFCustomLogo {
|
|
7499
|
+
readonly quesTitle: string;
|
|
7500
|
+
readonly nodeName: string;
|
|
7501
|
+
readonly type: NODE_TYPE;
|
|
7502
|
+
readonly layout: CFNodeLayout;
|
|
7503
|
+
readonly template?: CFNodeTemplate;
|
|
7554
7504
|
readonly renderId: string;
|
|
7505
|
+
readonly rewardName: string;
|
|
7506
|
+
readonly title: string;
|
|
7507
|
+
readonly phoneNumber: string;
|
|
7508
|
+
readonly rewardId: string;
|
|
7509
|
+
images: CFImageInNode[]
|
|
7555
7510
|
/**
|
|
7556
7511
|
* 奖励类型,包含以下两种类型
|
|
7557
7512
|
* 需要根据该类型渲染不同的内容.
|
|
@@ -7675,11 +7630,6 @@ interface ICFStartMiniState extends ICFCustomLogo {
|
|
|
7675
7630
|
* 自带的多语言翻译包,可以不需要请求大翻译包就实现开始页面的语言切换。
|
|
7676
7631
|
*/
|
|
7677
7632
|
readonly i18n?: any;
|
|
7678
|
-
/**
|
|
7679
|
-
* @ignore
|
|
7680
|
-
* 自定义logo的图片内容
|
|
7681
|
-
*/
|
|
7682
|
-
readonly logoImage?: CFImageInNode;
|
|
7683
7633
|
/**
|
|
7684
7634
|
* 是否显示题目编号
|
|
7685
7635
|
*/
|
|
@@ -7821,6 +7771,10 @@ interface CFStartState extends ICFTranMiniState, ICFStartMiniIntro, CFStateBase,
|
|
|
7821
7771
|
* 是否正在加载,当该属性为true时,UI需要选人加载中的状态
|
|
7822
7772
|
*/
|
|
7823
7773
|
readonly nextLoading: boolean;
|
|
7774
|
+
/**
|
|
7775
|
+
* 最后发布地址
|
|
7776
|
+
*/
|
|
7777
|
+
readonly publishedAt: string;
|
|
7824
7778
|
}
|
|
7825
7779
|
|
|
7826
7780
|
|
|
@@ -7872,10 +7826,6 @@ interface CFSurveyState
|
|
|
7872
7826
|
* 进入答题页面后答案是否发生了变化
|
|
7873
7827
|
*/
|
|
7874
7828
|
readonly answerChangedSinceStart: boolean;
|
|
7875
|
-
/**
|
|
7876
|
-
* 对于核心的引用
|
|
7877
|
-
*/
|
|
7878
|
-
readonly core?: CFCore;
|
|
7879
7829
|
/**
|
|
7880
7830
|
* @ignore
|
|
7881
7831
|
*/
|
|
@@ -8080,10 +8030,6 @@ interface CFSurveyState
|
|
|
8080
8030
|
* @ignore
|
|
8081
8031
|
*/
|
|
8082
8032
|
readonly point?: CFMapPoint;
|
|
8083
|
-
/**
|
|
8084
|
-
* @ignore
|
|
8085
|
-
*/
|
|
8086
|
-
readonly rewardInfo?: ICFRewardInfo;
|
|
8087
8033
|
/**
|
|
8088
8034
|
* 预览工具信息
|
|
8089
8035
|
*/
|
|
@@ -8266,6 +8212,7 @@ interface ICFLangEndNodeStore extends ICFLangNodeStore {
|
|
|
8266
8212
|
interface ICFLangGiftNodeStore extends ICFLangNodeStore {
|
|
8267
8213
|
readonly endBtnText: string;
|
|
8268
8214
|
readonly activityName: string;
|
|
8215
|
+
readonly logoText: string;
|
|
8269
8216
|
}
|
|
8270
8217
|
|
|
8271
8218
|
/**
|
|
@@ -8969,9 +8916,13 @@ interface CFQueryParams {
|
|
|
8969
8916
|
*/
|
|
8970
8917
|
readonly tid?: string;
|
|
8971
8918
|
/**
|
|
8972
|
-
*
|
|
8919
|
+
* 问卷使用的语言,奖励授权跳转的时候要用到
|
|
8920
|
+
*/
|
|
8921
|
+
readonly locale?: string;
|
|
8922
|
+
/**
|
|
8923
|
+
* 奖励类型,跳转到奖励页面的时候会用到
|
|
8973
8924
|
*/
|
|
8974
|
-
readonly
|
|
8925
|
+
readonly rt?: string;
|
|
8975
8926
|
/**
|
|
8976
8927
|
* 自动运行地址
|
|
8977
8928
|
* @ignore
|