@openfort/openfort-node 0.6.76 → 0.6.78
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 +12 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.78
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#35](https://github.com/openfort-xyz/openfort-node/pull/35) [`3573158f25ae6f8efa8c9a1c60857d4b1a94604f`](https://github.com/openfort-xyz/openfort-node/commit/3573158f25ae6f8efa8c9a1c60857d4b1a94604f) Thanks [@jamalavedra](https://github.com/jamalavedra)! - fix verify
|
|
8
|
+
|
|
9
|
+
## 0.6.77
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#33](https://github.com/openfort-xyz/openfort-node/pull/33) [`a2c4f1a991273fc3bda444c3237246513c0eb0e8`](https://github.com/openfort-xyz/openfort-node/commit/a2c4f1a991273fc3bda444c3237246513c0eb0e8) Thanks [@jamalavedra](https://github.com/jamalavedra)! - update basepath
|
|
14
|
+
|
|
3
15
|
## 0.6.76
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -637,7 +637,7 @@ var ServerConfiguration = class {
|
|
|
637
637
|
}
|
|
638
638
|
};
|
|
639
639
|
var server1 = new ServerConfiguration(
|
|
640
|
-
"https://api.openfort.
|
|
640
|
+
"https://api.openfort.io",
|
|
641
641
|
{}
|
|
642
642
|
);
|
|
643
643
|
|
|
@@ -12838,6 +12838,7 @@ var enumsMap = /* @__PURE__ */ new Set([
|
|
|
12838
12838
|
"AssetType",
|
|
12839
12839
|
"AuthMigrationStatus",
|
|
12840
12840
|
"AuthProviderResponse",
|
|
12841
|
+
"AuthenticateOAuthRequestProvider",
|
|
12841
12842
|
"AuthenticationType",
|
|
12842
12843
|
"BasicAuthProvider",
|
|
12843
12844
|
"BasicAuthProviderEMAIL",
|
|
@@ -23136,7 +23137,7 @@ function httpErrorHandler(target) {
|
|
|
23136
23137
|
}
|
|
23137
23138
|
|
|
23138
23139
|
// src/version.ts
|
|
23139
|
-
var VERSION = "0.6.
|
|
23140
|
+
var VERSION = "0.6.78";
|
|
23140
23141
|
var PACKAGE = "@openfort/openfort-node";
|
|
23141
23142
|
|
|
23142
23143
|
// src/utilities/middleware.ts
|