wikibase-cli 16.3.0 → 16.3.2

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.
@@ -64,7 +64,7 @@ const prefilledParams = [
64
64
  'wpownerOnly=1'
65
65
  ].join('&')
66
66
 
67
- const oauthConsumerRegistrationPathname = `/wiki/Special:OAuthConsumerRegistration/propose?${prefilledParams}`
67
+ const oauthConsumerRegistrationPathname = `/wiki/Special:OAuthConsumerRegistration/propose/oauth1a?${prefilledParams}`
68
68
  const getOAuthConsumerRegistrationUrl = instance => {
69
69
  if (instance.endsWith('wikidata.org')) return `https://meta.wikimedia.org${oauthConsumerRegistrationPathname}`
70
70
  else return `${instance}${oauthConsumerRegistrationPathname}`
@@ -27,7 +27,7 @@ module.exports = ({ ids, props, languages, urls, onResponse, onDone = noop }) =>
27
27
 
28
28
  const { entities } = await get(url)
29
29
  onResponse(Object.values(entities))
30
- await wait(500)
30
+ await wait(100)
31
31
  return getNextBatch()
32
32
  }
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wikibase-cli",
3
- "version": "16.3.0",
3
+ "version": "16.3.2",
4
4
  "description": "A command-line interface to Wikibase",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "shell-quote": "^1.7.3",
51
51
  "split": "^1.0.1",
52
52
  "through": "^2.3.8",
53
- "wikibase-edit": "^5.3.0",
53
+ "wikibase-edit": "^5.3.3",
54
54
  "wikibase-sdk": "^8.1.0",
55
55
  "wikidata-lang": "^2.0.11"
56
56
  },