@bi-nova/services 1.3.4-beta.202605271803 → 1.3.4
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/index.d.mts +1 -10
- package/dist/index.d.ts +1 -10
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -228,9 +228,6 @@ declare function handleJdInsurance(options: {
|
|
|
228
228
|
*/
|
|
229
229
|
declare function handleJdInsuranceExt(businessParams: JdInsuranceExternalOptions): Promise<BuildResultReturn>;
|
|
230
230
|
|
|
231
|
-
/** 支付下单客户端类型,独立于中转页 client */
|
|
232
|
-
type PayClientType = 'default' | 'jsapi';
|
|
233
|
-
|
|
234
231
|
/** 客户端类型 */
|
|
235
232
|
type ClientType = 'weapp' | 'h5';
|
|
236
233
|
/** 小程序页面跳转方式 */
|
|
@@ -249,8 +246,6 @@ interface HandleDyPayFlowParams {
|
|
|
249
246
|
platformActivities?: Record<string, any>;
|
|
250
247
|
/** 客户端(可传,默认 weapp) */
|
|
251
248
|
client?: ClientType;
|
|
252
|
-
/** 支付下单客户端类型,jsapi 模式统一下单 fixedClientType 传 22,默认传 21 */
|
|
253
|
-
payClientType?: PayClientType;
|
|
254
249
|
/** 下单参数透传(非必传) */
|
|
255
250
|
douyinOrderExtendData?: string;
|
|
256
251
|
/** 是否是虚拟商品(非必传) */
|
|
@@ -441,11 +436,7 @@ declare enum DyErrorCode {
|
|
|
441
436
|
/** 无效的小程序跳转方式 */
|
|
442
437
|
DY_PAY__INVALID_BACK_WAY = 3016,
|
|
443
438
|
/** 缺少业务类型参数 */
|
|
444
|
-
DY_PAY__MISSING_BUSINESS_TYPE = 3017
|
|
445
|
-
/** 获取 JSAPI 支付信息失败 */
|
|
446
|
-
DY_PAY__JSAPI_INFO_FAILED = 3018,
|
|
447
|
-
/** 获取 JSAPI 支付信息请求失败 */
|
|
448
|
-
DY_PAY__REQUEST_JSAPI_INFO_FAILED = 3019
|
|
439
|
+
DY_PAY__MISSING_BUSINESS_TYPE = 3017
|
|
449
440
|
}
|
|
450
441
|
/**
|
|
451
442
|
* 抖音业务错误信息映射
|
package/dist/index.d.ts
CHANGED
|
@@ -228,9 +228,6 @@ declare function handleJdInsurance(options: {
|
|
|
228
228
|
*/
|
|
229
229
|
declare function handleJdInsuranceExt(businessParams: JdInsuranceExternalOptions): Promise<BuildResultReturn>;
|
|
230
230
|
|
|
231
|
-
/** 支付下单客户端类型,独立于中转页 client */
|
|
232
|
-
type PayClientType = 'default' | 'jsapi';
|
|
233
|
-
|
|
234
231
|
/** 客户端类型 */
|
|
235
232
|
type ClientType = 'weapp' | 'h5';
|
|
236
233
|
/** 小程序页面跳转方式 */
|
|
@@ -249,8 +246,6 @@ interface HandleDyPayFlowParams {
|
|
|
249
246
|
platformActivities?: Record<string, any>;
|
|
250
247
|
/** 客户端(可传,默认 weapp) */
|
|
251
248
|
client?: ClientType;
|
|
252
|
-
/** 支付下单客户端类型,jsapi 模式统一下单 fixedClientType 传 22,默认传 21 */
|
|
253
|
-
payClientType?: PayClientType;
|
|
254
249
|
/** 下单参数透传(非必传) */
|
|
255
250
|
douyinOrderExtendData?: string;
|
|
256
251
|
/** 是否是虚拟商品(非必传) */
|
|
@@ -441,11 +436,7 @@ declare enum DyErrorCode {
|
|
|
441
436
|
/** 无效的小程序跳转方式 */
|
|
442
437
|
DY_PAY__INVALID_BACK_WAY = 3016,
|
|
443
438
|
/** 缺少业务类型参数 */
|
|
444
|
-
DY_PAY__MISSING_BUSINESS_TYPE = 3017
|
|
445
|
-
/** 获取 JSAPI 支付信息失败 */
|
|
446
|
-
DY_PAY__JSAPI_INFO_FAILED = 3018,
|
|
447
|
-
/** 获取 JSAPI 支付信息请求失败 */
|
|
448
|
-
DY_PAY__REQUEST_JSAPI_INFO_FAILED = 3019
|
|
439
|
+
DY_PAY__MISSING_BUSINESS_TYPE = 3017
|
|
449
440
|
}
|
|
450
441
|
/**
|
|
451
442
|
* 抖音业务错误信息映射
|