@dpgradio/creative 5.3.1 → 5.3.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/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpgradio/creative",
3
- "version": "5.2.0",
3
+ "version": "5.3.2",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpgradio/creative",
3
- "version": "5.3.1",
3
+ "version": "5.3.3",
4
4
  "description": "Support package for standalone Javascript applications",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -2,6 +2,6 @@ import Endpoint from './Endpoint.js'
2
2
 
3
3
  export default class ForbiddenWord extends Endpoint {
4
4
  async detection(id) {
5
- await this.api.request().post(`/forbidden_word/${id}/detection`)
5
+ await this.api.request().post(`/forbidden_words/${id}/detections`)
6
6
  }
7
7
  }