@antchain/riskplus 1.31.16 → 1.31.18
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 +7 -0
- package/dist/client.js +15 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +34 -6
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -17547,6 +17547,10 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
17547
17547
|
lprPoint?: number;
|
|
17548
17548
|
// LPR发布日期
|
|
17549
17549
|
lprEffectDate?: string;
|
|
17550
|
+
// 流量平台,子渠道
|
|
17551
|
+
trafficPlatform?: string;
|
|
17552
|
+
// 渠道方
|
|
17553
|
+
channelCode?: string;
|
|
17550
17554
|
static names(): { [key: string]: string } {
|
|
17551
17555
|
return {
|
|
17552
17556
|
authToken: 'auth_token',
|
|
@@ -17565,6 +17569,8 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
17565
17569
|
lpr: 'lpr',
|
|
17566
17570
|
lprPoint: 'lpr_point',
|
|
17567
17571
|
lprEffectDate: 'lpr_effect_date',
|
|
17572
|
+
trafficPlatform: 'traffic_platform',
|
|
17573
|
+
channelCode: 'channel_code',
|
|
17568
17574
|
};
|
|
17569
17575
|
}
|
|
17570
17576
|
|
|
@@ -17586,6 +17592,8 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
17586
17592
|
lpr: 'number',
|
|
17587
17593
|
lprPoint: 'number',
|
|
17588
17594
|
lprEffectDate: 'string',
|
|
17595
|
+
trafficPlatform: 'string',
|
|
17596
|
+
channelCode: 'string',
|
|
17589
17597
|
};
|
|
17590
17598
|
}
|
|
17591
17599
|
|
|
@@ -21301,12 +21309,14 @@ export class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
21301
21309
|
productInstanceId?: string;
|
|
21302
21310
|
// 小程序客户号
|
|
21303
21311
|
openId: string;
|
|
21304
|
-
//
|
|
21312
|
+
// 子渠道号(唯一标识)
|
|
21305
21313
|
trafficPlatform: string;
|
|
21306
21314
|
// 门店ID
|
|
21307
21315
|
storeId: string;
|
|
21308
21316
|
// 分期订单号
|
|
21309
21317
|
bizOrderNo: string;
|
|
21318
|
+
// 渠道号
|
|
21319
|
+
channelCode: string;
|
|
21310
21320
|
static names(): { [key: string]: string } {
|
|
21311
21321
|
return {
|
|
21312
21322
|
authToken: 'auth_token',
|
|
@@ -21315,6 +21325,7 @@ export class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
21315
21325
|
trafficPlatform: 'traffic_platform',
|
|
21316
21326
|
storeId: 'store_id',
|
|
21317
21327
|
bizOrderNo: 'biz_order_no',
|
|
21328
|
+
channelCode: 'channel_code',
|
|
21318
21329
|
};
|
|
21319
21330
|
}
|
|
21320
21331
|
|
|
@@ -21326,6 +21337,7 @@ export class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
21326
21337
|
trafficPlatform: 'string',
|
|
21327
21338
|
storeId: 'string',
|
|
21328
21339
|
bizOrderNo: 'string',
|
|
21340
|
+
channelCode: 'string',
|
|
21329
21341
|
};
|
|
21330
21342
|
}
|
|
21331
21343
|
|
|
@@ -21343,7 +21355,7 @@ export class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
21343
21355
|
resultMsg?: string;
|
|
21344
21356
|
// 小程序客户号
|
|
21345
21357
|
openId?: string;
|
|
21346
|
-
//
|
|
21358
|
+
// 子渠道号(唯一标识)
|
|
21347
21359
|
trafficPlatform?: string;
|
|
21348
21360
|
// 门店ID
|
|
21349
21361
|
storeId?: string;
|
|
@@ -21361,6 +21373,8 @@ export class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
21361
21373
|
duePenaltyAmount?: string;
|
|
21362
21374
|
// 可退还资方金额
|
|
21363
21375
|
refundFundAmount?: string;
|
|
21376
|
+
// 渠道号
|
|
21377
|
+
channelCode?: string;
|
|
21364
21378
|
static names(): { [key: string]: string } {
|
|
21365
21379
|
return {
|
|
21366
21380
|
reqMsgId: 'req_msg_id',
|
|
@@ -21376,6 +21390,7 @@ export class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
21376
21390
|
dueAmount: 'due_amount',
|
|
21377
21391
|
duePenaltyAmount: 'due_penalty_amount',
|
|
21378
21392
|
refundFundAmount: 'refund_fund_amount',
|
|
21393
|
+
channelCode: 'channel_code',
|
|
21379
21394
|
};
|
|
21380
21395
|
}
|
|
21381
21396
|
|
|
@@ -21394,6 +21409,7 @@ export class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
21394
21409
|
dueAmount: 'string',
|
|
21395
21410
|
duePenaltyAmount: 'string',
|
|
21396
21411
|
refundFundAmount: 'string',
|
|
21412
|
+
channelCode: 'string',
|
|
21397
21413
|
};
|
|
21398
21414
|
}
|
|
21399
21415
|
|
|
@@ -21408,7 +21424,7 @@ export class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
21408
21424
|
productInstanceId?: string;
|
|
21409
21425
|
// 小程序客户号
|
|
21410
21426
|
openId: string;
|
|
21411
|
-
//
|
|
21427
|
+
// 子渠道号(唯一标识)
|
|
21412
21428
|
trafficPlatform: string;
|
|
21413
21429
|
// 门店ID
|
|
21414
21430
|
storeId: string;
|
|
@@ -21416,6 +21432,8 @@ export class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
21416
21432
|
bizOrderNo: string;
|
|
21417
21433
|
// 商城余额
|
|
21418
21434
|
goodsBalance: string;
|
|
21435
|
+
// 渠道号
|
|
21436
|
+
channelCode: string;
|
|
21419
21437
|
static names(): { [key: string]: string } {
|
|
21420
21438
|
return {
|
|
21421
21439
|
authToken: 'auth_token',
|
|
@@ -21425,6 +21443,7 @@ export class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
21425
21443
|
storeId: 'store_id',
|
|
21426
21444
|
bizOrderNo: 'biz_order_no',
|
|
21427
21445
|
goodsBalance: 'goods_balance',
|
|
21446
|
+
channelCode: 'channel_code',
|
|
21428
21447
|
};
|
|
21429
21448
|
}
|
|
21430
21449
|
|
|
@@ -21437,6 +21456,7 @@ export class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
21437
21456
|
storeId: 'string',
|
|
21438
21457
|
bizOrderNo: 'string',
|
|
21439
21458
|
goodsBalance: 'string',
|
|
21459
|
+
channelCode: 'string',
|
|
21440
21460
|
};
|
|
21441
21461
|
}
|
|
21442
21462
|
|
|
@@ -21483,7 +21503,7 @@ export class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
21483
21503
|
productInstanceId?: string;
|
|
21484
21504
|
// 小程序客户号
|
|
21485
21505
|
openId: string;
|
|
21486
|
-
//
|
|
21506
|
+
// 子渠道号(唯一标识)
|
|
21487
21507
|
trafficPlatform: string;
|
|
21488
21508
|
// 门店ID
|
|
21489
21509
|
storeId: string;
|
|
@@ -21495,6 +21515,8 @@ export class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
21495
21515
|
goodsOrderInfo: GoodsOrderInfo[];
|
|
21496
21516
|
// 门店账户信息
|
|
21497
21517
|
storeAccountInfo: StoreAccountInfo;
|
|
21518
|
+
// 渠道号
|
|
21519
|
+
channelCode: string;
|
|
21498
21520
|
static names(): { [key: string]: string } {
|
|
21499
21521
|
return {
|
|
21500
21522
|
authToken: 'auth_token',
|
|
@@ -21506,6 +21528,7 @@ export class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
21506
21528
|
mailId: 'mail_id',
|
|
21507
21529
|
goodsOrderInfo: 'goods_order_info',
|
|
21508
21530
|
storeAccountInfo: 'store_account_info',
|
|
21531
|
+
channelCode: 'channel_code',
|
|
21509
21532
|
};
|
|
21510
21533
|
}
|
|
21511
21534
|
|
|
@@ -21520,6 +21543,7 @@ export class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
21520
21543
|
mailId: 'string',
|
|
21521
21544
|
goodsOrderInfo: { 'type': 'array', 'itemType': GoodsOrderInfo },
|
|
21522
21545
|
storeAccountInfo: StoreAccountInfo,
|
|
21546
|
+
channelCode: 'string',
|
|
21523
21547
|
};
|
|
21524
21548
|
}
|
|
21525
21549
|
|
|
@@ -21566,7 +21590,7 @@ export class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
21566
21590
|
productInstanceId?: string;
|
|
21567
21591
|
// 小程序客户号
|
|
21568
21592
|
openId: string;
|
|
21569
|
-
//
|
|
21593
|
+
// 子渠道号(唯一标识)
|
|
21570
21594
|
trafficPlatform: string;
|
|
21571
21595
|
// 门店ID
|
|
21572
21596
|
storeId: string;
|
|
@@ -21574,6 +21598,8 @@ export class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
21574
21598
|
bizOrderNo: string;
|
|
21575
21599
|
// 退款金额
|
|
21576
21600
|
refundAmount: string;
|
|
21601
|
+
// 渠道号
|
|
21602
|
+
channelCode: string;
|
|
21577
21603
|
static names(): { [key: string]: string } {
|
|
21578
21604
|
return {
|
|
21579
21605
|
authToken: 'auth_token',
|
|
@@ -21583,6 +21609,7 @@ export class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
21583
21609
|
storeId: 'store_id',
|
|
21584
21610
|
bizOrderNo: 'biz_order_no',
|
|
21585
21611
|
refundAmount: 'refund_amount',
|
|
21612
|
+
channelCode: 'channel_code',
|
|
21586
21613
|
};
|
|
21587
21614
|
}
|
|
21588
21615
|
|
|
@@ -21595,6 +21622,7 @@ export class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
21595
21622
|
storeId: 'string',
|
|
21596
21623
|
bizOrderNo: 'string',
|
|
21597
21624
|
refundAmount: 'string',
|
|
21625
|
+
channelCode: 'string',
|
|
21598
21626
|
};
|
|
21599
21627
|
}
|
|
21600
21628
|
|
|
@@ -34985,7 +35013,7 @@ export default class Client {
|
|
|
34985
35013
|
req_msg_id: AntchainUtil.getNonce(),
|
|
34986
35014
|
access_key: this._accessKeyId,
|
|
34987
35015
|
base_sdk_version: "TeaSDK-2.0",
|
|
34988
|
-
sdk_version: "1.31.
|
|
35016
|
+
sdk_version: "1.31.18",
|
|
34989
35017
|
_prod_code: "RISKPLUS",
|
|
34990
35018
|
_prod_channel: "undefined",
|
|
34991
35019
|
};
|