From 71a16296c52d2e99aba4e1aa260f8b9b2016862c Mon Sep 17 00:00:00 2001 From: Qlik OSS Build Bot <31236930+qlikossbuild@users.noreply.github.com> Date: Wed, 15 Jan 2025 09:18:01 +0100 Subject: [PATCH] feat: qlik api updates (#109) Co-authored-by: qlikossbuild --- api-keys.js | 4 ++-- apps.js | 4 ++-- audits.d.ts | 26 ++++++++++++++++++++++++-- audits.js | 4 ++-- auth.js | 4 ++-- automations.js | 4 ++-- brands.js | 4 ++-- chunks/{B3EYJS4U.js => 4K3CNR7C.js} | 2 +- chunks/{PEDWO7JX.js => 55SZVSAG.js} | 2 +- chunks/{HV7PYNSV.js => EOGHK2R4.js} | 2 +- chunks/{QPEGXH22.js => V3TZ54UE.js} | 6 +++--- chunks/{N6IJFSV7.js => WY7IOA3Q.js} | 2 +- collections.js | 4 ++-- csp-origins.js | 4 ++-- data-assets.js | 4 ++-- data-connections.js | 4 ++-- data-credentials.js | 4 ++-- data-files.js | 4 ++-- docs/authentication.md | 2 +- extensions.js | 4 ++-- glossaries.js | 4 ++-- groups.js | 4 ++-- identity-providers.js | 4 ++-- index.js | 8 ++++---- items.js | 4 ++-- licenses.js | 4 ++-- qix.js | 4 ++-- quotas.js | 4 ++-- reload-tasks.js | 4 ++-- reloads.js | 4 ++-- reports.js | 4 ++-- roles.js | 4 ++-- spaces.js | 4 ++-- temp-contents.js | 4 ++-- tenants.js | 4 ++-- themes.js | 4 ++-- transports.js | 4 ++-- users.d.ts | 4 ++-- users.js | 4 ++-- web-integrations.js | 4 ++-- web-notifications.js | 4 ++-- webhooks.js | 4 ++-- 42 files changed, 104 insertions(+), 82 deletions(-) rename chunks/{B3EYJS4U.js => 4K3CNR7C.js} (97%) rename chunks/{PEDWO7JX.js => 55SZVSAG.js} (98%) rename chunks/{HV7PYNSV.js => EOGHK2R4.js} (96%) rename chunks/{QPEGXH22.js => V3TZ54UE.js} (79%) rename chunks/{N6IJFSV7.js => WY7IOA3Q.js} (96%) diff --git a/api-keys.js b/api-keys.js index 9dcee36..e2a7be2 100644 --- a/api-keys.js +++ b/api-keys.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/api-keys.ts diff --git a/apps.js b/apps.js index 36fc4d5..2b6bb30 100644 --- a/apps.js +++ b/apps.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/apps.ts diff --git a/audits.d.ts b/audits.d.ts index 25fa27f..e7a0f06 100644 --- a/audits.d.ts +++ b/audits.d.ts @@ -1,6 +1,28 @@ import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js'; import './auth-types-PkN9CAF_.js'; +type ArchiveItem = { + /** The type that content is encoded in, always "application/json". */ + contentType?: string; + /** Additional information about the event's details. The structure depends on the type and version of the event. */ + data?: unknown; + /** The event's unique identifier. */ + eventId?: string; + /** The RFC3339 datetime when the event happened. */ + eventTime?: string; + /** The type of event that describes committed action. */ + eventType?: string; + /** The version of the event type. */ + eventTypeVersion?: string; + /** The availability of the properties depends on the event and the context it was triggered in. */ + extensions?: EventExtensions; + /** The source of the event message, usually the producing service. */ + source?: string; + /** The ID of the tenant that owns the item. This is populated using the JWT. */ + tenantId?: string; + /** The ID of the user who performed the action that triggered the event. */ + userId?: string; +}; type ErrorResponse = { errors?: { code?: string; @@ -31,7 +53,7 @@ type EventExtensions = { }; type GetArchiveResult = { /** List of archived events. The structure of the events depend on their type and version. */ - data?: unknown[]; + data?: ArchiveItem[]; }; type GetByIDResult = { /** The type that content is encoded in, always "application/json". */ @@ -269,4 +291,4 @@ interface AuditsAPI { */ declare const auditsExport: AuditsAPI; -export { type AuditsAPI, type ErrorResponse, type EventExtensions, type GetArchiveResult, type GetArchivedAuditsHttpError, type GetArchivedAuditsHttpResponse, type GetAuditHttpError, type GetAuditHttpResponse, type GetAuditSourcesHttpError, type GetAuditSourcesHttpResponse, type GetAuditTypesHttpError, type GetAuditTypesHttpResponse, type GetAuditsHttpError, type GetAuditsHttpResponse, type GetAuditsSettingsHttpError, type GetAuditsSettingsHttpResponse, type GetByIDResult, type GetLinks, type GetObjectsResult, type GetResult, type GetSettingsResult, type Href, type ListLinks, clearCache, auditsExport as default, getArchivedAudits, getAudit, getAuditSources, getAuditTypes, getAudits, getAuditsSettings }; +export { type ArchiveItem, type AuditsAPI, type ErrorResponse, type EventExtensions, type GetArchiveResult, type GetArchivedAuditsHttpError, type GetArchivedAuditsHttpResponse, type GetAuditHttpError, type GetAuditHttpResponse, type GetAuditSourcesHttpError, type GetAuditSourcesHttpResponse, type GetAuditTypesHttpError, type GetAuditTypesHttpResponse, type GetAuditsHttpError, type GetAuditsHttpResponse, type GetAuditsSettingsHttpError, type GetAuditsSettingsHttpResponse, type GetByIDResult, type GetLinks, type GetObjectsResult, type GetResult, type GetSettingsResult, type Href, type ListLinks, clearCache, auditsExport as default, getArchivedAudits, getAudit, getAuditSources, getAuditTypes, getAudits, getAuditsSettings }; diff --git a/audits.js b/audits.js index acddd37..3308a03 100644 --- a/audits.js +++ b/audits.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/audits.ts diff --git a/auth.js b/auth.js index 492ecc2..e622291 100644 --- a/auth.js +++ b/auth.js @@ -4,8 +4,8 @@ import { logout, registerAuthModule, setDefaultHostConfig -} from "./chunks/HV7PYNSV.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/EOGHK2R4.js"; +import "./chunks/V3TZ54UE.js"; export { auth_default as default, getAccessToken, diff --git a/automations.js b/automations.js index f24b9c3..f62d837 100644 --- a/automations.js +++ b/automations.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/automations.ts diff --git a/brands.js b/brands.js index 3a01ce1..16fafbe 100644 --- a/brands.js +++ b/brands.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/brands.ts diff --git a/chunks/B3EYJS4U.js b/chunks/4K3CNR7C.js similarity index 97% rename from chunks/B3EYJS4U.js rename to chunks/4K3CNR7C.js index ff579ed..1f8c2ee 100644 --- a/chunks/B3EYJS4U.js +++ b/chunks/4K3CNR7C.js @@ -1,4 +1,4 @@ -// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.15/node_modules/@qlik/runtime-module-loader/dist/index.js +// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.16/node_modules/@qlik/runtime-module-loader/dist/index.js window.__qlikMainPrivateResolvers = window.__qlikMainPrivateResolvers || {}; window.__qlikMainPrivateResolvers.mainUrlPromise = window.__qlikMainPrivateResolvers.mainUrlPromise || new Promise((resolve) => { window.__qlikMainPrivateResolvers.resolveMainJsUrl = (value) => resolve(value); diff --git a/chunks/PEDWO7JX.js b/chunks/55SZVSAG.js similarity index 98% rename from chunks/PEDWO7JX.js rename to chunks/55SZVSAG.js index 074d3ce..0a79755 100644 --- a/chunks/PEDWO7JX.js +++ b/chunks/55SZVSAG.js @@ -1,6 +1,6 @@ import { getQixRuntimeModule -} from "./QPEGXH22.js"; +} from "./V3TZ54UE.js"; // src/public/qix.ts function openAppSession(appSessionProps) { diff --git a/chunks/HV7PYNSV.js b/chunks/EOGHK2R4.js similarity index 96% rename from chunks/HV7PYNSV.js rename to chunks/EOGHK2R4.js index 9c8c862..7c8ad3e 100644 --- a/chunks/HV7PYNSV.js +++ b/chunks/EOGHK2R4.js @@ -1,6 +1,6 @@ import { getAuthRuntimeModule -} from "./QPEGXH22.js"; +} from "./V3TZ54UE.js"; // src/public/auth.ts function registerAuthModule(name, authModule) { diff --git a/chunks/QPEGXH22.js b/chunks/V3TZ54UE.js similarity index 79% rename from chunks/QPEGXH22.js rename to chunks/V3TZ54UE.js index e1f1c16..125ce95 100644 --- a/chunks/QPEGXH22.js +++ b/chunks/V3TZ54UE.js @@ -1,21 +1,21 @@ // src/public/public-runtime-modules.ts function getAuthRuntimeModule(hostConfig) { const isNode = !!globalThis.process?.argv; - return isNode ? import("./4D5NADHK.js") : import("./B3EYJS4U.js").then( + return isNode ? import("./4D5NADHK.js") : import("./4K3CNR7C.js").then( (mod) => mod.importRuntimeModule("auth@v1", hostConfig) ); } async function getQixRuntimeModule(hostConfig) { await getAuthRuntimeModule(hostConfig); const isNode = !!globalThis.process?.argv; - return isNode ? import("./MGXEGSJC.js") : import("./B3EYJS4U.js").then( + return isNode ? import("./MGXEGSJC.js") : import("./4K3CNR7C.js").then( (mod) => mod.importRuntimeModule("qix@v1", hostConfig) ); } async function getInvokeFetchRuntimeModule(hostConfig) { await getAuthRuntimeModule(hostConfig); const isNode = !!globalThis.process?.argv; - return isNode ? import("./2BRBIRM2.js") : import("./B3EYJS4U.js").then( + return isNode ? import("./2BRBIRM2.js") : import("./4K3CNR7C.js").then( (mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig) ); } diff --git a/chunks/N6IJFSV7.js b/chunks/WY7IOA3Q.js similarity index 96% rename from chunks/N6IJFSV7.js rename to chunks/WY7IOA3Q.js index d331d7f..48f85a9 100644 --- a/chunks/N6IJFSV7.js +++ b/chunks/WY7IOA3Q.js @@ -1,6 +1,6 @@ import { getInvokeFetchRuntimeModule -} from "./QPEGXH22.js"; +} from "./V3TZ54UE.js"; import { isBrowser } from "./2ZQ3ZX7F.js"; diff --git a/collections.js b/collections.js index fc25c87..9936d97 100644 --- a/collections.js +++ b/collections.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/collections.ts diff --git a/csp-origins.js b/csp-origins.js index 96fd98f..08876b2 100644 --- a/csp-origins.js +++ b/csp-origins.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/csp-origins.ts diff --git a/data-assets.js b/data-assets.js index 5bad00e..2f378b0 100644 --- a/data-assets.js +++ b/data-assets.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/data-assets.ts diff --git a/data-connections.js b/data-connections.js index f038f17..bc34a81 100644 --- a/data-connections.js +++ b/data-connections.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/data-connections.ts diff --git a/data-credentials.js b/data-credentials.js index 99c4689..a7bdc0f 100644 --- a/data-credentials.js +++ b/data-credentials.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/data-credentials.ts diff --git a/data-files.js b/data-files.js index 177f377..a421815 100644 --- a/data-files.js +++ b/data-files.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/data-files.ts diff --git a/docs/authentication.md b/docs/authentication.md index 32a9885..bb158e7 100644 --- a/docs/authentication.md +++ b/docs/authentication.md @@ -52,7 +52,7 @@ As an alternative to the methods above it is also possible to create an instance Example: ```ts -import { createQlikApi } from "@qlik-trial/qmfe-api"; +import { createQlikApi } from "@qlik/api"; const api = createQlikApi({ authType: "apikey" diff --git a/extensions.js b/extensions.js index 27d37cf..b0b479c 100644 --- a/extensions.js +++ b/extensions.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/extensions.ts diff --git a/glossaries.js b/glossaries.js index 7ef37e7..4ace3cb 100644 --- a/glossaries.js +++ b/glossaries.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/glossaries.ts diff --git a/groups.js b/groups.js index 6538bc4..ab834be 100644 --- a/groups.js +++ b/groups.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/groups.ts diff --git a/identity-providers.js b/identity-providers.js index c4e167d..ba65ec8 100644 --- a/identity-providers.js +++ b/identity-providers.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/identity-providers.ts diff --git a/index.js b/index.js index f6f503a..fbdf439 100644 --- a/index.js +++ b/index.js @@ -1,17 +1,17 @@ import { qix_default -} from "./chunks/PEDWO7JX.js"; +} from "./chunks/55SZVSAG.js"; import { auth_default -} from "./chunks/HV7PYNSV.js"; +} from "./chunks/EOGHK2R4.js"; import { interceptors_default } from "./chunks/3RGGGGAR.js"; import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/runtime-api-generator/runtime-api-generator-common.ts diff --git a/items.js b/items.js index f48d915..b95c9be 100644 --- a/items.js +++ b/items.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/items.ts diff --git a/licenses.js b/licenses.js index bd5e6b7..9b778f6 100644 --- a/licenses.js +++ b/licenses.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/licenses.ts diff --git a/qix.js b/qix.js index e7379c3..98a67bd 100644 --- a/qix.js +++ b/qix.js @@ -2,8 +2,8 @@ import { openAppSession, qix_default, withHostConfig -} from "./chunks/PEDWO7JX.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/55SZVSAG.js"; +import "./chunks/V3TZ54UE.js"; export { qix_default as default, openAppSession, diff --git a/quotas.js b/quotas.js index a730d88..07d2f9d 100644 --- a/quotas.js +++ b/quotas.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/quotas.ts diff --git a/reload-tasks.js b/reload-tasks.js index 96abdec..f52f65b 100644 --- a/reload-tasks.js +++ b/reload-tasks.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/reload-tasks.ts diff --git a/reloads.js b/reloads.js index 8bec57c..4fa209a 100644 --- a/reloads.js +++ b/reloads.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/reloads.ts diff --git a/reports.js b/reports.js index 32f4196..4ed974c 100644 --- a/reports.js +++ b/reports.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/reports.ts diff --git a/roles.js b/roles.js index 2d399cc..0cbae81 100644 --- a/roles.js +++ b/roles.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/roles.ts diff --git a/spaces.js b/spaces.js index 675f6cc..f0bea96 100644 --- a/spaces.js +++ b/spaces.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/spaces.ts diff --git a/temp-contents.js b/temp-contents.js index e347096..bd9f8eb 100644 --- a/temp-contents.js +++ b/temp-contents.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/temp-contents.ts diff --git a/tenants.js b/tenants.js index 3b6c4cf..22de719 100644 --- a/tenants.js +++ b/tenants.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/tenants.ts diff --git a/themes.js b/themes.js index 86b4026..8559edc 100644 --- a/themes.js +++ b/themes.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/themes.ts diff --git a/transports.js b/transports.js index 3e5964e..fd2149b 100644 --- a/transports.js +++ b/transports.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/transports.ts diff --git a/users.d.ts b/users.d.ts index e7e631a..2256d03 100644 --- a/users.d.ts +++ b/users.d.ts @@ -127,8 +127,8 @@ type InviteRequestData = { * A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902. */ type JSONPatch = { - /** The operation to be performed. The fields `set`, `unset`, and `add` are deprecated. */ - op: "replace" | "set" | "unset" | "add" | "renew"; + /** The operation to be performed. The fields `set` and `unset` are deprecated. */ + op: "replace" | "set" | "unset" | "add" | "renew" | "remove-value"; /** A JSON Pointer. The field `roles` is deprecated. */ path: "/name" | "/roles" | "/assignedRoles" | "/inviteExpiry" | "/preferredZoneinfo" | "/preferredLocale" | "/status" | "/assignedGroups"; /** The value to be used for this operation. */ diff --git a/users.js b/users.js index 6d27f67..42b8e59 100644 --- a/users.js +++ b/users.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/users.ts diff --git a/web-integrations.js b/web-integrations.js index 989fb42..843c12c 100644 --- a/web-integrations.js +++ b/web-integrations.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/web-integrations.ts diff --git a/web-notifications.js b/web-notifications.js index 7632a16..3c2c003 100644 --- a/web-notifications.js +++ b/web-notifications.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/web-notifications.ts diff --git a/webhooks.js b/webhooks.js index dcbd379..1c5aa8b 100644 --- a/webhooks.js +++ b/webhooks.js @@ -1,8 +1,8 @@ import { clearApiCache, invokeFetch -} from "./chunks/N6IJFSV7.js"; -import "./chunks/QPEGXH22.js"; +} from "./chunks/WY7IOA3Q.js"; +import "./chunks/V3TZ54UE.js"; import "./chunks/2ZQ3ZX7F.js"; // src/public/rest/webhooks.ts