@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/dist/client.d.ts
CHANGED
|
@@ -9457,6 +9457,8 @@ export declare class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
9457
9457
|
lpr?: number;
|
|
9458
9458
|
lprPoint?: number;
|
|
9459
9459
|
lprEffectDate?: string;
|
|
9460
|
+
trafficPlatform?: string;
|
|
9461
|
+
channelCode?: string;
|
|
9460
9462
|
static names(): {
|
|
9461
9463
|
[key: string]: string;
|
|
9462
9464
|
};
|
|
@@ -11021,6 +11023,7 @@ export declare class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
11021
11023
|
trafficPlatform: string;
|
|
11022
11024
|
storeId: string;
|
|
11023
11025
|
bizOrderNo: string;
|
|
11026
|
+
channelCode: string;
|
|
11024
11027
|
static names(): {
|
|
11025
11028
|
[key: string]: string;
|
|
11026
11029
|
};
|
|
@@ -11045,6 +11048,7 @@ export declare class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
11045
11048
|
dueAmount?: string;
|
|
11046
11049
|
duePenaltyAmount?: string;
|
|
11047
11050
|
refundFundAmount?: string;
|
|
11051
|
+
channelCode?: string;
|
|
11048
11052
|
static names(): {
|
|
11049
11053
|
[key: string]: string;
|
|
11050
11054
|
};
|
|
@@ -11063,6 +11067,7 @@ export declare class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
11063
11067
|
storeId: string;
|
|
11064
11068
|
bizOrderNo: string;
|
|
11065
11069
|
goodsBalance: string;
|
|
11070
|
+
channelCode: string;
|
|
11066
11071
|
static names(): {
|
|
11067
11072
|
[key: string]: string;
|
|
11068
11073
|
};
|
|
@@ -11098,6 +11103,7 @@ export declare class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
11098
11103
|
mailId?: string;
|
|
11099
11104
|
goodsOrderInfo: GoodsOrderInfo[];
|
|
11100
11105
|
storeAccountInfo: StoreAccountInfo;
|
|
11106
|
+
channelCode: string;
|
|
11101
11107
|
static names(): {
|
|
11102
11108
|
[key: string]: string;
|
|
11103
11109
|
};
|
|
@@ -11131,6 +11137,7 @@ export declare class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
11131
11137
|
storeId: string;
|
|
11132
11138
|
bizOrderNo: string;
|
|
11133
11139
|
refundAmount: string;
|
|
11140
|
+
channelCode: string;
|
|
11134
11141
|
static names(): {
|
|
11135
11142
|
[key: string]: string;
|
|
11136
11143
|
};
|
package/dist/client.js
CHANGED
|
@@ -8741,6 +8741,8 @@ class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
8741
8741
|
lpr: 'lpr',
|
|
8742
8742
|
lprPoint: 'lpr_point',
|
|
8743
8743
|
lprEffectDate: 'lpr_effect_date',
|
|
8744
|
+
trafficPlatform: 'traffic_platform',
|
|
8745
|
+
channelCode: 'channel_code',
|
|
8744
8746
|
};
|
|
8745
8747
|
}
|
|
8746
8748
|
static types() {
|
|
@@ -8761,6 +8763,8 @@ class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
8761
8763
|
lpr: 'number',
|
|
8762
8764
|
lprPoint: 'number',
|
|
8763
8765
|
lprEffectDate: 'string',
|
|
8766
|
+
trafficPlatform: 'string',
|
|
8767
|
+
channelCode: 'string',
|
|
8764
8768
|
};
|
|
8765
8769
|
}
|
|
8766
8770
|
}
|
|
@@ -11159,6 +11163,7 @@ class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
11159
11163
|
trafficPlatform: 'traffic_platform',
|
|
11160
11164
|
storeId: 'store_id',
|
|
11161
11165
|
bizOrderNo: 'biz_order_no',
|
|
11166
|
+
channelCode: 'channel_code',
|
|
11162
11167
|
};
|
|
11163
11168
|
}
|
|
11164
11169
|
static types() {
|
|
@@ -11169,6 +11174,7 @@ class QueryDubbridgePetitemRequest extends $tea.Model {
|
|
|
11169
11174
|
trafficPlatform: 'string',
|
|
11170
11175
|
storeId: 'string',
|
|
11171
11176
|
bizOrderNo: 'string',
|
|
11177
|
+
channelCode: 'string',
|
|
11172
11178
|
};
|
|
11173
11179
|
}
|
|
11174
11180
|
}
|
|
@@ -11192,6 +11198,7 @@ class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
11192
11198
|
dueAmount: 'due_amount',
|
|
11193
11199
|
duePenaltyAmount: 'due_penalty_amount',
|
|
11194
11200
|
refundFundAmount: 'refund_fund_amount',
|
|
11201
|
+
channelCode: 'channel_code',
|
|
11195
11202
|
};
|
|
11196
11203
|
}
|
|
11197
11204
|
static types() {
|
|
@@ -11209,6 +11216,7 @@ class QueryDubbridgePetitemResponse extends $tea.Model {
|
|
|
11209
11216
|
dueAmount: 'string',
|
|
11210
11217
|
duePenaltyAmount: 'string',
|
|
11211
11218
|
refundFundAmount: 'string',
|
|
11219
|
+
channelCode: 'string',
|
|
11212
11220
|
};
|
|
11213
11221
|
}
|
|
11214
11222
|
}
|
|
@@ -11226,6 +11234,7 @@ class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
11226
11234
|
storeId: 'store_id',
|
|
11227
11235
|
bizOrderNo: 'biz_order_no',
|
|
11228
11236
|
goodsBalance: 'goods_balance',
|
|
11237
|
+
channelCode: 'channel_code',
|
|
11229
11238
|
};
|
|
11230
11239
|
}
|
|
11231
11240
|
static types() {
|
|
@@ -11237,6 +11246,7 @@ class ExecDubbridgePetitemRequest extends $tea.Model {
|
|
|
11237
11246
|
storeId: 'string',
|
|
11238
11247
|
bizOrderNo: 'string',
|
|
11239
11248
|
goodsBalance: 'string',
|
|
11249
|
+
channelCode: 'string',
|
|
11240
11250
|
};
|
|
11241
11251
|
}
|
|
11242
11252
|
}
|
|
@@ -11278,6 +11288,7 @@ class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
11278
11288
|
mailId: 'mail_id',
|
|
11279
11289
|
goodsOrderInfo: 'goods_order_info',
|
|
11280
11290
|
storeAccountInfo: 'store_account_info',
|
|
11291
|
+
channelCode: 'channel_code',
|
|
11281
11292
|
};
|
|
11282
11293
|
}
|
|
11283
11294
|
static types() {
|
|
@@ -11291,6 +11302,7 @@ class PushDubbridgePetitemRequest extends $tea.Model {
|
|
|
11291
11302
|
mailId: 'string',
|
|
11292
11303
|
goodsOrderInfo: { 'type': 'array', 'itemType': GoodsOrderInfo },
|
|
11293
11304
|
storeAccountInfo: StoreAccountInfo,
|
|
11305
|
+
channelCode: 'string',
|
|
11294
11306
|
};
|
|
11295
11307
|
}
|
|
11296
11308
|
}
|
|
@@ -11330,6 +11342,7 @@ class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
11330
11342
|
storeId: 'store_id',
|
|
11331
11343
|
bizOrderNo: 'biz_order_no',
|
|
11332
11344
|
refundAmount: 'refund_amount',
|
|
11345
|
+
channelCode: 'channel_code',
|
|
11333
11346
|
};
|
|
11334
11347
|
}
|
|
11335
11348
|
static types() {
|
|
@@ -11341,6 +11354,7 @@ class RefuseDubbridgePetitemRequest extends $tea.Model {
|
|
|
11341
11354
|
storeId: 'string',
|
|
11342
11355
|
bizOrderNo: 'string',
|
|
11343
11356
|
refundAmount: 'string',
|
|
11357
|
+
channelCode: 'string',
|
|
11344
11358
|
};
|
|
11345
11359
|
}
|
|
11346
11360
|
}
|
|
@@ -20103,7 +20117,7 @@ class Client {
|
|
|
20103
20117
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
20104
20118
|
access_key: this._accessKeyId,
|
|
20105
20119
|
base_sdk_version: "TeaSDK-2.0",
|
|
20106
|
-
sdk_version: "1.31.
|
|
20120
|
+
sdk_version: "1.31.18",
|
|
20107
20121
|
_prod_code: "RISKPLUS",
|
|
20108
20122
|
_prod_channel: "undefined",
|
|
20109
20123
|
};
|