web: migrate to @goauthentik/api

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-08-15 21:32:28 +02:00
parent 0344e5d9b3
commit 1d4b941a3b
172 changed files with 183 additions and 172 deletions

View File

@ -1,4 +1,4 @@
import { CoreApi, Group, User } from "authentik-api";
import { CoreApi, Group, User } from "@goauthentik/api";
import { t } from "@lingui/macro";
import { customElement } from "lit-element";
import { html, TemplateResult } from "lit-html";

View File

@ -7,7 +7,7 @@ import "../../elements/forms/DeleteBulkForm";
import "../../elements/buttons/SpinnerButton";
import { TableColumn } from "../../elements/table/Table";
import { PAGE_SIZE } from "../../constants";
import { CoreApi, Group } from "authentik-api";
import { CoreApi, Group } from "@goauthentik/api";
import { DEFAULT_CONFIG } from "../../api/Config";
import "../../elements/forms/ModalForm";
import "./GroupForm";

View File

@ -1,5 +1,5 @@
import { t } from "@lingui/macro";
import { CoreApi, User } from "authentik-api";
import { CoreApi, User } from "@goauthentik/api";
import { customElement, property } from "lit-element";
import { TemplateResult, html } from "lit-html";
import { AKResponse } from "../../api/Client";