@arrowsphere/api-client 3.123.0 → 3.123.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 +6 -0
- package/build/licenses/licensesClient.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
## [3.123.1] - 2024.06.12
|
|
7
|
+
|
|
8
|
+
### Modified
|
|
9
|
+
- [licenses] Remove "/v2" from bulk action path
|
|
10
|
+
|
|
5
11
|
## [3.123.0] - 2024.06.12
|
|
6
12
|
|
|
7
13
|
### Modified
|
|
@@ -228,7 +228,7 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
228
228
|
/**
|
|
229
229
|
* The path to apply bulk action on license(s)
|
|
230
230
|
*/
|
|
231
|
-
this.BULK_PATH = '/
|
|
231
|
+
this.BULK_PATH = '/bulk-action';
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* Returns the raw result from the find endpoint call
|
package/package.json
CHANGED