@lambda-development/erp-core 0.1.13 → 0.1.14
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/api/client.d.ts +3 -0
- package/dist/i18n/locales/de.json.d.ts +6 -1
- package/dist/i18n/locales/en.json.d.ts +6 -1
- package/dist/i18n/locales/fr.json.d.ts +6 -1
- package/dist/index.js +1390 -1320
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/api/client.d.ts
CHANGED
|
@@ -210,6 +210,8 @@ export declare const api: {
|
|
|
210
210
|
importOutstandingInvoices: (data: any) => Promise<any>;
|
|
211
211
|
authSetupStatus: () => Promise<{
|
|
212
212
|
has_users: boolean;
|
|
213
|
+
first_run: boolean;
|
|
214
|
+
public_signup: boolean;
|
|
213
215
|
registration_open: boolean;
|
|
214
216
|
}>;
|
|
215
217
|
authRegister: (data: {
|
|
@@ -226,6 +228,7 @@ export declare const api: {
|
|
|
226
228
|
authChangeRole: (userName: string, role: string) => Promise<any>;
|
|
227
229
|
authDisableUser: (userName: string) => Promise<any>;
|
|
228
230
|
authListInvites: () => Promise<any[]>;
|
|
231
|
+
authRevokeInvite: (token: string) => Promise<any>;
|
|
229
232
|
getPublicManagerStatus: () => Promise<{
|
|
230
233
|
active: boolean;
|
|
231
234
|
user?: any;
|
|
@@ -147,6 +147,7 @@ declare const _default: {
|
|
|
147
147
|
"browsingBody": "Starten Sie eine neue Chat-Sitzung und sehen Sie sich die Live-Demo an.",
|
|
148
148
|
"enterDemo": "Live-Demo starten",
|
|
149
149
|
"haveInvite": "Haben Sie eine Einladung?",
|
|
150
|
+
"noAccountPrompt": "Noch kein Konto?",
|
|
150
151
|
"registerLink": "Registrieren",
|
|
151
152
|
"alreadyHaveAccount": "Haben Sie bereits ein Konto?",
|
|
152
153
|
"signInLink": "Anmelden",
|
|
@@ -163,6 +164,10 @@ declare const _default: {
|
|
|
163
164
|
"openingBody": "Auf der Seite Eröffnungsbilanzen können Kontensalden, Lagerbestände und offene Rechnungen aus einem früheren System importiert werden.",
|
|
164
165
|
"openingEnabled": "Derzeit aktiviert — erreichbar unter Einführung > Eröffnungsbilanzen.",
|
|
165
166
|
"openingDisabled": "Derzeit deaktiviert — die Seite ist in der Seitenleiste ausgeblendet.",
|
|
167
|
+
"signupTitle": "Öffentliche Registrierung",
|
|
168
|
+
"signupBody": "Erlauben Sie es jedem, ohne Einladung ein eigenes Konto (als Betrachter) zu erstellen. Wenn deaktiviert, können neue Benutzer nur über einen Einladungslink beitreten.",
|
|
169
|
+
"signupEnabled": "Derzeit aktiviert — jeder mit der URL kann sich als Betrachter registrieren.",
|
|
170
|
+
"signupDisabled": "Derzeit deaktiviert — die Registrierung erfolgt nur per Einladung.",
|
|
166
171
|
"publicTitle": "Öffentlicher Zugriff (Demomodus)",
|
|
167
172
|
"publicActive": "Aktiv",
|
|
168
173
|
"publicActiveBody": "Der öffentliche Zugriff ist aktiviert. Jeder kann die Anwendung ohne Anmeldung nutzen. Alle Besucher erhalten Manager-Rechte.",
|
|
@@ -173,7 +178,7 @@ declare const _default: {
|
|
|
173
178
|
"enableWarning": "Dadurch kann jeder ohne Anmeldung auf die Anwendung zugreifen. Besucher können Dokumente erstellen, bearbeiten und buchen. Ihr Administratorkonto erfordert weiterhin eine Anmeldung.",
|
|
174
179
|
"yesEnable": "Ja, aktivieren",
|
|
175
180
|
"enabling": "Wird aktiviert...",
|
|
176
|
-
"
|
|
181
|
+
"tokenSpendTitle": "Token-Ausgaben"
|
|
177
182
|
},
|
|
178
183
|
"status": {
|
|
179
184
|
"Draft": "Entwurf",
|
|
@@ -207,6 +207,7 @@ declare const _default: {
|
|
|
207
207
|
"browsingBody": "Start a fresh chat session and watch the live demo.",
|
|
208
208
|
"enterDemo": "Enter Live Demo",
|
|
209
209
|
"haveInvite": "Have an invite?",
|
|
210
|
+
"noAccountPrompt": "Need an account?",
|
|
210
211
|
"registerLink": "Register",
|
|
211
212
|
"alreadyHaveAccount": "Already have an account?",
|
|
212
213
|
"signInLink": "Sign in",
|
|
@@ -223,6 +224,10 @@ declare const _default: {
|
|
|
223
224
|
"openingBody": "The Opening Balances page allows importing account balances, stock, and outstanding invoices from a previous system.",
|
|
224
225
|
"openingEnabled": "Currently enabled — accessible under Introduction > Opening Balances.",
|
|
225
226
|
"openingDisabled": "Currently disabled — the page is hidden from the sidebar.",
|
|
227
|
+
"signupTitle": "Public Signup",
|
|
228
|
+
"signupBody": "Allow anyone to create their own account (as a viewer) without an invite. When off, new users can only join via an invite link.",
|
|
229
|
+
"signupEnabled": "Currently enabled — anyone with the URL can register as a viewer.",
|
|
230
|
+
"signupDisabled": "Currently disabled — registration is invite-only.",
|
|
226
231
|
"publicTitle": "Public Access (Demo Mode)",
|
|
227
232
|
"publicActive": "Active",
|
|
228
233
|
"publicActiveBody": "Public access is enabled. Anyone can use the application without logging in. All visitors get manager-level permissions.",
|
|
@@ -233,7 +238,7 @@ declare const _default: {
|
|
|
233
238
|
"enableWarning": "This will allow anyone to access the application without logging in. They will be able to create, edit, and submit documents. Your admin account still requires login.",
|
|
234
239
|
"yesEnable": "Yes, Enable",
|
|
235
240
|
"enabling": "Enabling...",
|
|
236
|
-
"
|
|
241
|
+
"tokenSpendTitle": "Token Spend"
|
|
237
242
|
},
|
|
238
243
|
"status": {
|
|
239
244
|
"Draft": "Draft",
|
|
@@ -147,6 +147,7 @@ declare const _default: {
|
|
|
147
147
|
"browsingBody": "Démarrez une nouvelle session de chat et regardez la démo en direct.",
|
|
148
148
|
"enterDemo": "Lancer la démo",
|
|
149
149
|
"haveInvite": "Vous avez une invitation ?",
|
|
150
|
+
"noAccountPrompt": "Besoin d'un compte ?",
|
|
150
151
|
"registerLink": "S'inscrire",
|
|
151
152
|
"alreadyHaveAccount": "Vous avez déjà un compte ?",
|
|
152
153
|
"signInLink": "Se connecter",
|
|
@@ -163,6 +164,10 @@ declare const _default: {
|
|
|
163
164
|
"openingBody": "La page Soldes d'ouverture permet d'importer les soldes des comptes, le stock et les factures impayées d'un système précédent.",
|
|
164
165
|
"openingEnabled": "Actuellement activé — accessible sous Introduction > Soldes d'ouverture.",
|
|
165
166
|
"openingDisabled": "Actuellement désactivé — la page est masquée dans la barre latérale.",
|
|
167
|
+
"signupTitle": "Inscription publique",
|
|
168
|
+
"signupBody": "Permettre à quiconque de créer son propre compte (en tant que lecteur) sans invitation. Lorsque désactivé, les nouveaux utilisateurs ne peuvent rejoindre que via un lien d'invitation.",
|
|
169
|
+
"signupEnabled": "Actuellement activé — toute personne disposant de l'URL peut s'inscrire en tant que lecteur.",
|
|
170
|
+
"signupDisabled": "Actuellement désactivé — l'inscription se fait uniquement sur invitation.",
|
|
166
171
|
"publicTitle": "Accès public (mode démo)",
|
|
167
172
|
"publicActive": "Actif",
|
|
168
173
|
"publicActiveBody": "L'accès public est activé. N'importe qui peut utiliser l'application sans se connecter. Tous les visiteurs obtiennent des autorisations de niveau gestionnaire.",
|
|
@@ -173,7 +178,7 @@ declare const _default: {
|
|
|
173
178
|
"enableWarning": "Cela permettra à quiconque d'accéder à l'application sans se connecter. Ils pourront créer, modifier et valider des documents. Votre compte administrateur nécessite toujours une connexion.",
|
|
174
179
|
"yesEnable": "Oui, activer",
|
|
175
180
|
"enabling": "Activation...",
|
|
176
|
-
"
|
|
181
|
+
"tokenSpendTitle": "Dépenses de jetons"
|
|
177
182
|
},
|
|
178
183
|
"status": {
|
|
179
184
|
"Draft": "Brouillon",
|