musicbrainz-api 0.5.1 → 0.7.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.
Files changed (39) hide show
  1. package/.idea/$CACHE_FILE$ +6 -0
  2. package/.idea/$PRODUCT_WORKSPACE_FILE$ +19 -0
  3. package/.idea/checkstyle-idea.xml +16 -0
  4. package/.idea/codeStyles/Project.xml +38 -0
  5. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  6. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  7. package/.idea/misc.xml +6 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/shelf/Uncommitted_changes_before_Update_at_6-1-2022_11_38_[Default_Changelist]/shelved.patch +58 -0
  10. package/.idea/shelf/Uncommitted_changes_before_Update_at_6-1-2022_11_38__Default_Changelist_.xml +4 -0
  11. package/.idea/shelf/Uncommitted_changes_before_rebase_[Default_Changelist]/shelved.patch +738 -0
  12. package/.idea/shelf/Uncommitted_changes_before_rebase_[Default_Changelist]1/shelved.patch +0 -0
  13. package/.idea/shelf/Uncommitted_changes_before_rebase__Default_Changelist_.xml +4 -0
  14. package/.idea/vcs.xml +6 -0
  15. package/.idea/workspace.xml +700 -0
  16. package/README.md +290 -287
  17. package/etc/config.js +32 -0
  18. package/lib/digest-auth.d.ts +21 -21
  19. package/lib/digest-auth.js +87 -86
  20. package/lib/musicbrainz-api.d.ts +156 -140
  21. package/lib/musicbrainz-api.js +387 -372
  22. package/lib/musicbrainz.types.d.ts +379 -252
  23. package/lib/musicbrainz.types.js +16 -15
  24. package/lib/rate-limiter.d.ts +8 -8
  25. package/lib/rate-limiter.js +31 -30
  26. package/lib/xml/xml-isrc-list.d.ts +17 -17
  27. package/lib/xml/xml-isrc-list.js +22 -21
  28. package/lib/xml/xml-isrc.d.ts +10 -10
  29. package/lib/xml/xml-isrc.js +17 -16
  30. package/lib/xml/xml-metadata.d.ts +6 -6
  31. package/lib/xml/xml-metadata.js +29 -28
  32. package/lib/xml/xml-recording.d.ts +24 -24
  33. package/lib/xml/xml-recording.js +20 -19
  34. package/package.json +98 -99
  35. package/yarn-error.log +3608 -0
  36. package/.travis.yml +0 -22
  37. package/lgtm.yaml +0 -2
  38. package/tsconfig.json +0 -9
  39. package/tslint.json +0 -26
package/.travis.yml DELETED
@@ -1,22 +0,0 @@
1
- language: node_js
2
- node_js:
3
- - "8"
4
- - "10"
5
- - "12"
6
- install:
7
- - yarn install
8
- script:
9
- - yarn run lint
10
- - yarn run compile
11
- - yarn run test
12
-
13
- jobs:
14
- include:
15
- - stage: after_success
16
- script:
17
- - yarn install
18
- - yarn run test-coverage
19
- - yarn run send-coveralls
20
- - yarn add -D codacy-coverage
21
- #- yarn run send-codacy
22
- node_js: 12
package/lgtm.yaml DELETED
@@ -1,2 +0,0 @@
1
- queries:
2
- - exclude: js/weak-cryptographic-algorithm # MD5 is part of the digest protocol
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "inlineSources": false,
4
- "module": "commonjs",
5
- "moduleResolution": "node",
6
- "target": "ES2017"
7
- }
8
- }
9
-
package/tslint.json DELETED
@@ -1,26 +0,0 @@
1
- {
2
- "extends": "tslint:latest",
3
- "rules": {
4
- "curly": false,
5
- "max-classes-per-file": false,
6
- "semicolon": [true, "always", "ignore-interfaces"],
7
- "quotemark": [true, "single"],
8
- "no-bitwise": false,
9
- "trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
10
- "object-literal-key-quotes": [true, "as-needed"],
11
- "variable-name": [true, "ban-keywords"],
12
- "object-literal-sort-keys": false,
13
- "max-line-length": [true, 200],
14
- "switch-default": false,
15
- "prefer-for-of": false,
16
- "ordered-imports": false,
17
- "forin": false,
18
- "arrow-parens": [true, "ban-single-arg-parens"],
19
- "no-implicit-dependencies": [true, "dev"],
20
- "no-submodule-imports": [true, "uuid"],
21
- "no-var-requires": false
22
- },
23
- "jsRules": {
24
- "curly": false
25
- }
26
- }