tencentcloud-sdk-nodejs 4.0.457 → 4.0.458

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.
Files changed (56) hide show
  1. package/CHANGELOG.md +143 -0
  2. package/SERVICE_CHANGELOG.md +171 -84
  3. package/package.json +1 -1
  4. package/products.md +8 -8
  5. package/src/common/abstract_client.ts +11 -1
  6. package/src/common/http/fetch.ts +12 -5
  7. package/src/common/http/http_connection.ts +23 -19
  8. package/src/common/interface.ts +11 -0
  9. package/src/common/sdk_version.ts +1 -1
  10. package/src/services/bma/v20210624/bma_client.ts +12 -11
  11. package/src/services/bma/v20210624/bma_models.ts +149 -149
  12. package/src/services/cvm/v20170312/cvm_client.ts +1 -1
  13. package/src/services/cvm/v20170312/cvm_models.ts +4 -4
  14. package/src/services/cwp/v20180228/cwp_client.ts +70 -19
  15. package/src/services/cwp/v20180228/cwp_models.ts +627 -215
  16. package/src/services/mariadb/v20170312/mariadb_client.ts +22 -60
  17. package/src/services/mariadb/v20170312/mariadb_models.ts +51 -358
  18. package/src/services/tse/v20201207/tse_client.ts +12 -0
  19. package/src/services/tse/v20201207/tse_models.ts +30 -0
  20. package/src/services/vod/v20180717/vod_models.ts +16 -0
  21. package/src/services/wav/v20210129/wav_models.ts +6 -0
  22. package/src/services/wedata/v20210820/wedata_client.ts +15 -3
  23. package/src/services/wedata/v20210820/wedata_models.ts +101 -44
  24. package/tencentcloud/common/abstract_client.d.ts +5 -1
  25. package/tencentcloud/common/abstract_client.js +6 -0
  26. package/tencentcloud/common/http/fetch.d.ts +6 -1
  27. package/tencentcloud/common/http/fetch.js +3 -2
  28. package/tencentcloud/common/http/http_connection.d.ts +10 -2
  29. package/tencentcloud/common/http/http_connection.js +8 -2
  30. package/tencentcloud/common/interface.d.ts +12 -0
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/bma/v20210624/bma_client.d.ts +11 -10
  34. package/tencentcloud/services/bma/v20210624/bma_client.js +11 -10
  35. package/tencentcloud/services/bma/v20210624/bma_models.d.ts +148 -148
  36. package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -1
  37. package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -1
  38. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +4 -4
  39. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +21 -5
  40. package/tencentcloud/services/cwp/v20180228/cwp_client.js +30 -6
  41. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +526 -178
  42. package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +7 -19
  43. package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +9 -27
  44. package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +45 -299
  45. package/tencentcloud/services/tse/v20201207/tse_client.d.ts +5 -1
  46. package/tencentcloud/services/tse/v20201207/tse_client.js +6 -0
  47. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +26 -0
  48. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +14 -0
  49. package/tencentcloud/services/wav/v20210129/wav_models.d.ts +5 -0
  50. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
  51. package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
  52. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +86 -38
  53. package/test/cwp.v20180228.test.js +44 -4
  54. package/test/mariadb.v20170312.test.js +6 -36
  55. package/test/tse.v20201207.test.js +10 -0
  56. package/test/wedata.v20210820.test.js +10 -0
