@certd/jdcloud 1.37.9 → 1.37.11

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.37.11](https://github.com/certd/certd/compare/v1.37.10...v1.37.11) (2025-11-28)
7
+
8
+ ### Performance Improvements
9
+
10
+ * ssh支持ppk格式私钥 ([575ae16](https://github.com/certd/certd/commit/575ae164c863d0b1f9fa0890549a2ee7472fb469))
11
+
12
+ ## [1.37.10](https://github.com/certd/certd/compare/v1.37.9...v1.37.10) (2025-11-19)
13
+
14
+ **Note:** Version bump only for package @certd/jdcloud
15
+
6
16
  ## [1.37.9](https://github.com/certd/certd/compare/v1.37.8...v1.37.9) (2025-11-19)
7
17
 
8
18
  **Note:** Version bump only for package @certd/jdcloud
@@ -0,0 +1,5 @@
1
+ export declare const JDCloud: any;
2
+ export declare const JDService: any;
3
+ export declare const JDDomainService: any;
4
+ export declare const JDCdnService: any;
5
+ export declare const JDSslService: any;
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ import jdCloud from "./lib/core.js";
2
+ import jdService from './lib/service.js';
3
+ import domainService from './repo/domainservice/v2/domainservice.js';
4
+ import cdnService from './repo/cdn/v1/cdn.js';
5
+ import sslService from './repo/ssl/v1/ssl.js';
6
+ export const JDCloud = jdCloud;
7
+ export const JDService = jdService;
8
+ export const JDDomainService = domainService;
9
+ export const JDCdnService = cdnService;
10
+ export const JDSslService = sslService;
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAO,eAAe,CAAC;AACrC,OAAO,SAAS,MAAM,kBAAkB,CAAA;AAExC,OAAO,aAAa,MAAM,0CAA0C,CAAA;AACpE,OAAO,UAAU,MAAM,sBAAsB,CAAA;AAC7C,OAAO,UAAU,MAAM,sBAAsB,CAAA;AAC7C,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC;AAC/B,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC;AACnC,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,YAAY,GAAG,UAAU,CAAC;AACvC,MAAM,CAAC,MAAM,YAAY,GAAG,UAAU,CAAC"}
package/package.json CHANGED
@@ -1,13 +1,11 @@
1
1
  {
2
2
  "name": "@certd/jdcloud",
3
- "version": "1.37.9",
3
+ "version": "1.37.11",
4
4
  "description": "jdcloud openApi sdk",
5
5
  "main": "./dist/bundle.js",
6
6
  "module": "./dist/bundle.js",
7
7
  "types": "./dist/d/index.d.ts",
8
8
  "scripts": {
9
- "test": "cross-env NODE_CONFIG_DIR=./test/config mocha --recursive --require babel-register",
10
- "dev": "babel src --out-dir babel -w",
11
9
  "build": "rollup -c ",
12
10
  "dev-build": "npm run build",
13
11
  "pub": "npm publish"
@@ -15,7 +13,6 @@
15
13
  "author": "",
16
14
  "license": "Apache",
17
15
  "dependencies": {
18
- "babel-register": "^6.26.0",
19
16
  "buffer": "^5.0.8",
20
17
  "create-hash": "^1.1.3",
21
18
  "create-hmac": "^1.1.6",
@@ -30,8 +27,6 @@
30
27
  "@rollup/plugin-typescript": "^11.0.0",
31
28
  "@typescript-eslint/eslint-plugin": "^8.26.1",
32
29
  "@typescript-eslint/parser": "^8.26.1",
33
- "babel-cli": "^6.26.0",
34
- "babel-preset-env": "^1.6.1",
35
30
  "chai": "^4.1.2",
36
31
  "config": "^1.30.0",
37
32
  "cross-env": "^5.1.4",
@@ -61,5 +56,5 @@
61
56
  "fetch"
62
57
  ]
63
58
  },
64
- "gitHead": "8bfdef79c48c3151089107ead7134ce4515fd5bc"
59
+ "gitHead": "9acac86ed58616fef31ec4d63021bb221429a425"
65
60
  }