@lwshen/vault-hub-ts-fetch-client 0.20251014.164854 → 0.20251015.155727
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/README.md +2 -2
- package/dist/apis/AuthApi.js +1 -1
- package/package.json +1 -1
- package/src/apis/AuthApi.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @lwshen/vault-hub-ts-fetch-client@0.
|
|
1
|
+
## @lwshen/vault-hub-ts-fetch-client@0.20251015.155727
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @lwshen/vault-hub-ts-fetch-client@0.
|
|
39
|
+
npm install @lwshen/vault-hub-ts-fetch-client@0.20251015.155727 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/dist/apis/AuthApi.js
CHANGED
|
@@ -137,7 +137,7 @@ var AuthApi = /** @class */ (function (_super) {
|
|
|
137
137
|
}
|
|
138
138
|
headerParameters = {};
|
|
139
139
|
return [4 /*yield*/, this.request({
|
|
140
|
-
path: "/auth/
|
|
140
|
+
path: "/api/auth/magic-link/token",
|
|
141
141
|
method: 'GET',
|
|
142
142
|
headers: headerParameters,
|
|
143
143
|
query: queryParameters,
|
package/package.json
CHANGED
package/src/apis/AuthApi.ts
CHANGED
|
@@ -124,7 +124,7 @@ export class AuthApi extends runtime.BaseAPI {
|
|
|
124
124
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
125
125
|
|
|
126
126
|
const response = await this.request({
|
|
127
|
-
path: `/auth/
|
|
127
|
+
path: `/api/auth/magic-link/token`,
|
|
128
128
|
method: 'GET',
|
|
129
129
|
headers: headerParameters,
|
|
130
130
|
query: queryParameters,
|