@veruna/api-contracts 1.0.12 → 1.0.13
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/build/rest-api.d.ts
CHANGED
package/build/rest-api.js
CHANGED
|
@@ -27,7 +27,7 @@ exports.REST_API = {
|
|
|
27
27
|
},
|
|
28
28
|
// Unregistered Users
|
|
29
29
|
UNREG: {
|
|
30
|
-
AUTHENTICATE: `${exports.ROOT}/${controllers_1.UNREG_USERS_CONTROLLER}
|
|
30
|
+
AUTHENTICATE: `${exports.ROOT}/${controllers_1.UNREG_USERS_CONTROLLER}/${routes_1.UNREG_USERS_ROUTES.AUTHENTICATE}`,
|
|
31
31
|
},
|
|
32
32
|
// Blog module
|
|
33
33
|
BLOG: {
|
|
@@ -17,7 +17,7 @@ export declare namespace UnregAuthenticateCommand {
|
|
|
17
17
|
nextResetAt: z.ZodString;
|
|
18
18
|
status: z.ZodEnum<typeof import("../schemas").UnregUserStatus>;
|
|
19
19
|
}, z.core.$strip>;
|
|
20
|
-
const URL:
|
|
20
|
+
const URL: "/api/v1/unreg/";
|
|
21
21
|
const METHOD = HttpMethod.PUT;
|
|
22
22
|
type RequestType = z.infer<typeof Request>;
|
|
23
23
|
type ResponseType = z.infer<typeof Response>;
|