@rivascva/dt-idl 1.1.105 → 1.1.106

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.
@@ -22,7 +22,7 @@ func GetAuthMiddleware(accessTokenSecret string) func(http.Handler) http.Handler
22
22
  return func(next http.Handler) http.Handler {
23
23
  return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
24
24
  // check if the request path is a login endpoint
25
- if slices.Contains([]string{"/v1/login", "/v1/login/by-provider"}, r.URL.Path) {
25
+ if slices.Contains([]string{"/v1/auth/login", "/v1/auth/login/by-provider"}, r.URL.Path) {
26
26
  next.ServeHTTP(w, r)
27
27
  return
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.105",
3
+ "version": "1.1.106",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",