musicbrainz-api 0.10.2 → 0.10.3
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/.idea/checkstyle-idea.xml +16 -0
- package/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/misc.xml +5 -11
- package/.idea/modules.xml +7 -7
- package/.idea/vcs.xml +5 -10
- package/README.md +481 -476
- package/lib/digest-auth.ts +101 -0
- package/lib/musicbrainz-api.ts +794 -0
- package/lib/musicbrainz.types.d.ts +5 -0
- package/lib/musicbrainz.types.ts +689 -0
- package/lib/rate-limiter.ts +34 -0
- package/lib/xml/xml-isrc-list.ts +20 -0
- package/lib/xml/xml-isrc.ts +15 -0
- package/lib/xml/xml-metadata.ts +30 -0
- package/lib/xml/xml-recording.ts +19 -0
- package/package.json +103 -104
- package/.idea/$CACHE_FILE$ +0 -6
- package/.idea/$PRODUCT_WORKSPACE_FILE$ +0 -19
- package/.idea/jpa-buddy.xml +0 -6
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="CheckStyle-IDEA" serialisationVersion="2">
|
|
4
|
+
<checkstyleVersion>10.5.0</checkstyleVersion>
|
|
5
|
+
<scanScope>JavaOnly</scanScope>
|
|
6
|
+
<copyLibs>true</copyLibs>
|
|
7
|
+
<option name="thirdPartyClasspath" />
|
|
8
|
+
<option name="activeLocationIds" />
|
|
9
|
+
<option name="locations">
|
|
10
|
+
<list>
|
|
11
|
+
<ConfigurationLocation id="bundled-sun-checks" type="BUNDLED" scope="All" description="Sun Checks">(bundled)</ConfigurationLocation>
|
|
12
|
+
<ConfigurationLocation id="bundled-google-checks" type="BUNDLED" scope="All" description="Google Checks">(bundled)</ConfigurationLocation>
|
|
13
|
+
</list>
|
|
14
|
+
</option>
|
|
15
|
+
</component>
|
|
16
|
+
</project>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
+
<inspection_tool class="TsLint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
6
|
+
</profile>
|
|
7
|
+
</component>
|
package/.idea/misc.xml
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="
|
|
4
|
-
<
|
|
5
|
-
</component>
|
|
6
|
-
<component name="ProjectRootManager">
|
|
7
|
-
<output url="file://$PROJECT_DIR$/out" />
|
|
8
|
-
</component>
|
|
9
|
-
<component name="ProjectType">
|
|
10
|
-
<option name="id" value="jpab" />
|
|
11
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectRootManager">
|
|
4
|
+
<output url="file://$PROJECT_DIR$/out" />
|
|
5
|
+
</component>
|
|
12
6
|
</project>
|
package/.idea/modules.xml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/musicbrainz-api.iml" filepath="$PROJECT_DIR$/.idea/musicbrainz-api.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
8
|
</project>
|
package/.idea/vcs.xml
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
</option>
|
|
7
|
-
</component>
|
|
8
|
-
<component name="VcsDirectoryMappings">
|
|
9
|
-
<mapping directory="" vcs="Git" />
|
|
10
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="VcsDirectoryMappings">
|
|
4
|
+
<mapping directory="" vcs="Git" />
|
|
5
|
+
</component>
|
|
11
6
|
</project>
|