@forge/response 0.2.0-next.0 → 0.2.1-next.0

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @forge/repsonse
2
2
 
3
+ ## 0.2.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 732c136a: Bumping dependencies via Renovate:
8
+
9
+ - tslib
10
+
11
+ ## 0.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - bdb7867: Set AuthProfile constructor to return a JSON object directly
16
+
3
17
  ## 0.2.0-next.0
4
18
 
5
19
  ### Minor Changes
package/out/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthProfile = void 0;
3
4
  var auth_profile_1 = require("./auth-profile");
4
5
  Object.defineProperty(exports, "AuthProfile", { enumerable: true, get: function () { return auth_profile_1.AuthProfile; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/response",
3
- "version": "0.2.0-next.0",
3
+ "version": "0.2.1-next.0",
4
4
  "description": "Contains object to do validation of response objects at time of invocation",
5
5
  "main": "out/index.js",
6
6
  "license": "UNLICENSED",
@@ -10,6 +10,6 @@
10
10
  "clean": "rm -rf ./out && rm -f tsconfig.tsbuildinfo"
11
11
  },
12
12
  "dependencies": {
13
- "tslib": "^1.11.0"
13
+ "tslib": "^2.6.0"
14
14
  }
15
15
  }