chore: frontend build
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-10-27 15:27:26 +05:45
parent 48e089d3c8
commit eba9e5f182
145 changed files with 10451 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
import { q as queryParams } from "./index-CY6fYws-.js";
const store = (options) => ({
url: store.url(options),
method: "post"
});
store.definition = {
methods: ["post"],
url: "/user/confirm-password"
};
store.url = (options) => {
return store.definition.url + queryParams(options);
};
store.post = (options) => ({
url: store.url(options),
method: "post"
});
const storeForm = (options) => ({
action: store.url(options),
method: "post"
});
storeForm.post = (options) => ({
action: store.url(options),
method: "post"
});
store.form = storeForm;
const confirm = {
store: Object.assign(store, store)
};
export {
confirm as c,
store as s
};