@axway/amplify-request 4.0.0-alpha.5 → 4.0.1

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
@@ -1,3 +1,13 @@
1
+ # v4.0.1 (May 16, 2025)
2
+
3
+ - BREAKING CHANGE: Node.js version upgrade to 20.18.2 (minimum) and conversion to ES Modules.
4
+ ([APIGOV-27923](https://jira.axway.com/browse/APIGOV-29723))
5
+
6
+ # v4.0.0 (May 16, 2025)
7
+
8
+ - BREAKING CHANGE: Node.js version upgrade to 20.18.2 (minimum) and conversion to ES Modules.
9
+ ([APIGOV-27923](https://jira.axway.com/browse/APIGOV-29723))
10
+
1
11
  # v3.1.7 (Jan 16, 2025)
2
12
 
3
13
  - chore: Updated dependencies.
package/dist/index.js CHANGED
@@ -100,7 +100,6 @@ function options(opts = {}) {
100
100
  protocol,
101
101
  rejectUnauthorized: opts.https.rejectUnauthorized
102
102
  };
103
- // console.log(agentOpts);
104
103
  opts.agent = {
105
104
  ...opts.agent,
106
105
  http: opts.agent?.http || new HttpProxyAgent(agentOpts),
@@ -108,7 +107,6 @@ function options(opts = {}) {
108
107
  };
109
108
  }
110
109
 
111
- // console.log(opts);
112
110
  return opts;
113
111
  }
114
112
 
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["import sourceMapSupport from 'source-map-support';\n/* istanbul ignore if */\nif (!Error.prepareStackTrace) {\n\tsourceMapSupport.install();\n}\n\nimport fs from 'fs';\nimport got from 'got';\nimport HttpProxyAgent from 'http-proxy-agent';\nimport HttpsProxyAgent from 'https-proxy-agent';\nimport prettyBytes from 'pretty-bytes';\nimport snooplogg from 'snooplogg';\nimport { mergeDeep } from '@axway/amplify-utils';\n\nconst { log } = snooplogg('amplify-request');\nconst { alert, highlight, magenta, ok, note } = snooplogg.styles;\n\nexport { got };\n\n/**\n * Creates an options object for use with `got`.\n *\n * @param {Object} [opts] - `got` options.\n * @param {Buffer|String} [opts.ca] - A buffer containing the certificate authority bundle or a\n * path to a PEM-formatted ca bundle.\n * @param {Buffer|String} [opts.cert] - A buffer containing a client certificate or a path to a\n * cert file. This value is used for HTTP authentication.\n * @param {Object} [opts.defaults] - An object with the default options. This is helpful when you\n * want to merge settings from some config file with various got() options such as `headers`.\n * @param {Buffer|String} [opts.key] - A buffer containing a client private key or a path to a\n * private key file. This value is used for HTTP authentication.\n * @param {String} [opts.proxy] - A proxy server URL. Can be `http` or `https`.\n * @param {Boolean} [opts.strictSSL=true] - When falsey, disables TLS/SSL certificate validation\n * for both `https` destinations and `https` proxy servers.\n * @returns {Promise} Resolves `got` options object.\n */\nexport function options(opts = {}) {\n\tif (!opts || typeof opts !== 'object') {\n\t\tthrow new TypeError('Expected options to be an object');\n\t}\n\n\topts = { ...opts };\n\n\tconst { defaults } = opts;\n\tconst {\n\t\tca = defaults?.ca,\n\t\tcaFile = defaults?.caFile,\n\t\tcert = defaults?.cert,\n\t\tcertFile = defaults?.certFile,\n\t\tkey = defaults?.key,\n\t\tkeyFile = defaults?.keyFile,\n\t\tproxy = defaults?.proxy,\n\t\tstrictSSL = defaults?.strictSSL\n\t} = opts;\n\n\tdelete opts.ca;\n\tdelete opts.caFile;\n\tdelete opts.cert;\n\tdelete opts.certFile;\n\tdelete opts.defaults;\n\tdelete opts.key;\n\tdelete opts.keyFile;\n\tdelete opts.proxy;\n\tdelete opts.strictSSL;\n\n\tconst load = it => Buffer.isBuffer(it) ? it : typeof it === 'string' ? fs.readFileSync(it) : undefined;\n\n\topts.hooks = mergeDeep(opts.hooks, {\n\t\tafterResponse: [\n\t\t\tresponse => {\n\t\t\t\tconst { headers, request, statusCode, url } = response;\n\t\t\t\tlog([\n\t\t\t\t\trequest.options.method,\n\t\t\t\t\thighlight(url),\n\t\t\t\t\tproxy && note(`[proxy ${proxy}]`),\n\t\t\t\t\tObject.prototype.hasOwnProperty.call(headers, 'content-length') && magenta(`(${prettyBytes(~~headers['content-length'])})`),\n\t\t\t\t\tstatusCode < 400 ? ok(statusCode) : alert(statusCode)\n\t\t\t\t].filter(Boolean).join(' '));\n\t\t\t\treturn response; // note: this must return response\n\t\t\t}\n\t\t]\n\t});\n\n\topts.https = mergeDeep(opts.https, {\n\t\tcertificate: load(opts.https?.certificate || cert || certFile),\n\t\tcertificateAuthority: load(opts.https?.certificateAuthority || ca || caFile),\n\t\tkey: load(opts.https?.key || key || keyFile),\n\t\trejectUnauthorized: opts.https?.rejectUnauthorized !== undefined ? opts.https.rejectUnauthorized : !!strictSSL !== false\n\t});\n\n\tif (proxy) {\n\t\tconst { hostname: host, pathname: path, port, protocol, username, password } = new URL(proxy);\n\t\tconst agentOpts = {\n\t\t\tca: opts.https.certificateAuthority,\n\t\t\tcert: opts.https.certificate,\n\t\t\thost,\n\t\t\tkey: opts.https.key,\n\t\t\tpath,\n\t\t\tport,\n\t\t\tauth: username && password ? `${username}:${password}` : null,\n\t\t\tprotocol,\n\t\t\trejectUnauthorized: opts.https.rejectUnauthorized\n\t\t};\n\t\t// console.log(agentOpts);\n\t\topts.agent = {\n\t\t\t...opts.agent,\n\t\t\thttp: opts.agent?.http || new HttpProxyAgent(agentOpts),\n\t\t\thttps: opts.agent?.https || new HttpsProxyAgent(agentOpts)\n\t\t};\n\t}\n\n\t// console.log(opts);\n\treturn opts;\n}\n\n/**\n * Creates `got` instance with the applied configuration.\n *\n * @param {Object} [opts] - `got` options.\n * @param {Buffer|String} [opts.ca] - A buffer containing the certificate authority bundle or a\n * path to a PEM-formatted ca bundle.\n * @param {Buffer|String} [opts.cert] - A buffer containing a client certificate or a path to a\n * cert file. This value is used for HTTP authentication.\n * @param {Object} [opts.defaults] - An object with the request defaults.\n * @param {Buffer|String} [opts.key] - A buffer containing a client private key or a path to a\n * private key file. This value is used for HTTP authentication.\n * @param {String} [opts.proxy] - A proxy server URL. Can be `http` or `https`.\n * @param {Boolean} [opts.strictSSL=true] - When falsey, disables TLS/SSL certificate validation\n * for both `https` destinations and `https` proxy servers.\n * @returns {Function} A `got` instance.\n */\nexport function init(opts = {}) {\n\treturn got.extend(options(opts));\n}\n\nexport default init;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["import sourceMapSupport from 'source-map-support';\n/* istanbul ignore if */\nif (!Error.prepareStackTrace) {\n\tsourceMapSupport.install();\n}\n\nimport fs from 'fs';\nimport got from 'got';\nimport HttpProxyAgent from 'http-proxy-agent';\nimport HttpsProxyAgent from 'https-proxy-agent';\nimport prettyBytes from 'pretty-bytes';\nimport snooplogg from 'snooplogg';\nimport { mergeDeep } from '@axway/amplify-utils';\n\nconst { log } = snooplogg('amplify-request');\nconst { alert, highlight, magenta, ok, note } = snooplogg.styles;\n\nexport { got };\n\n/**\n * Creates an options object for use with `got`.\n *\n * @param {Object} [opts] - `got` options.\n * @param {Buffer|String} [opts.ca] - A buffer containing the certificate authority bundle or a\n * path to a PEM-formatted ca bundle.\n * @param {Buffer|String} [opts.cert] - A buffer containing a client certificate or a path to a\n * cert file. This value is used for HTTP authentication.\n * @param {Object} [opts.defaults] - An object with the default options. This is helpful when you\n * want to merge settings from some config file with various got() options such as `headers`.\n * @param {Buffer|String} [opts.key] - A buffer containing a client private key or a path to a\n * private key file. This value is used for HTTP authentication.\n * @param {String} [opts.proxy] - A proxy server URL. Can be `http` or `https`.\n * @param {Boolean} [opts.strictSSL=true] - When falsey, disables TLS/SSL certificate validation\n * for both `https` destinations and `https` proxy servers.\n * @returns {Promise} Resolves `got` options object.\n */\nexport function options(opts = {}) {\n\tif (!opts || typeof opts !== 'object') {\n\t\tthrow new TypeError('Expected options to be an object');\n\t}\n\n\topts = { ...opts };\n\n\tconst { defaults } = opts;\n\tconst {\n\t\tca = defaults?.ca,\n\t\tcaFile = defaults?.caFile,\n\t\tcert = defaults?.cert,\n\t\tcertFile = defaults?.certFile,\n\t\tkey = defaults?.key,\n\t\tkeyFile = defaults?.keyFile,\n\t\tproxy = defaults?.proxy,\n\t\tstrictSSL = defaults?.strictSSL\n\t} = opts;\n\n\tdelete opts.ca;\n\tdelete opts.caFile;\n\tdelete opts.cert;\n\tdelete opts.certFile;\n\tdelete opts.defaults;\n\tdelete opts.key;\n\tdelete opts.keyFile;\n\tdelete opts.proxy;\n\tdelete opts.strictSSL;\n\n\tconst load = it => Buffer.isBuffer(it) ? it : typeof it === 'string' ? fs.readFileSync(it) : undefined;\n\n\topts.hooks = mergeDeep(opts.hooks, {\n\t\tafterResponse: [\n\t\t\tresponse => {\n\t\t\t\tconst { headers, request, statusCode, url } = response;\n\t\t\t\tlog([\n\t\t\t\t\trequest.options.method,\n\t\t\t\t\thighlight(url),\n\t\t\t\t\tproxy && note(`[proxy ${proxy}]`),\n\t\t\t\t\tObject.prototype.hasOwnProperty.call(headers, 'content-length') && magenta(`(${prettyBytes(~~headers['content-length'])})`),\n\t\t\t\t\tstatusCode < 400 ? ok(statusCode) : alert(statusCode)\n\t\t\t\t].filter(Boolean).join(' '));\n\t\t\t\treturn response; // note: this must return response\n\t\t\t}\n\t\t]\n\t});\n\n\topts.https = mergeDeep(opts.https, {\n\t\tcertificate: load(opts.https?.certificate || cert || certFile),\n\t\tcertificateAuthority: load(opts.https?.certificateAuthority || ca || caFile),\n\t\tkey: load(opts.https?.key || key || keyFile),\n\t\trejectUnauthorized: opts.https?.rejectUnauthorized !== undefined ? opts.https.rejectUnauthorized : !!strictSSL !== false\n\t});\n\n\tif (proxy) {\n\t\tconst { hostname: host, pathname: path, port, protocol, username, password } = new URL(proxy);\n\t\tconst agentOpts = {\n\t\t\tca: opts.https.certificateAuthority,\n\t\t\tcert: opts.https.certificate,\n\t\t\thost,\n\t\t\tkey: opts.https.key,\n\t\t\tpath,\n\t\t\tport,\n\t\t\tauth: username && password ? `${username}:${password}` : null,\n\t\t\tprotocol,\n\t\t\trejectUnauthorized: opts.https.rejectUnauthorized\n\t\t};\n\t\topts.agent = {\n\t\t\t...opts.agent,\n\t\t\thttp: opts.agent?.http || new HttpProxyAgent(agentOpts),\n\t\t\thttps: opts.agent?.https || new HttpsProxyAgent(agentOpts)\n\t\t};\n\t}\n\n\treturn opts;\n}\n\n/**\n * Creates `got` instance with the applied configuration.\n *\n * @param {Object} [opts] - `got` options.\n * @param {Buffer|String} [opts.ca] - A buffer containing the certificate authority bundle or a\n * path to a PEM-formatted ca bundle.\n * @param {Buffer|String} [opts.cert] - A buffer containing a client certificate or a path to a\n * cert file. This value is used for HTTP authentication.\n * @param {Object} [opts.defaults] - An object with the request defaults.\n * @param {Buffer|String} [opts.key] - A buffer containing a client private key or a path to a\n * private key file. This value is used for HTTP authentication.\n * @param {String} [opts.proxy] - A proxy server URL. Can be `http` or `https`.\n * @param {Boolean} [opts.strictSSL=true] - When falsey, disables TLS/SSL certificate validation\n * for both `https` destinations and `https` proxy servers.\n * @returns {Function} A `got` instance.\n */\nexport function init(opts = {}) {\n\treturn got.extend(options(opts));\n}\n\nexport default init;\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axway/amplify-request",
3
- "version": "4.0.0-alpha.5",
3
+ "version": "4.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -28,7 +28,7 @@
28
28
  "test": "gulp test"
29
29
  },
30
30
  "dependencies": {
31
- "@axway/amplify-utils": "^2.0.0-alpha.5",
31
+ "@axway/amplify-utils": "^2.0.1",
32
32
  "got": "^11.8.5",
33
33
  "http-proxy-agent": "^5.0.0",
34
34
  "https-proxy-agent": "^5.0.1",
@@ -37,7 +37,7 @@
37
37
  "source-map-support": "^0.5.21"
38
38
  },
39
39
  "devDependencies": {
40
- "@axway/gulp-tasks": "^4.1.4"
40
+ "@axway/gulp-tasks": "^5.0.1"
41
41
  },
42
42
  "homepage": "https://github.com/appcelerator/amplify-tooling#readme",
43
43
  "bugs": "https://github.com/appcelerator/amplify-tooling/issues",
@@ -45,5 +45,5 @@
45
45
  "engines": {
46
46
  "node": ">=20.18.2"
47
47
  },
48
- "gitHead": "27f87bfc127622920b087d60f0851e9b28a3e925"
48
+ "gitHead": "911132219b963f56dfc1f9820a743b4e55e1355d"
49
49
  }