@antchain/realperson 1.15.33 → 1.16.0

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/dist/client.d.ts CHANGED
@@ -1389,6 +1389,166 @@ export declare class QueryBankLivenessResponse extends $tea.Model {
1389
1389
  [key: string]: any;
1390
1390
  });
1391
1391
  }
1392
+ export declare class CreateConsoleDomainRequest extends $tea.Model {
1393
+ authToken?: string;
1394
+ productInstanceId?: string;
1395
+ sceneId: string;
1396
+ bizId: string;
1397
+ miniProgramName: string;
1398
+ platform: string;
1399
+ checkFileName: string;
1400
+ checkFileBody: string;
1401
+ static names(): {
1402
+ [key: string]: string;
1403
+ };
1404
+ static types(): {
1405
+ [key: string]: any;
1406
+ };
1407
+ constructor(map?: {
1408
+ [key: string]: any;
1409
+ });
1410
+ }
1411
+ export declare class CreateConsoleDomainResponse extends $tea.Model {
1412
+ reqMsgId?: string;
1413
+ resultCode?: string;
1414
+ resultMsg?: string;
1415
+ domain?: string;
1416
+ static names(): {
1417
+ [key: string]: string;
1418
+ };
1419
+ static types(): {
1420
+ [key: string]: any;
1421
+ };
1422
+ constructor(map?: {
1423
+ [key: string]: any;
1424
+ });
1425
+ }
1426
+ export declare class DeleteConsoleDomainRequest extends $tea.Model {
1427
+ authToken?: string;
1428
+ productInstanceId?: string;
1429
+ sceneId: string;
1430
+ static names(): {
1431
+ [key: string]: string;
1432
+ };
1433
+ static types(): {
1434
+ [key: string]: any;
1435
+ };
1436
+ constructor(map?: {
1437
+ [key: string]: any;
1438
+ });
1439
+ }
1440
+ export declare class DeleteConsoleDomainResponse extends $tea.Model {
1441
+ reqMsgId?: string;
1442
+ resultCode?: string;
1443
+ resultMsg?: string;
1444
+ static names(): {
1445
+ [key: string]: string;
1446
+ };
1447
+ static types(): {
1448
+ [key: string]: any;
1449
+ };
1450
+ constructor(map?: {
1451
+ [key: string]: any;
1452
+ });
1453
+ }
1454
+ export declare class InitCarrierRepairmobileRequest extends $tea.Model {
1455
+ authToken?: string;
1456
+ productInstanceId?: string;
1457
+ outerOrderNo: string;
1458
+ processId: string;
1459
+ carrier: string;
1460
+ encryptType?: string;
1461
+ certNo: string;
1462
+ mobile?: string;
1463
+ static names(): {
1464
+ [key: string]: string;
1465
+ };
1466
+ static types(): {
1467
+ [key: string]: any;
1468
+ };
1469
+ constructor(map?: {
1470
+ [key: string]: any;
1471
+ });
1472
+ }
1473
+ export declare class InitCarrierRepairmobileResponse extends $tea.Model {
1474
+ reqMsgId?: string;
1475
+ resultCode?: string;
1476
+ resultMsg?: string;
1477
+ processId?: string;
1478
+ static names(): {
1479
+ [key: string]: string;
1480
+ };
1481
+ static types(): {
1482
+ [key: string]: any;
1483
+ };
1484
+ constructor(map?: {
1485
+ [key: string]: any;
1486
+ });
1487
+ }
1488
+ export declare class QueryCarrierRepairmobileRequest extends $tea.Model {
1489
+ authToken?: string;
1490
+ productInstanceId?: string;
1491
+ outerOrderNo: string;
1492
+ processId: string;
1493
+ static names(): {
1494
+ [key: string]: string;
1495
+ };
1496
+ static types(): {
1497
+ [key: string]: any;
1498
+ };
1499
+ constructor(map?: {
1500
+ [key: string]: any;
1501
+ });
1502
+ }
1503
+ export declare class QueryCarrierRepairmobileResponse extends $tea.Model {
1504
+ reqMsgId?: string;
1505
+ resultCode?: string;
1506
+ resultMsg?: string;
1507
+ count?: string;
1508
+ static names(): {
1509
+ [key: string]: string;
1510
+ };
1511
+ static types(): {
1512
+ [key: string]: any;
1513
+ };
1514
+ constructor(map?: {
1515
+ [key: string]: any;
1516
+ });
1517
+ }
1518
+ export declare class BindCarrierRepairmobileRequest extends $tea.Model {
1519
+ authToken?: string;
1520
+ productInstanceId?: string;
1521
+ outerOrderNo: string;
1522
+ processId: string;
1523
+ certNo: string;
1524
+ mobileNum: string;
1525
+ mobileA: string;
1526
+ mobileType?: string;
1527
+ static names(): {
1528
+ [key: string]: string;
1529
+ };
1530
+ static types(): {
1531
+ [key: string]: any;
1532
+ };
1533
+ constructor(map?: {
1534
+ [key: string]: any;
1535
+ });
1536
+ }
1537
+ export declare class BindCarrierRepairmobileResponse extends $tea.Model {
1538
+ reqMsgId?: string;
1539
+ resultCode?: string;
1540
+ resultMsg?: string;
1541
+ mobileX?: string;
1542
+ static names(): {
1543
+ [key: string]: string;
1544
+ };
1545
+ static types(): {
1546
+ [key: string]: any;
1547
+ };
1548
+ constructor(map?: {
1549
+ [key: string]: any;
1550
+ });
1551
+ }
1392
1552
  export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