@@ -32,31 +32,31 @@ export interface ProtectURLInfo {
32
32
  */
33
33
  export interface ModifyCRWhiteListRequest {
34
34
  /**
35
- * 白名单ID
35
+ * 该字段已废弃,白名单ID
36
36
  */
37
37
  WhiteListId?: number;
38
38
  /**
39
- * 平台名称
39
+ * 该字段已废弃,平台名称
40
40
  */
41
41
  PlatForm?: string;
42
42
  /**
43
- * 平台站点链接
43
+ * 该字段已废弃,平台站点链接
44
44
  */
45
45
  PlatUrl?: string;
46
46
  /**
47
- * 作者ID
47
+ * 该字段已废弃,作者ID
48
48
  */
49
49
  AuthorId?: string;
50
50
  /**
51
- * 作品ID
51
+ * 该字段已废弃,作品ID
52
52
  */
53
53
  WorksId?: number;
54
54
  /**
55
- * xxx
55
+ * 作品ID
56
56
  */
57
57
  WorkId?: number;
58
58
  /**
59
- * xxx
59
+ * 白名单列表,以\n分割
60
60
  */
61
61
  WhiteSites?: string;
62
62
  }
@@ -69,7 +69,7 @@ export interface CreateCRUserVerifyRequest {
69
69
  */
70
70
  UserName: string;
71
71
  /**
72
- * 用户身份证ID
72
+ * 用户身份证号
73
73
  */
74
74
  UserID: string;
75
75
  /**
@@ -77,11 +77,11 @@ export interface CreateCRUserVerifyRequest {
77
77
  */
78
78
  UserPhone: string;
79
79
  /**
80
- * 短信验证码
80
+ * 短信验证码,接口接入可以置空
81
81
  */
82
- VerificationCode: string;
82
+ VerificationCode?: string;
83
83
  /**
84
- * xxx
84
+ * 字段已废弃,认证类型
85
85
  */
86
86
  Type?: string;
87
87
  }
@@ -99,11 +99,11 @@ export interface CreateBPFalseTicketResponse {
99
99
  */
100
100
  export interface CreateCRRightFileRequest {
101
101
  /**
102
- * xxx
102
+ * 作品ID
103
103
  */
104
104
  WorkId: number;
105
105
  /**
106
- * xxx
106
+ * 权属文件列表
107
107
  */
108
108
  FileList: Array<File>;
109
109
  }
@@ -116,7 +116,7 @@ export interface CreateCRRightResponse {
116
116
  */
117
117
  TortId: number;
118
118
  /**
119
- * xxx
119
+ * 该字段已废弃
120
120
  */
121
121
  TortNum: string;
122
122
  /**
@@ -129,11 +129,11 @@ export interface CreateCRRightResponse {
129
129
  */
130
130
  export interface CreateCRWorkResponse {
131
131
  /**
132
- * 作品ID
132
+ * 作品ID,一个作品对应唯一的workid
133
133
  */
134
134
  WorkId: number;
135
135
  /**
136
- * x
136
+ * 存证ID,忽略该字段
137
137
  */
138
138
  EvidenceId: number;
139
139
  /**
@@ -146,7 +146,7 @@ export interface CreateCRWorkResponse {
146
146
  */
147
147
  export interface CreateCRRightRequest {
148
148
  /**
149
- * 已存证的作品ID
149
+ * 作品ID
150
150
  */
151
151
  WorkId: number;
152
152
  /**
@@ -166,55 +166,55 @@ export interface CreateCRRightRequest {
166
166
  */
167
167
  RightUrl?: string;
168
168
  /**
169
- * x
169
+ * 授权书下载地址
170
170
  */
171
171
  FileUrl?: string;
172
172
  /**
173
- * x
173
+ * 授权书生效日期
174
174
  */
175
175
  ValidStartDate?: string;
176
176
  /**
177
- * x
177
+ * 授权书截止日期
178
178
  */
179
179
  ValidEndDate?: string;
180
180
  /**
181
- * x
181
+ * 委托书下载地址
182
182
  */
183
183
  CommFileUrl?: string;
184
184
  /**
185
- * x
185
+ * 委托书生效日期
186
186
  */
187
187
  CommValidStartDate?: string;
188
188
  /**
189
- * x
189
+ * 委托书截止日期
190
190
  */
191
191
  CommValidEndDate?: string;
192
192
  /**
193
- * x
193
+ * 主页下载地址
194
194
  */
195
195
  HomeFileUrl?: string;
196
196
  /**
197
- * x
197
+ * 主页生效日期
198
198
  */
199
199
  HomeValidStartDate?: string;
200
200
  /**
201
- * x
201
+ * 主页截止日期
202
202
  */
203
203
  HomeValidEndDate?: string;
204
204
  /**
205
- * x
205
+ * 是否著作权人:0-否 1-是
206
206
  */
207
207
  IsProducer?: string;
208
208
  /**
209
- * x
209
+ * 存证证书下载地址
210
210
  */
211
211
  EvidenceFileUrl?: string;
212
212
  /**
213
- * x
213
+ * 存证证书生效日期
214
214
  */
215
215
  EvidenceValidStartDate?: string;
216
216
  /**
217
- * x
217
+ * 存证证书截止日期
218
218
  */
219
219
  EvidenceValidEndDate?: string;
220
220
  }
@@ -232,19 +232,19 @@ export interface CreateBPOfflineTicketResponse {
232
232
  */
233
233
  export interface CreateCRTortRequest {
234
234
  /**
235
- * xx
235
+ * 作品ID
236
236
  */
237
237
  WorkId: number;
238
238
  /**
239
- * xx
239
+ * 侵权网址
240
240
  */
241
241
  TortURL: string;
242
242
  /**
243
- * xx
243
+ * 侵权平台
244
244
  */
245
245
  TortPlat?: string;
246
246
  /**
247
- * xx
247
+ * 侵权标题
248
248
  */
249
249
  TortTitle?: string;
250
250
  }
@@ -253,19 +253,19 @@ export interface CreateCRTortRequest {
253
253
  */
254
254
  export interface UpdateCRWorkRequest {
255
255
  /**
256
- * xx
256
+ * 作品ID
257
257
  */
258
258
  WorkId: number;
259
259
  /**
260
- * xx
260
+ * 文件的扩展名,比如txt,docx
261
261
  */
262
262
  ContentType?: string;
263
263
  /**
264
- * xx
264
+ * 内容的base64编码
265
265
  */
266
266
  Content?: string;
267
267
  /**
268
- * xx
268
+ * 本次存证类型:0-不存证 1-存当前文件 2-存历史全量文件
269
269
  */
270
270
  CertType?: string;
271
271
  }
@@ -332,11 +332,11 @@ export interface Monitor {
332
332
  */
333
333
  WorkCategory: string;
334
334
  /**
335
- * xx
335
+ * 新增时间
336
336
  */
337
337
  InsertTime: string;
338
338
  /**
339
- * xx
339
+ * 监测状态说明
340
340
  */
341
341
  MonitorNote: string;
342
342
  }
@@ -345,19 +345,19 @@ export interface Monitor {
345
345
  */
346
346
  export interface ModifyCRObtainStatusRequest {
347
347
  /**
348
- * xxx
348
+ * 侵权ID
349
349
  */
350
350
  TortId: number;
351
351
  /**
352
- * xxx
352
+ * 取证类型:1-网页取证 2-过程取证
353
353
  */
354
354
  ObtainType: number;
355
355
  /**
356
- * xxx
356
+ * 过程取证的取证时长,单位分钟,范围0-120
357
357
  */
358
358
  ObtainDuration: number;
359
359
  /**
360
- * xxx
360
+ * 结果回调地址
361
361
  */
362
362
  ObtainUrl?: string;
363
363
  }
@@ -443,7 +443,7 @@ export interface ReportFakeURLInfo {
443
443
  */
444
444
  export interface DescribeCRWorkInfoRequest {
445
445
  /**
446
- * xxx
446
+ * 作品ID
447
447
  */
448
448
  WorkId: number;
449
449
  }
@@ -548,79 +548,79 @@ export interface MonitorTort {
548
548
  */
549
549
  Author: string;
550
550
  /**
551
- * xxx
551
+ * 发现时间
552
552
  */
553
553
  DetectTime: string;
554
554
  /**
555
- * 1
555
+ * 取证状态
556
556
  */
557
557
  ObtainStatus: number;
558
558
  /**
559
- * 1
559
+ * 维权状态
560
560
  */
561
561
  RightStatus: number;
562
562
  /**
563
- * 1
563
+ * 拦截状态
564
564
  */
565
565
  BlockStatus: number;
566
566
  /**
567
- * 1
567
+ * 侵权编号
568
568
  */
569
569
  TortNum: string;
570
570
  /**
571
- * 1
571
+ * 取证状态说明
572
572
  */
573
573
  ObtainNote: string;
574
574
  /**
575
- * 1
575
+ * 作品标题
576
576
  */
577
577
  WorkTitle: string;
578
578
  /**
579
- * 1
579
+ * 侵权站点
580
580
  */
581
581
  TortSite: string;
582
582
  /**
583
- * 1
583
+ * ICP备案信息
584
584
  */
585
585
  ICP: string;
586
586
  /**
587
- * 1
587
+ * 维权状态说明
588
588
  */
589
589
  RightNote: string;
590
590
  /**
591
- * 1
591
+ * 取证类型
592
592
  */
593
593
  ObtainType: number;
594
594
  /**
595
- * 1
595
+ * 拦截状态说明
596
596
  */
597
597
  BlockNote: string;
598
598
  /**
599
- * 1
599
+ * 作品ID
600
600
  */
601
601
  WorkId: number;
602
602
  /**
603
- * 1
603
+ * 作品名称
604
604
  */
605
605
  WorkName: string;
606
606
  /**
607
- * 1
607
+ * 授权书状态
608
608
  */
609
609
  AuthStatus: number;
610
610
  /**
611
- * 1
611
+ * 委托书状态
612
612
  */
613
613
  CommStatus: number;
614
614
  /**
615
- * 1
615
+ * 存证证书状态
616
616
  */
617
617
  EvidenceStatus: number;
618
618
  /**
619
- * 1
619
+ * 是否著作权人
620
620
  */
621
621
  IsProducer: number;
622
622
  /**
623
- * 1
623
+ * 是否海外网址
624
624
  */
625
625
  IsOverseas: number;
626
626
  }
@@ -693,11 +693,11 @@ export interface DescribeCRMonitorsResponse {
693
693
  */
694
694
  export interface CreateCRCompanyVerifyResponse {
695
695
  /**
696
- * 认证状态 0-认证成功 1-认证失败
696
+ * 认证状态:0-认证成功 1-认证失败
697
697
  */
698
698
  Status: number;
699
699
  /**
700
- * 认证结果返回
700
+ * 认证状态说明,包括认证失败的原因
701
701
  */
702
702
  Note: string;
703
703
  /**
@@ -756,11 +756,11 @@ export interface CreateBPProtectURLsRequest {
756
756
  */
757
757
  export interface UpdateCRWorkResponse {
758
758
  /**
759
- * xx
759
+ * 作品ID
760
760
  */
761
761
  WorkId: number;
762
762
  /**
763
- * xx
763
+ * 存证ID
764
764
  */
765
765
  EvidenceId: number;
766
766
  /**
@@ -790,11 +790,11 @@ export interface ModifyCRMonitorRequest {
790
790
  */
791
791
  WorkId: number;
792
792
  /**
793
- * 监测状态 1-开启监测 2-关闭监测
793
+ * 监测状态:1-开启监测 2-关闭监测
794
794
  */
795
795
  MonitorStatus: string;
796
796
  /**
797
- * 默认不停止,支持续期
797
+ * 监测截止时间
798
798
  */
799
799
  MonitorEnd?: string;
800
800
  }
@@ -803,7 +803,7 @@ export interface ModifyCRMonitorRequest {
803
803
  */
804
804
  export interface DescribeCRMonitorDetailResponse {
805
805
  /**
806
- * MonitorTort数组
806
+ * 侵权数组
807
807
  */
808
808
  Torts: Array<MonitorTort>;
809
809
  /**
@@ -811,7 +811,7 @@ export interface DescribeCRMonitorDetailResponse {
811
811
  */
812
812
  TotalCount: number;
813
813
  /**
814
- * x
814
+ * 监测状态
815
815
  */
816
816
  MonitorStatus: number;
817
817
  /**
@@ -840,23 +840,23 @@ export interface CreateCRWorkRequest {
840
840
  */
841
841
  WorkSign?: string;
842
842
  /**
843
- * 作品图片
843
+ * 字段已废弃,作品图片
844
844
  */
845
845
  WorkPic?: string;
846
846
  /**
847
- * 创作描述
847
+ * 作品描述
848
848
  */
849
849
  WorkDesc?: string;
850
850
  /**
851
- * 是否原创 0:否 1:是
851
+ * 是否原创:0-否 1-是
852
852
  */
853
853
  IsOriginal?: string;
854
854
  /**
855
- * 是否发布 0:未发布 1:已发布
855
+ * 是否发布:0-未发布 1-已发布
856
856
  */
857
857
  IsRelease?: string;
858
858
  /**
859
- * 著作权人ID
859
+ * 字段已废弃,著作权人ID
860
860
  */
861
861
  ProducerID?: number;
862
862
  /**
@@ -864,27 +864,27 @@ export interface CreateCRWorkRequest {
864
864
  */
865
865
  ProduceTime?: string;
866
866
  /**
867
- * 样品文件路径
867
+ * 字段已废弃
868
868
  */
869
869
  SampleContentURL?: string;
870
870
  /**
871
- * 样本下载Url
871
+ * 作品下载地址
872
872
  */
873
873
  SampleDownloadURL?: string;
874
874
  /**
875
- * 授予类型
875
+ * 作品在线地址
876
876
  */
877
- GrantType?: string;
877
+ SamplePublicURL?: string;
878
878
  /**
879
- * 作品发布Url
879
+ * 字段已废弃,授予类型
880
880
  */
881
- SamplePublicURL?: string;
881
+ GrantType?: string;
882
882
  /**
883
- * 是否启用监测 0:不启用 1:启用 默认为0
883
+ * 是否监测:0-不监测 1-监测
884
884
  */
885
885
  IsMonitor?: string;
886
886
  /**
887
- * 是否启用存证0:不存证 2:存证 默认为0
887
+ * 是否存证:0-不存证 2-存证 注意是2
888
888
  */
889
889
  IsCert?: string;
890
890
  /**
@@ -896,15 +896,15 @@ export interface CreateCRWorkRequest {
896
896
  */
897
897
  MonitorUrl?: string;
898
898
  /**
899
- * 创作性质(原创,改编,翻译,汇编,注释,整理,其他)
899
+ * 字段已废弃,创作性质
900
900
  */
901
901
  ProduceType?: string;
902
902
  /**
903
- * 白名单
903
+ * 白名单列表
904
904
  */
905
905
  WhiteLists?: Array<string>;
906
906
  /**
907
- * 作品ID
907
+ * 作品ID,忽略该字段
908
908
  */
909
909
  WorkId?: number;
910
910
  /**
@@ -912,11 +912,11 @@ export interface CreateCRWorkRequest {
912
912
  */
913
913
  ProducerName?: string;
914
914
  /**
915
- * 作者
915
+ * 作者,小说类型必填
916
916
  */
917
917
  Nickname?: string;
918
918
  /**
919
- * 授权书
919
+ * 授权书下载地址
920
920
  */
921
921
  Authorization?: string;
922
922
  /**
@@ -928,11 +928,11 @@ export interface CreateCRWorkRequest {
928
928
  */
929
929
  AuthorizationEndTime?: string;
930
930
  /**
931
- * 内容格式
931
+ * 内容格式,支持txt、doc等,表示Content的具体格式
932
932
  */
933
933
  ContentType?: string;
934
934
  /**
935
- * 文件内容
935
+ * 文件内容base64编码,该字段仅在无法提供下载链接时使用
936
936
  */
937
937
  Content?: string;
938
938
  /**
@@ -940,11 +940,11 @@ export interface CreateCRWorkRequest {
940
940
  */
941
941
  MonitorEndTime?: string;
942
942
  /**
943
- * 申请人ID
943
+ * 申请人ID,用于存证和取证
944
944
  */
945
945
  ApplierId?: string;
946
946
  /**
947
- * 申请人姓名
947
+ * 申请人姓名,用于存证和取证
948
948
  */
949
949
  ApplierName?: string;
950
950
  }
@@ -986,7 +986,7 @@ export interface DescribeCRMonitorDetailRequest {
986
986
  */
987
987
  PageNumber?: number;
988
988
  /**
989
- * x
989
+ * 过滤参数
990
990
  */
991
991
  Filters?: Array<Filter>;
992
992
  }
@@ -1003,7 +1003,7 @@ export interface CreateCRBlockResponse {
1003
1003
  */
1004
1004
  TortId: number;
1005
1005
  /**
1006
- * xxx
1006
+ * 该字段已废弃
1007
1007
  */
1008
1008
  TortNum: string;
1009
1009
  /**
@@ -1046,91 +1046,91 @@ export interface DescribeCRMonitorsRequest {
1046
1046
  */
1047
1047
  export interface DescribeCRWorkInfoResponse {
1048
1048
  /**
1049
- * x
1049
+ * 作品名称
1050
1050
  */
1051
1051
  WorkName: string;
1052
1052
  /**
1053
- * x
1053
+ * 监测状态
1054
1054
  */
1055
1055
  MonitorStatus: number;
1056
1056
  /**
1057
- * x
1057
+ * 授权文件状态
1058
1058
  */
1059
1059
  AuthStatus: number;
1060
1060
  /**
1061
- * x
1061
+ * 委托书状态
1062
1062
  */
1063
1063
  CommStatus: number;
1064
1064
  /**
1065
- * x
1065
+ * 是否著作权人
1066
1066
  */
1067
1067
  IsProducer: number;
1068
1068
  /**
1069
- * xxx
1069
+ * 存证证书状态
1070
1070
  */
1071
1071
  EvidenceStatus: number;
1072
1072
  /**
1073
- * xxx
1073
+ * 作品类型
1074
1074
  */
1075
1075
  WorkCategory: string;
1076
1076
  /**
1077
- * xxx
1077
+ * 是否原创
1078
1078
  */
1079
1079
  IsOriginal: string;
1080
1080
  /**
1081
- * xxx
1081
+ * 是否已发表
1082
1082
  */
1083
1083
  IsRelease: string;
1084
1084
  /**
1085
- * xxx
1085
+ * 著作权人姓名
1086
1086
  */
1087
1087
  ProducerName: string;
1088
1088
  /**
1089
- * xxx
1089
+ * 发表时间
1090
1090
  */
1091
1091
  ProduceTime: string;
1092
1092
  /**
1093
- * xxx
1093
+ * 白名单
1094
1094
  */
1095
1095
  WhiteLists: Array<string>;
1096
1096
  /**
1097
- * xxx
1097
+ * 作品描述
1098
1098
  */
1099
1099
  WorkDesc: string;
1100
1100
  /**
1101
- * xxx
1101
+ * 授权书
1102
1102
  */
1103
1103
  Authorization: string;
1104
1104
  /**
1105
- * xxx
1105
+ * 授权书生效日期
1106
1106
  */
1107
1107
  AuthorizationStartTime: string;
1108
1108
  /**
1109
- * xxx
1109
+ * 授权书截止日期
1110
1110
  */
1111
1111
  AuthorizationEndTime: string;
1112
1112
  /**
1113
- * xxx
1113
+ * 委托书
1114
1114
  */
1115
1115
  Commission: string;
1116
1116
  /**
1117
- * xxx
1117
+ * 委托书生效日期
1118
1118
  */
1119
1119
  CommissionStartTime: string;
1120
1120
  /**
1121
- * xxx
1121
+ * 委托书截止日期
1122
1122
  */
1123
1123
  CommissionEndTime: string;
1124
1124
  /**
1125
- * xxx
1125
+ * 存证证书
1126
1126
  */
1127
1127
  EvidenceUrl: string;
1128
1128
  /**
1129
- * xxx
1129
+ * 存证证书生效日期
1130
1130
  */
1131
1131
  EvidenceStartTime: string;
1132
1132
  /**
1133
- * xxx
1133
+ * 存证证书截止日期
1134
1134
  */
1135
1135
  EvidenceEndTime: string;
1136
1136
  /**
@@ -1143,7 +1143,7 @@ export interface DescribeCRWorkInfoResponse {
1143
1143
  */
1144
1144
  export interface CreateCRRightFileResponse {
1145
1145
  /**
1146
- * xxx
1146
+ * 权属文件Id,按提交顺序排序
1147
1147
  */
1148
1148
  FileIds: Array<number>;
1149
1149
  /**
@@ -1243,11 +1243,11 @@ export interface CreateBPOfflineTicketRequest {
1243
1243
  */
1244
1244
  export interface CreateCRUserVerifyResponse {
1245
1245
  /**
1246
- * 认证状态 0-认证成功 1-认证失败
1246
+ * 认证状态:0-认证成功 1-认证失败
1247
1247
  */
1248
1248
  Status: number;
1249
1249
  /**
1250
- * 认证结果返回
1250
+ * 认证状态说明,包括认证失败原因等
1251
1251
  */
1252
1252
  Note: string;
1253
1253
  /**
@@ -1360,7 +1360,7 @@ export interface ModifyBPOfflineAttachmentResponse {
1360
1360
  */
1361
1361
  export interface CreateCRBlockRequest {
1362
1362
  /**
1363
- * 已存证的作品ID
1363
+ * 作品ID
1364
1364
  */
1365
1365
  WorkId: number;
1366
1366
  /**
@@ -1380,47 +1380,47 @@ export interface CreateCRBlockRequest {
1380
1380
  */
1381
1381
  BlockUrl?: string;
1382
1382
  /**
1383
- * x
1383
+ * 授权书下载地址
1384
1384
  */
1385
1385
  FileUrl?: string;
1386
1386
  /**
1387
- * x
1387
+ * 授权书生效日期
1388
1388
  */
1389
1389
  ValidStartDate?: string;
1390
1390
  /**
1391
- * x
1391
+ * 授权书截止日期
1392
1392
  */
1393
1393
  ValidEndDate?: string;
1394
1394
  /**
1395
- * xx
1395
+ * 侵权截图
1396
1396
  */
1397
1397
  TortPic?: string;
1398
1398
  /**
1399
- * x
1399
+ * 委托书下载地址
1400
1400
  */
1401
1401
  CommFileUrl?: string;
1402
1402
  /**
1403
- * x
1403
+ * 委托书生效日期
1404
1404
  */
1405
1405
  CommValidStartDate?: string;
1406
1406
  /**
1407
- * x
1407
+ * 委托书截止日期
1408
1408
  */
1409
1409
  CommValidEndDate?: string;
1410
1410
  /**
1411
- * x
1411
+ * 是否著作权人:0-否 1-是
1412
1412
  */
1413
1413
  IsProducer?: string;
1414
1414
  /**
1415
- * x
1415
+ * 存证证书下载地址
1416
1416
  */
1417
1417
  EvidenceFileUrl?: string;
1418
1418
  /**
1419
- * x
1419
+ * 存证证书生效日期
1420
1420
  */
1421
1421
  EvidenceValidStartDate?: string;
1422
1422
  /**
1423
- * x
1423
+ * 存证证书截止日期
1424
1424
  */
1425
1425
  EvidenceValidEndDate?: string;
1426
1426
  }
@@ -1438,31 +1438,31 @@ export interface CreateBPFakeURLResponse {
1438
1438
  */
1439
1439
  export interface CreateCRTortResponse {
1440
1440
  /**
1441
- * xx
1441
+ * 作品ID
1442
1442
  */
1443
1443
  WorkId: number;
1444
1444
  /**
1445
- * xx
1445
+ * 侵权ID
1446
1446
  */
1447
1447
  TortId: number;
1448
1448
  /**
1449
- * xx
1449
+ * 侵权标题
1450
1450
  */
1451
1451
  TortTitle: string;
1452
1452
  /**
1453
- * xx
1453
+ * 侵权平台
1454
1454
  */
1455
1455
  TortPlat: string;
1456
1456
  /**
1457
- * xx
1457
+ * 侵权网址
1458
1458
  */
1459
1459
  TortURL: string;
1460
1460
  /**
1461
- * xx
1461
+ * 侵权域名
1462
1462
  */
1463
1463
  TortDomain: string;
1464
1464
  /**
1465
- * xx
1465
+ * 侵权主体
1466
1466
  */
1467
1467
  TortBodyName: string;
1468
1468
  /**
@@ -1539,10 +1539,6 @@ export interface CreateCRCompanyVerifyRequest {
1539
1539
  * 企业名称
1540
1540
  */
1541
1541
  CompanyName: string;
1542
- /**
1543
- * 企业认证号码类型 1:社会信用代码 2:组织机构代码 3:企业工商注册码 4:其他 默认为1
1544
- */
1545
- CompanyIDType?: string;
1546
1542
  /**
1547
1543
  * 企业证件号码
1548
1544
  */
@@ -1552,19 +1548,23 @@ export interface CreateCRCompanyVerifyRequest {
1552
1548
  */
1553
1549
  CompanyLegalName?: string;
1554
1550
  /**
1555
- * 管理员名称
1551
+ * 联系人姓名
1556
1552
  */
1557
1553
  ManagerName?: string;
1558
1554
  /**
1559
- * 管理员手机号
1555
+ * 联系人手机号
1560
1556
  */
1561
1557
  ManagerPhone?: string;
1562
1558
  /**
1563
- * 手机验证码
1559
+ * 手机验证码,接口接入可以置空
1564
1560
  */
1565
1561
  VerificationCode?: string;
1566
1562
  /**
1567
- * xxx
1563
+ * 字段已废弃,企业认证号码类型 1:社会信用代码 2:组织机构代码 3:企业工商注册码 4:其他 默认为1
1564
+ */
1565
+ CompanyIDType?: string;
1566
+ /**
1567
+ * 字段已废弃,认证类型
1568
1568
  */
1569
1569
  Type?: string;
1570
1570
  }