lzh-common 0.0.212 → 0.0.213

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.
@@ -1,11 +1,17 @@
1
1
  import { IF2ePaginationReqData } from "../http.js";
2
2
  import { IMerchantWechatPayDB } from "./base.js";
3
- /** 请求参数: 列表 */
3
+ /** 请求参数: 列表(分页) */
4
4
  export type IMerchantWechatPaySystemListReq = IF2ePaginationReqData;
5
- /** 返回参数: 列表 */
5
+ /** 返回参数: 列表(分页) */
6
6
  export type IMerchantWechatPaySystemListDatumRes = IMerchantWechatPayDB;
7
7
  /** 请求参数:新增 */
8
8
  export type IMerchantWechatPaySystemAddReq = Pick<IMerchantWechatPayDB, "mch_id" | "mch_name" | "mch_short_name" | "apiv3_serial_no" | "apiv3_private_key" | "apiv3_public_key" | "apiv3_platform_key">;
9
9
  /** 请求参数: 编辑 */
10
- export type IMerchantWechatPaySystemEditReq = Pick<IMerchantWechatPayDB, "mch_id" | "mch_name" | "mch_short_name" | "apiv3_serial_no" | "apiv3_private_key" | "apiv3_public_key" | "apiv3_platform_key">;
10
+ export type IMerchantWechatPaySystemEditReq = IMerchantWechatPaySystemAddReq & Pick<IMerchantWechatPayDB, 'id'>;
11
+ /** 请求参数: 查详情 */
12
+ export type IMerchantWechatPaySystemInfoReq = {
13
+ record_id: IMerchantWechatPayDB['id'];
14
+ };
15
+ /** 返回参数: 查详情 */
16
+ export type IMerchantWechatPaySystemInfoRes = IMerchantWechatPayDB;
11
17
  //# sourceMappingURL=system.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAEjD,eAAe;AACf,MAAM,MAAM,+BAA+B,GAAG,qBAAqB,CAAA;AAEnE,eAAe;AACf,MAAM,MAAM,oCAAoC,GAAG,oBAAoB,CAAA;AAEvE,cAAc;AACd,MAAM,MAAM,8BAA8B,GAAG,IAAI,CAC/C,oBAAoB,EAClB,QAAQ,GACR,UAAU,GACV,gBAAgB,GAEhB,iBAAiB,GACjB,mBAAmB,GACnB,kBAAkB,GAClB,oBAAoB,CACvB,CAAC;AAEF,eAAe;AACf,MAAM,MAAM,+BAA+B,GAAG,IAAI,CAChD,oBAAoB,EAClB,QAAQ,GACR,UAAU,GACV,gBAAgB,GAEhB,iBAAiB,GACjB,mBAAmB,GACnB,kBAAkB,GAClB,oBAAoB,CACvB,CAAC"}
1
+ {"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAEjD,mBAAmB;AACnB,MAAM,MAAM,+BAA+B,GAAG,qBAAqB,CAAA;AAEnE,mBAAmB;AACnB,MAAM,MAAM,oCAAoC,GAAG,oBAAoB,CAAA;AAEvE,cAAc;AACd,MAAM,MAAM,8BAA8B,GAAG,IAAI,CAC/C,oBAAoB,EAClB,QAAQ,GACR,UAAU,GACV,gBAAgB,GAEhB,iBAAiB,GACjB,mBAAmB,GACnB,kBAAkB,GAClB,oBAAoB,CACvB,CAAC;AAEF,eAAe;AACf,MAAM,MAAM,+BAA+B,GAAI,8BAA8B,GAAG,IAAI,CAAC,oBAAoB,EAAC,IAAI,CAAC,CAAA;AAE/G,gBAAgB;AAChB,MAAM,MAAM,+BAA+B,GAAG;IAAE,SAAS,EAAE,oBAAoB,CAAC,IAAI,CAAC,CAAA;CAAC,CAAA;AACtF,gBAAgB;AAChB,MAAM,MAAM,+BAA+B,GAAI,oBAAoB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lzh-common",
3
- "version": "0.0.212",
3
+ "version": "0.0.213",
4
4
  "description": "Shared TypeScript interfaces",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",