1393
1553
  authToken?: string;
1394
1554
  apiCode: string;
@@ -1899,6 +2059,66 @@ export default class Client {
1899
2059
  queryBankLivenessEx(request: QueryBankLivenessRequest, headers: {
1900
2060
  [key: string]: string;
1901
2061
  }, runtime: $Util.RuntimeOptions): Promise<QueryBankLivenessResponse>;
2062
+ /**
2063
+ * Description: 用于阿里云渠道小程序域名的绑定
2064
+ * Summary: 新增场景与域名映射
2065
+ */
2066
+ createConsoleDomain(request: CreateConsoleDomainRequest): Promise<CreateConsoleDomainResponse>;
2067
+ /**
2068
+ * Description: 用于阿里云渠道小程序域名的绑定
2069
+ * Summary: 新增场景与域名映射
2070
+ */
2071
+ createConsoleDomainEx(request: CreateConsoleDomainRequest, headers: {
2072
+ [key: string]: string;
2073
+ }, runtime: $Util.RuntimeOptions): Promise<CreateConsoleDomainResponse>;
2074
+ /**
2075
+ * Description: 阿里云控制台删除场景与域名映射
2076
+ * Summary: 删除场景与域名映射
2077
+ */
2078
+ deleteConsoleDomain(request: DeleteConsoleDomainRequest): Promise<DeleteConsoleDomainResponse>;
2079
+ /**
2080
+ * Description: 阿里云控制台删除场景与域名映射
2081
+ * Summary: 删除场景与域名映射
2082
+ */
2083
+ deleteConsoleDomainEx(request: DeleteConsoleDomainRequest, headers: {
2084
+ [key: string]: string;
2085
+ }, runtime: $Util.RuntimeOptions): Promise<DeleteConsoleDomainResponse>;
2086
+ /**
2087
+ * Description: 失联修复初始化
2088
+ * Summary: 失联修复初始化
2089
+ */
2090
+ initCarrierRepairmobile(request: InitCarrierRepairmobileRequest): Promise<InitCarrierRepairmobileResponse>;
2091
+ /**
2092
+ * Description: 失联修复初始化
2093
+ * Summary: 失联修复初始化
2094
+ */
2095
+ initCarrierRepairmobileEx(request: InitCarrierRepairmobileRequest, headers: {
2096
+ [key: string]: string;
2097
+ }, runtime: $Util.RuntimeOptions): Promise<InitCarrierRepairmobileResponse>;
2098
+ /**
2099
+ * Description: 失联修复查询修复结果
2100
+ * Summary: 失联修复查询修复结果
2101
+ */
2102
+ queryCarrierRepairmobile(request: QueryCarrierRepairmobileRequest): Promise<QueryCarrierRepairmobileResponse>;
2103
+ /**
2104
+ * Description: 失联修复查询修复结果
2105
+ * Summary: 失联修复查询修复结果
2106
+ */
2107
+ queryCarrierRepairmobileEx(request: QueryCarrierRepairmobileRequest, headers: {
2108
+ [key: string]: string;
2109
+ }, runtime: $Util.RuntimeOptions): Promise<QueryCarrierRepairmobileResponse>;
2110
+ /**
2111
+ * Description: 失联修复小号绑定
2112
+ * Summary: 失联修复小号绑定
2113
+ */
2114
+ bindCarrierRepairmobile(request: BindCarrierRepairmobileRequest): Promise<BindCarrierRepairmobileResponse>;
2115
+ /**
2116
+ * Description: 失联修复小号绑定
2117
+ * Summary: 失联修复小号绑定
2118
+ */
2119
+ bindCarrierRepairmobileEx(request: BindCarrierRepairmobileRequest, headers: {
2120
+ [key: string]: string;
2121
+ }, runtime: $Util.RuntimeOptions): Promise<BindCarrierRepairmobileResponse>;
1902
2122
  /**
1903
2123
  * Description: 创建HTTP PUT提交的文件上传
1904
2124
  * Summary: 文件上传创建
package/dist/client.js CHANGED
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
22
22
  return (mod && mod.__esModule) ? mod : { "default": mod };
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.QueryBankLivenessResponse = exports.QueryBankLivenessRequest = exports.ExecFacevrfServermodeResponse = exports.ExecFacevrfServermodeRequest = exports.QuerySocialriskTobriskResponse = exports.QuerySocialriskTobriskRequest = exports.QuerySocialriskBriefResponse = exports.QuerySocialriskBriefRequest = exports.QueryCarrierNetstatusResponse = exports.QueryCarrierNetstatusRequest = exports.QuerySocialriskDetailResponse = exports.QuerySocialriskDetailRequest = exports.QueryNfcServerResponse = exports.QueryNfcServerRequest = exports.CreateNfcServerResponse = exports.CreateNfcServerRequest = exports.CheckCarrierTwometaResponse = exports.CheckCarrierTwometaRequest = exports.CheckBankcardTwometaResponse = exports.CheckBankcardTwometaRequest = exports.QueryDemoInfoResponse = exports.QueryDemoInfoRequest = exports.QueryEducationInfoResponse = exports.QueryEducationInfoRequest = exports.QueryTscenterDeviceResponse = exports.QueryTscenterDeviceRequest = exports.QueryThreemetaPhonereuseResponse = exports.QueryThreemetaPhonereuseRequest = exports.QueryDeepsecTsbmrqResponse = exports.QueryDeepsecTsbmrqRequest = exports.QueryDeepsecRiskResponse = exports.QueryDeepsecRiskRequest = exports.CheckThreemetaBankcardResponse = exports.CheckThreemetaBankcardRequest = exports.RecognizeDocIndividualcardResponse = exports.RecognizeDocIndividualcardRequest = exports.VerifyFacevrfZimResponse = exports.VerifyFacevrfZimRequest = exports.InitFacevrfZimResponse = exports.InitFacevrfZimRequest = exports.QueryThreemetaOnlinetimeResponse = exports.QueryThreemetaOnlinetimeRequest = exports.CheckTwometaHashResponse = exports.CheckTwometaHashRequest = exports.CheckAnticheatPersonalResponse = exports.CheckAnticheatPersonalRequest = exports.DetailFacevrfServerResponse = exports.DetailFacevrfServerRequest = exports.QueryMobileRiskResponse = exports.QueryMobileRiskRequest = exports.CheckRouteTwometaResponse = exports.CheckRouteTwometaRequest = exports.VerifyVoiceprintServermodeResponse = exports.VerifyVoiceprintServermodeRequest = exports.CreateVoiceprintServermodeResponse = exports.CreateVoiceprintServermodeRequest = exports.CheckRouteThreemetaResponse = exports.CheckRouteThreemetaRequest = exports.CheckIndividualidFourmetaResponse = exports.CheckIndividualidFourmetaRequest = exports.CheckIndividualidThreemetaResponse = exports.CheckIndividualidThreemetaRequest = exports.CheckIndividualidTwometaResponse = exports.CheckIndividualidTwometaRequest = exports.GetFacevrfEvidenceResponse = exports.GetFacevrfEvidenceRequest = exports.ExecFacevrfServerResponse = exports.ExecFacevrfServerRequest = exports.CreateFacevrfServerResponse = exports.CreateFacevrfServerRequest = exports.QueryFacevrfServerResponse = exports.QueryFacevrfServerRequest = exports.XNameValuePair = exports.Audio = exports.AudioMeta = exports.Config = void 0;
25
+ exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.BindCarrierRepairmobileResponse = exports.BindCarrierRepairmobileRequest = exports.QueryCarrierRepairmobileResponse = exports.QueryCarrierRepairmobileRequest = exports.InitCarrierRepairmobileResponse = exports.InitCarrierRepairmobileRequest = exports.DeleteConsoleDomainResponse = exports.DeleteConsoleDomainRequest = exports.CreateConsoleDomainResponse = exports.CreateConsoleDomainRequest = exports.QueryBankLivenessResponse = exports.QueryBankLivenessRequest = exports.ExecFacevrfServermodeResponse = exports.ExecFacevrfServermodeRequest = exports.QuerySocialriskTobriskResponse = exports.QuerySocialriskTobriskRequest = exports.QuerySocialriskBriefResponse = exports.QuerySocialriskBriefRequest = exports.QueryCarrierNetstatusResponse = exports.QueryCarrierNetstatusRequest = exports.QuerySocialriskDetailResponse = exports.QuerySocialriskDetailRequest = exports.QueryNfcServerResponse = exports.QueryNfcServerRequest = exports.CreateNfcServerResponse = exports.CreateNfcServerRequest = exports.CheckCarrierTwometaResponse = exports.CheckCarrierTwometaRequest = exports.CheckBankcardTwometaResponse = exports.CheckBankcardTwometaRequest = exports.QueryDemoInfoResponse = exports.QueryDemoInfoRequest = exports.QueryEducationInfoResponse = exports.QueryEducationInfoRequest = exports.QueryTscenterDeviceResponse = exports.QueryTscenterDeviceRequest = exports.QueryThreemetaPhonereuseResponse = exports.QueryThreemetaPhonereuseRequest = exports.QueryDeepsecTsbmrqResponse = exports.QueryDeepsecTsbmrqRequest = exports.QueryDeepsecRiskResponse = exports.QueryDeepsecRiskRequest = exports.CheckThreemetaBankcardResponse = exports.CheckThreemetaBankcardRequest = exports.RecognizeDocIndividualcardResponse = exports.RecognizeDocIndividualcardRequest = exports.VerifyFacevrfZimResponse = exports.VerifyFacevrfZimRequest = exports.InitFacevrfZimResponse = exports.InitFacevrfZimRequest = exports.QueryThreemetaOnlinetimeResponse = exports.QueryThreemetaOnlinetimeRequest = exports.CheckTwometaHashResponse = exports.CheckTwometaHashRequest = exports.CheckAnticheatPersonalResponse = exports.CheckAnticheatPersonalRequest = exports.DetailFacevrfServerResponse = exports.DetailFacevrfServerRequest = exports.QueryMobileRiskResponse = exports.QueryMobileRiskRequest = exports.CheckRouteTwometaResponse = exports.CheckRouteTwometaRequest = exports.VerifyVoiceprintServermodeResponse = exports.VerifyVoiceprintServermodeRequest = exports.CreateVoiceprintServermodeResponse = exports.CreateVoiceprintServermodeRequest = exports.CheckRouteThreemetaResponse = exports.CheckRouteThreemetaRequest = exports.CheckIndividualidFourmetaResponse = exports.CheckIndividualidFourmetaRequest = exports.CheckIndividualidThreemetaResponse = exports.CheckIndividualidThreemetaRequest = exports.CheckIndividualidTwometaResponse = exports.CheckIndividualidTwometaRequest = exports.GetFacevrfEvidenceResponse = exports.GetFacevrfEvidenceRequest = exports.ExecFacevrfServerResponse = exports.ExecFacevrfServerRequest = exports.CreateFacevrfServerResponse = exports.CreateFacevrfServerRequest = exports.QueryFacevrfServerResponse = exports.QueryFacevrfServerRequest = exports.XNameValuePair = exports.Audio = exports.AudioMeta = exports.Config = void 0;
26
26
  // This file is auto-generated, don't edit it
27
27
  const alipay_util_1 = __importDefault(require("@antchain/alipay-util"));
28
28
  const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
@@ -2194,6 +2194,246 @@ class QueryBankLivenessResponse extends $tea.Model {
2194
2194
  }
2195
2195
  }
2196
2196
  exports.QueryBankLivenessResponse = QueryBankLivenessResponse;
2197
+ class CreateConsoleDomainRequest extends $tea.Model {
2198
+ constructor(map) {
2199
+ super(map);
2200
+ }
2201
+ static names() {
2202
+ return {
2203
+ authToken: 'auth_token',
2204
+ productInstanceId: 'product_instance_id',
2205
+ sceneId: 'scene_id',
2206
+ bizId: 'biz_id',
2207
+ miniProgramName: 'mini_program_name',
2208
+ platform: 'platform',
2209
+ checkFileName: 'check_file_name',
2210
+ checkFileBody: 'check_file_body',
2211
+ };
2212
+ }
2213
+ static types() {
2214
+ return {
2215
+ authToken: 'string',
2216
+ productInstanceId: 'string',
2217
+ sceneId: 'string',
2218
+ bizId: 'string',
2219
+ miniProgramName: 'string',
2220
+ platform: 'string',
2221
+ checkFileName: 'string',
2222
+ checkFileBody: 'string',
2223
+ };
2224
+ }
2225
+ }
2226
+ exports.CreateConsoleDomainRequest = CreateConsoleDomainRequest;
2227
+ class CreateConsoleDomainResponse extends $tea.Model {
2228
+ constructor(map) {
2229
+ super(map);
2230
+ }
2231
+ static names() {
2232
+ return {
2233
+ reqMsgId: 'req_msg_id',
2234
+ resultCode: 'result_code',
2235
+ resultMsg: 'result_msg',
2236
+ domain: 'domain',
2237
+ };
2238
+ }
2239
+ static types() {
2240
+ return {
2241
+ reqMsgId: 'string',
2242
+ resultCode: 'string',
2243
+ resultMsg: 'string',
2244
+ domain: 'string',
2245
+ };
2246
+ }
2247
+ }
2248
+ exports.CreateConsoleDomainResponse = CreateConsoleDomainResponse;
2249
+ class DeleteConsoleDomainRequest extends $tea.Model {
2250
+ constructor(map) {
2251
+ super(map);
2252
+ }
2253
+ static names() {
2254
+ return {
2255
+ authToken: 'auth_token',
2256
+ productInstanceId: 'product_instance_id',
2257
+ sceneId: 'scene_id',
2258
+ };
2259
+ }
2260
+ static types() {
2261
+ return {
2262
+ authToken: 'string',
2263
+ productInstanceId: 'string',
2264
+ sceneId: 'string',
2265
+ };
2266
+ }
2267
+ }
2268
+ exports.DeleteConsoleDomainRequest = DeleteConsoleDomainRequest;
2269
+ class DeleteConsoleDomainResponse extends $tea.Model {
2270
+ constructor(map) {
2271
+ super(map);
2272
+ }
2273
+ static names() {
2274
+ return {
2275
+ reqMsgId: 'req_msg_id',
2276
+ resultCode: 'result_code',
2277
+ resultMsg: 'result_msg',
2278
+ };
2279
+ }
2280
+ static types() {
2281
+ return {
2282
+ reqMsgId: 'string',
2283
+ resultCode: 'string',
2284
+ resultMsg: 'string',
2285
+ };
2286
+ }
2287
+ }
2288
+ exports.DeleteConsoleDomainResponse = DeleteConsoleDomainResponse;
2289
+ class InitCarrierRepairmobileRequest extends $tea.Model {
2290
+ constructor(map) {
2291
+ super(map);
2292
+ }
2293
+ static names() {
2294
+ return {
2295
+ authToken: 'auth_token',
2296
+ productInstanceId: 'product_instance_id',
2297
+ outerOrderNo: 'outer_order_no',
2298
+ processId: 'process_id',
2299
+ carrier: 'carrier',
2300
+ encryptType: 'encrypt_type',
2301
+ certNo: 'cert_no',
2302
+ mobile: 'mobile',
2303
+ };
2304
+ }
2305
+ static types() {
2306
+ return {
2307
+ authToken: 'string',
2308
+ productInstanceId: 'string',
2309
+ outerOrderNo: 'string',
2310
+ processId: 'string',
2311
+ carrier: 'string',
2312
+ encryptType: 'string',
2313
+ certNo: 'string',
2314
+ mobile: 'string',
2315
+ };
2316
+ }
2317
+ }
2318
+ exports.InitCarrierRepairmobileRequest = InitCarrierRepairmobileRequest;
2319
+ class InitCarrierRepairmobileResponse extends $tea.Model {
2320
+ constructor(map) {
2321
+ super(map);
2322
+ }
2323
+ static names() {
2324
+ return {
2325
+ reqMsgId: 'req_msg_id',
2326
+ resultCode: 'result_code',
2327
+ resultMsg: 'result_msg',
2328
+ processId: 'process_id',
2329
+ };
2330
+ }
2331
+ static types() {
2332
+ return {
2333
+ reqMsgId: 'string',
2334
+ resultCode: 'string',
2335
+ resultMsg: 'string',
2336
+ processId: 'string',
2337
+ };
2338
+ }
2339
+ }
2340
+ exports.InitCarrierRepairmobileResponse = InitCarrierRepairmobileResponse;
2341
+ class QueryCarrierRepairmobileRequest extends $tea.Model {
2342
+ constructor(map) {
2343
+ super(map);
2344
+ }
2345
+ static names() {
2346
+ return {
2347
+ authToken: 'auth_token',
2348
+ productInstanceId: 'product_instance_id',
2349
+ outerOrderNo: 'outer_order_no',
2350
+ processId: 'process_id',
2351
+ };
2352
+ }
2353
+ static types() {
2354
+ return {
2355
+ authToken: 'string',
2356
+ productInstanceId: 'string',
2357
+ outerOrderNo: 'string',
2358
+ processId: 'string',
2359
+ };
2360
+ }
2361
+ }
2362
+ exports.QueryCarrierRepairmobileRequest = QueryCarrierRepairmobileRequest;
2363
+ class QueryCarrierRepairmobileResponse extends $tea.Model {
2364
+ constructor(map) {
2365
+ super(map);
2366
+ }
2367
+ static names() {
2368
+ return {
2369
+ reqMsgId: 'req_msg_id',
2370
+ resultCode: 'result_code',
2371
+ resultMsg: 'result_msg',
2372
+ count: 'count',
2373
+ };
2374
+ }
2375
+ static types() {
2376
+ return {
2377
+ reqMsgId: 'string',
2378
+ resultCode: 'string',
2379
+ resultMsg: 'string',
2380
+ count: 'string',
2381
+ };
2382
+ }
2383
+ }
2384
+ exports.QueryCarrierRepairmobileResponse = QueryCarrierRepairmobileResponse;
2385
+ class BindCarrierRepairmobileRequest extends $tea.Model {
2386
+ constructor(map) {
2387
+ super(map);
2388
+ }
2389
+ static names() {
2390
+ return {
2391
+ authToken: 'auth_token',
2392
+ productInstanceId: 'product_instance_id',
2393
+ outerOrderNo: 'outer_order_no',
2394
+ processId: 'process_id',
2395
+ certNo: 'cert_no',
2396
+ mobileNum: 'mobile_num',
2397
+ mobileA: 'mobile_a',
2398
+ mobileType: 'mobile_type',
2399
+ };
2400
+ }
2401
+ static types() {
2402
+ return {
2403
+ authToken: 'string',
2404
+ productInstanceId: 'string',
2405
+ outerOrderNo: 'string',
2406
+ processId: 'string',
2407
+ certNo: 'string',
2408
+ mobileNum: 'string',
2409
+ mobileA: 'string',
2410
+ mobileType: 'string',
2411
+ };
2412
+ }
2413
+ }
2414
+ exports.BindCarrierRepairmobileRequest = BindCarrierRepairmobileRequest;
2415
+ class BindCarrierRepairmobileResponse extends $tea.Model {
2416
+ constructor(map) {
2417
+ super(map);
2418
+ }
2419
+ static names() {
2420
+ return {
2421
+ reqMsgId: 'req_msg_id',
2422
+ resultCode: 'result_code',
2423
+ resultMsg: 'result_msg',
2424
+ mobileX: 'mobile_x',
2425
+ };
2426
+ }
2427
+ static types() {
2428
+ return {
2429
+ reqMsgId: 'string',
2430
+ resultCode: 'string',
2431
+ resultMsg: 'string',
2432
+ mobileX: 'string',
2433
+ };
2434
+ }
2435
+ }
2436
+ exports.BindCarrierRepairmobileResponse = BindCarrierRepairmobileResponse;
2197
2437
  class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
2198
2438
  constructor(map) {
2199
2439
  super(map);
@@ -2338,7 +2578,7 @@ class Client {
2338
2578
  req_msg_id: alipay_util_1.default.getNonce(),
2339
2579
  access_key: this._accessKeyId,
2340
2580
  base_sdk_version: "TeaSDK-2.0",
2341
- sdk_version: "1.15.33",
2581
+ sdk_version: "1.16.0",
2342
2582
  _prod_code: "REALPERSON",
2343
2583
  _prod_channel: "undefined",
2344
2584
  };
@@ -3027,6 +3267,91 @@ class Client {
3027
3267
  tea_util_1.default.validateModel(request);
3028
3268
  return $tea.cast(await this.doRequest("1.0", "di.realperson.bank.liveness.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBankLivenessResponse({}));
3029
3269
  }
3270
+ /**
3271
+ * Description: 用于阿里云渠道小程序域名的绑定
3272
+ * Summary: 新增场景与域名映射
3273
+ */
3274
+ async createConsoleDomain(request) {
3275
+ let runtime = new $Util.RuntimeOptions({});
3276
+ let headers = {};
3277
+ return await this.createConsoleDomainEx(request, headers, runtime);
3278
+ }
3279
+ /**
3280
+ * Description: 用于阿里云渠道小程序域名的绑定
3281
+ * Summary: 新增场景与域名映射
3282
+ */
3283
+ async createConsoleDomainEx(request, headers, runtime) {
3284
+ tea_util_1.default.validateModel(request);
3285
+ return $tea.cast(await this.doRequest("1.0", "di.realperson.console.domain.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateConsoleDomainResponse({}));
3286
+ }
3287
+ /**
3288
+ * Description: 阿里云控制台删除场景与域名映射
3289
+ * Summary: 删除场景与域名映射
3290
+ */
3291
+ async deleteConsoleDomain(request) {
3292
+ let runtime = new $Util.RuntimeOptions({});
3293
+ let headers = {};
3294
+ return await this.deleteConsoleDomainEx(request, headers, runtime);
3295
+ }
3296
+ /**
3297
+ * Description: 阿里云控制台删除场景与域名映射
3298
+ * Summary: 删除场景与域名映射
3299
+ */
3300
+ async deleteConsoleDomainEx(request, headers, runtime) {
3301
+ tea_util_1.default.validateModel(request);
3302
+ return $tea.cast(await this.doRequest("1.0", "di.realperson.console.domain.delete", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DeleteConsoleDomainResponse({}));
3303
+ }
3304
+ /**
3305
+ * Description: 失联修复初始化
3306
+ * Summary: 失联修复初始化
3307
+ */
3308
+ async initCarrierRepairmobile(request) {
3309
+ let runtime = new $Util.RuntimeOptions({});
3310
+ let headers = {};
3311
+ return await this.initCarrierRepairmobileEx(request, headers, runtime);
3312
+ }
3313
+ /**
3314
+ * Description: 失联修复初始化
3315
+ * Summary: 失联修复初始化
3316
+ */
3317
+ async initCarrierRepairmobileEx(request, headers, runtime) {
3318
+ tea_util_1.default.validateModel(request);
3319
+ return $tea.cast(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.init", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InitCarrierRepairmobileResponse({}));
3320
+ }
3321
+ /**
3322
+ * Description: 失联修复查询修复结果
3323
+ * Summary: 失联修复查询修复结果
3324
+ */
3325
+ async queryCarrierRepairmobile(request) {
3326
+ let runtime = new $Util.RuntimeOptions({});
3327
+ let headers = {};
3328
+ return await this.queryCarrierRepairmobileEx(request, headers, runtime);
3329
+ }
3330
+ /**
3331
+ * Description: 失联修复查询修复结果
3332
+ * Summary: 失联修复查询修复结果
3333
+ */
3334
+ async queryCarrierRepairmobileEx(request, headers, runtime) {
3335
+ tea_util_1.default.validateModel(request);
3336
+ return $tea.cast(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarrierRepairmobileResponse({}));
3337
+ }
3338
+ /**
3339
+ * Description: 失联修复小号绑定
3340
+ * Summary: 失联修复小号绑定
3341
+ */
3342
+ async bindCarrierRepairmobile(request) {
3343
+ let runtime = new $Util.RuntimeOptions({});
3344
+ let headers = {};
3345
+ return await this.bindCarrierRepairmobileEx(request, headers, runtime);
3346
+ }
3347
+ /**
3348
+ * Description: 失联修复小号绑定
3349
+ * Summary: 失联修复小号绑定
3350
+ */
3351
+ async bindCarrierRepairmobileEx(request, headers, runtime) {
3352
+ tea_util_1.default.validateModel(request);
3353
+ return $tea.cast(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.bind", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BindCarrierRepairmobileResponse({}));
3354
+ }
3030
3355
  /**
3031
3356
  * Description: 创建HTTP PUT提交的文件上传
3032
3357
  * Summary: 文件上传创建