@fctc/interface-logic 1.9.3 → 1.9.5
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/dist/hooks.js +1002 -127
- package/dist/hooks.mjs +877 -2
- package/dist/services.js +1 -1
- package/dist/services.mjs +1 -1
- package/package.json +1 -1
package/dist/services.js
CHANGED
|
@@ -2698,7 +2698,7 @@ var action_service_default = ActionService;
|
|
|
2698
2698
|
// src/services/auth-service/index.ts
|
|
2699
2699
|
var AuthService = {
|
|
2700
2700
|
async login(body) {
|
|
2701
|
-
const env2 = getEnv()
|
|
2701
|
+
const env2 = getEnv();
|
|
2702
2702
|
const payload = Object.fromEntries(
|
|
2703
2703
|
Object.entries({
|
|
2704
2704
|
username: body.email,
|
package/dist/services.mjs
CHANGED
|
@@ -2654,7 +2654,7 @@ var action_service_default = ActionService;
|
|
|
2654
2654
|
// src/services/auth-service/index.ts
|
|
2655
2655
|
var AuthService = {
|
|
2656
2656
|
async login(body) {
|
|
2657
|
-
const env2 = getEnv()
|
|
2657
|
+
const env2 = getEnv();
|
|
2658
2658
|
const payload = Object.fromEntries(
|
|
2659
2659
|
Object.entries({
|
|
2660
2660
|
username: body.email,
|