@qlik/api 0.2.0 → 0.3.0
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/api-keys.d.ts +2 -2
- package/api-keys.js +2 -2
- package/apps.d.ts +6 -2
- package/apps.js +2 -2
- package/audits.d.ts +2 -2
- package/audits.js +2 -2
- package/auth.d.ts +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +2 -2
- package/automations.js +2 -2
- package/brands.d.ts +2 -2
- package/brands.js +2 -2
- package/chunks/{TDKU6D4Z.js → A4LOH2NH.js} +3 -3
- package/chunks/{OPRGGO4C.js → KXPK2IU2.js} +1 -1
- package/chunks/{QOUQIYWW.js → OYCPZDC3.js} +1 -1
- package/chunks/{ZT55IZXB.js → STRQVY4L.js} +1 -1
- package/chunks/{F36DZZYS.js → W4FHGR6Z.js} +1 -1
- package/collections.d.ts +2 -2
- package/collections.js +2 -2
- package/csp-origins.d.ts +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +2 -2
- package/data-assets.js +2 -2
- package/data-connections.d.ts +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +2 -2
- package/data-credentials.js +2 -2
- package/data-files.d.ts +2 -2
- package/data-files.js +2 -2
- package/extensions.d.ts +2 -2
- package/extensions.js +2 -2
- package/{global.types-B14bb3X9.d.ts → global.types-CMQsAHYd.d.ts} +1 -1
- package/glossaries.d.ts +2 -2
- package/glossaries.js +2 -2
- package/groups.d.ts +2 -2
- package/groups.js +2 -2
- package/identity-providers.d.ts +2 -2
- package/identity-providers.js +2 -2
- package/index.d.ts +2 -2
- package/index.js +4 -4
- package/items.d.ts +2 -2
- package/items.js +2 -2
- package/licenses.d.ts +4 -6
- package/licenses.js +2 -2
- package/package.json +6 -5
- package/qix.d.ts +18 -4
- package/qix.js +2 -2
- package/quotas.d.ts +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +2 -2
- package/reloads.js +2 -2
- package/roles.d.ts +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +2 -2
- package/spaces.js +2 -2
- package/temp-contents.d.ts +2 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +2 -2
- package/tenants.js +2 -2
- package/themes.d.ts +2 -2
- package/themes.js +2 -2
- package/transports.d.ts +34 -10
- package/transports.js +2 -2
- package/users.d.ts +2 -2
- package/users.js +2 -2
- package/web-integrations.d.ts +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +2 -2
- package/webhooks.js +2 -2
- /package/{auth-types-1P4wuncR.d.ts → auth-types-Bqw3vbLs.d.ts} +0 -0
package/api-keys.d.ts
CHANGED
package/api-keys.js
CHANGED
package/apps.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions, D as DownloadableBlob } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions, D as DownloadableBlob } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type Analysis = "breakdown" | "changePoint" | "comparison" | "contribution" | "correlation" | "fact" | "mutualInfo" | "rank" | "spike" | "trend" | "values";
|
|
5
5
|
type AnalysisComposition = {
|
|
@@ -562,7 +562,11 @@ type JsonObject = unknown;
|
|
|
562
562
|
type LastReloadMetadata = {
|
|
563
563
|
/** Number of CPU milliseconds it took to reload the app. */
|
|
564
564
|
cpu_time_spent_ms?: number;
|
|
565
|
+
/** Maximum number of bytes used during full reload of the app. */
|
|
566
|
+
fullReloadPeakMemoryBytes?: number;
|
|
565
567
|
hardware?: HardwareMeta;
|
|
568
|
+
/** Maximum number of bytes used during partial reload of the app. */
|
|
569
|
+
partialReloadPeakMemoryBytes?: number;
|
|
566
570
|
/** Maximum number of bytes used during reload of the app. */
|
|
567
571
|
peak_memory_bytes?: number;
|
|
568
572
|
};
|
package/apps.js
CHANGED
package/audits.d.ts
CHANGED
package/audits.js
CHANGED
package/auth.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AuthType, a as AuthModule, H as HostConfig } from './auth-types-
|
|
2
|
-
export { g as AuthenticationErrorAction, C as Credentials, e as GetRemoteAuthDataProps, G as GetRestCallAuthParamsProps, c as GetWebResourceAuthParamsProps, b as GetWebSocketAuthParamsProps, f as HandleAuthenticationErrorProps, R as RestCallAuthParams, d as WebResourceAuthParams, W as WebSocketAuthParams } from './auth-types-
|
|
1
|
+
import { A as AuthType, a as AuthModule, H as HostConfig } from './auth-types-Bqw3vbLs.js';
|
|
2
|
+
export { g as AuthenticationErrorAction, C as Credentials, e as GetRemoteAuthDataProps, G as GetRestCallAuthParamsProps, c as GetWebResourceAuthParamsProps, b as GetWebSocketAuthParamsProps, f as HandleAuthenticationErrorProps, R as RestCallAuthParams, d as WebResourceAuthParams, W as WebSocketAuthParams } from './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Registers an auth module that can handle authentication. An auth module is used by specifying its name as authType in the HostConfig passed in to api calls.
|
package/auth.js
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
logout,
|
|
5
5
|
registerAuthModule,
|
|
6
6
|
setDefaultHostConfig
|
|
7
|
-
} from "./chunks/
|
|
8
|
-
import "./chunks/
|
|
7
|
+
} from "./chunks/W4FHGR6Z.js";
|
|
8
|
+
import "./chunks/A4LOH2NH.js";
|
|
9
9
|
import "./chunks/4HB3TAEO.js";
|
|
10
10
|
export {
|
|
11
11
|
auth_default as default,
|
package/automations.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type AutomationDetailRequestObject = {
|
|
5
5
|
description?: string;
|
package/automations.js
CHANGED
package/brands.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions, D as DownloadableBlob } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions, D as DownloadableBlob } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* A brand is a collection of assets for applying custom branding. Only a single brand can be active in a tenant.
|
package/brands.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
// src/public/public-runtime-modules.ts
|
|
2
2
|
function getAuthRuntimeModule(hostConfig) {
|
|
3
3
|
const isNode = !!globalThis.process?.argv;
|
|
4
|
-
return isNode ? import("./H46323PG.js") : import("./
|
|
4
|
+
return isNode ? import("./H46323PG.js") : import("./KXPK2IU2.js").then((mod) => mod.importRuntimeModule("auth@v1", hostConfig));
|
|
5
5
|
}
|
|
6
6
|
async function getQixRuntimeModule(hostConfig) {
|
|
7
7
|
await getAuthRuntimeModule(hostConfig);
|
|
8
8
|
const isNode = !!globalThis.process?.argv;
|
|
9
|
-
return isNode ? import("./VVREBIN2.js") : import("./
|
|
9
|
+
return isNode ? import("./VVREBIN2.js") : import("./KXPK2IU2.js").then((mod) => mod.importRuntimeModule("qix@v1", hostConfig));
|
|
10
10
|
}
|
|
11
11
|
async function getInvokeFetchRuntimeModule(hostConfig) {
|
|
12
12
|
await getAuthRuntimeModule(hostConfig);
|
|
13
13
|
const isNode = !!globalThis.process?.argv;
|
|
14
|
-
return isNode ? import("./ZVNQOWQU.js") : import("./
|
|
14
|
+
return isNode ? import("./ZVNQOWQU.js") : import("./KXPK2IU2.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
export {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./4HB3TAEO.js";
|
|
2
2
|
|
|
3
|
-
// node_modules/.pnpm/@qlik+runtime-module-loader@0.2.
|
|
3
|
+
// node_modules/.pnpm/@qlik+runtime-module-loader@0.2.6/node_modules/@qlik/runtime-module-loader/dist/esm/index.js
|
|
4
4
|
window.__qlikMainPrivateResolvers = window.__qlikMainPrivateResolvers || {};
|
|
5
5
|
window.__qlikMainPrivateResolvers.mainUrlPromise = window.__qlikMainPrivateResolvers.mainUrlPromise || new Promise((resolve) => {
|
|
6
6
|
window.__qlikMainPrivateResolvers.resolveMainJsUrl = (value) => resolve(value);
|
package/collections.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type CollectionByIdPatch = {
|
|
5
5
|
/** The operation to be performed. */
|
package/collections.js
CHANGED
package/csp-origins.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type CSPEntry = {
|
|
5
5
|
/** The CSP entry's unique identifier. */
|
package/csp-origins.js
CHANGED
package/data-assets.d.ts
CHANGED
package/data-assets.js
CHANGED
package/data-connections.d.ts
CHANGED
package/data-connections.js
CHANGED
package/data-credentials.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type Credential = {
|
|
5
5
|
/** ID datasource that the credential is created for */
|
package/data-credentials.js
CHANGED
package/data-files.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type BatchChangeSpaceItem = {
|
|
5
5
|
/** The ID of the data file whose space will be changed. */
|
package/data-files.js
CHANGED
package/extensions.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Object containing meta data regarding the bundle the extension belongs to. If it does not belong to a bundle, this object is not defined.
|
package/extensions.js
CHANGED
package/glossaries.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
|
package/glossaries.js
CHANGED
package/groups.d.ts
CHANGED
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type BaseIDP = {
|
|
5
5
|
/** Indicates whether the IdP is available for use. */
|
package/identity-providers.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -30,8 +30,8 @@ import { UsersAPI } from './users.js';
|
|
|
30
30
|
import { WebIntegrationsAPI } from './web-integrations.js';
|
|
31
31
|
import { WebNotificationsAPI } from './web-notifications.js';
|
|
32
32
|
import { WebhooksAPI } from './webhooks.js';
|
|
33
|
-
import './global.types-
|
|
34
|
-
import './auth-types-
|
|
33
|
+
import './global.types-CMQsAHYd.js';
|
|
34
|
+
import './auth-types-Bqw3vbLs.js';
|
|
35
35
|
|
|
36
36
|
declare const apiKeys: ApiKeysAPI;
|
|
37
37
|
declare const apps: AppsAPI;
|
package/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
auth_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/W4FHGR6Z.js";
|
|
4
4
|
import {
|
|
5
5
|
qix_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/STRQVY4L.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/OYCPZDC3.js";
|
|
11
|
+
import "./chunks/A4LOH2NH.js";
|
|
12
12
|
import "./chunks/4HB3TAEO.js";
|
|
13
13
|
|
|
14
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|
package/items.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type CollectionTypes = "private" | "public" | "publicgoverned";
|
|
5
5
|
type ErrorResponseBody = {
|
package/items.js
CHANGED
package/licenses.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type AssignmentsActionsAddRequest = {
|
|
5
5
|
add: {
|
|
@@ -9,7 +9,8 @@ type AssignmentsActionsAddRequest = {
|
|
|
9
9
|
subject: string;
|
|
10
10
|
/** Allotment type */
|
|
11
11
|
type: string;
|
|
12
|
-
/**
|
|
12
|
+
/** @deprecated
|
|
13
|
+
* User ID */
|
|
13
14
|
userId?: string;
|
|
14
15
|
}[];
|
|
15
16
|
};
|
|
@@ -85,9 +86,6 @@ type AssignmentsResponse = {
|
|
|
85
86
|
subject: string;
|
|
86
87
|
/** Allotment type */
|
|
87
88
|
type: string;
|
|
88
|
-
/** @deprecated
|
|
89
|
-
* User ID */
|
|
90
|
-
userId?: string;
|
|
91
89
|
}[];
|
|
92
90
|
links: {
|
|
93
91
|
next?: Href;
|
package/licenses.js
CHANGED
package/package.json
CHANGED
|
@@ -11,12 +11,13 @@
|
|
|
11
11
|
"fs": false
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@qlik/embed-runtime": "^0.
|
|
15
|
-
"@qlik/runtime-module-loader": "^0.2.
|
|
14
|
+
"@qlik/embed-runtime": "^0.7.0",
|
|
15
|
+
"@qlik/runtime-module-loader": "^0.2.6",
|
|
16
|
+
"ajv": "^8.12.0",
|
|
16
17
|
"bufferutil": "^4.0.8",
|
|
17
|
-
"enigma.js": "^2.
|
|
18
|
+
"enigma.js": "^2.14.0",
|
|
18
19
|
"lodash": "^4.17.21",
|
|
19
|
-
"nanoid": "^
|
|
20
|
+
"nanoid": "^5.0.6",
|
|
20
21
|
"ws": "^8.16.0"
|
|
21
22
|
},
|
|
22
23
|
"engines": {
|
|
@@ -57,5 +58,5 @@
|
|
|
57
58
|
"./qix": "./qix.js",
|
|
58
59
|
"./auth": "./auth.js"
|
|
59
60
|
},
|
|
60
|
-
"version": "0.
|
|
61
|
+
"version": "0.3.0"
|
|
61
62
|
}
|
package/qix.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import './global.types-
|
|
2
|
-
import { H as HostConfig } from './auth-types-
|
|
1
|
+
import './global.types-CMQsAHYd.js';
|
|
2
|
+
import { H as HostConfig } from './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
|
-
declare const QIX_SCHEMA_VERSION = "12.
|
|
4
|
+
declare const QIX_SCHEMA_VERSION = "12.2009.0";
|
|
5
5
|
type AlfaNumString = {
|
|
6
6
|
/**
|
|
7
7
|
* Calculated value.
|
|
@@ -597,6 +597,16 @@ type CustomConnector = {
|
|
|
597
597
|
qMachineMode?: GenericConnectMachine;
|
|
598
598
|
qSupportFileStreaming?: boolean;
|
|
599
599
|
};
|
|
600
|
+
type CyclicGroupState = {
|
|
601
|
+
/**
|
|
602
|
+
* Target cyclic group.
|
|
603
|
+
*/
|
|
604
|
+
qInfo?: NxInfo;
|
|
605
|
+
/**
|
|
606
|
+
* Active field of the cyclic group, identified by a zero-based index.
|
|
607
|
+
*/
|
|
608
|
+
qActiveField?: number;
|
|
609
|
+
};
|
|
600
610
|
type DataField = {
|
|
601
611
|
/**
|
|
602
612
|
* Name of the field.
|
|
@@ -3056,6 +3066,10 @@ type NxBookmark = {
|
|
|
3056
3066
|
* Softpatches to be applied with this bookmark.
|
|
3057
3067
|
*/
|
|
3058
3068
|
qPatches?: NxPatches[];
|
|
3069
|
+
/**
|
|
3070
|
+
* Information about cyclic groups.
|
|
3071
|
+
*/
|
|
3072
|
+
qCyclicGroupStates?: CyclicGroupState[];
|
|
3059
3073
|
};
|
|
3060
3074
|
type NxCalcCond = {
|
|
3061
3075
|
/**
|
|
@@ -11626,4 +11640,4 @@ declare const _default: {
|
|
|
11626
11640
|
openAppSession: typeof openAppSession;
|
|
11627
11641
|
};
|
|
11628
11642
|
|
|
11629
|
-
export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, _default as default, openAppSession };
|
|
11643
|
+
export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type CyclicGroupState, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, _default as default, openAppSession };
|
package/qix.js
CHANGED
package/quotas.d.ts
CHANGED
package/quotas.js
CHANGED
package/reload-tasks.d.ts
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type Error = {
|
|
5
5
|
/** The error code is in form of 'RELOADS-xxx'. ranges from 'RELOADS-001' to 'RELOADS-013'. */
|
package/reloads.js
CHANGED
package/roles.d.ts
CHANGED
package/roles.js
CHANGED
package/spaces.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* The supported actions for user-created spaces like Shared or Managed spaces.
|
package/spaces.js
CHANGED
package/temp-contents.d.ts
CHANGED
package/temp-contents.js
CHANGED
package/tenants.d.ts
CHANGED
package/tenants.js
CHANGED
package/themes.d.ts
CHANGED
package/themes.js
CHANGED
package/transports.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type DeleteConfigNotFoundError = {
|
|
5
5
|
errors?: {
|
|
@@ -21,7 +21,7 @@ type ErrorPublic = {
|
|
|
21
21
|
type ErrorsPublic = {
|
|
22
22
|
errors?: ErrorPublic[];
|
|
23
23
|
};
|
|
24
|
-
type
|
|
24
|
+
type SendTestMailConfigNotFoundError = {
|
|
25
25
|
errors?: {
|
|
26
26
|
/** The error code. */
|
|
27
27
|
code: string;
|
|
@@ -29,7 +29,7 @@ type PatchEmailConfigError = {
|
|
|
29
29
|
title: string;
|
|
30
30
|
}[];
|
|
31
31
|
};
|
|
32
|
-
type
|
|
32
|
+
type TenantAdminError = {
|
|
33
33
|
errors?: {
|
|
34
34
|
/** The error code. */
|
|
35
35
|
code: string;
|
|
@@ -37,7 +37,7 @@ type SendTestMailConfigNotFoundError = {
|
|
|
37
37
|
title: string;
|
|
38
38
|
}[];
|
|
39
39
|
};
|
|
40
|
-
type
|
|
40
|
+
type UpdateEmailConfigError = {
|
|
41
41
|
errors?: {
|
|
42
42
|
/** The error code. */
|
|
43
43
|
code: string;
|
|
@@ -72,23 +72,40 @@ type EmailConfigFieldPatch = {
|
|
|
72
72
|
/** The value to be used for this operation. */
|
|
73
73
|
value: string;
|
|
74
74
|
};
|
|
75
|
-
type
|
|
75
|
+
type EmailConfigPatch = EmailConfigFieldPatch[];
|
|
76
|
+
type GetBasicAuthConfig = {
|
|
77
|
+
/** The email address that should appear in From field when sending emails with this account */
|
|
78
|
+
emailAddress?: string;
|
|
79
|
+
/** The selected SMTP security mechanism. Could be either 'none', 'StartTLS' or 'SSL/TLS' */
|
|
80
|
+
securityType?: string;
|
|
81
|
+
/** domain name or IP address of SMTP server */
|
|
82
|
+
serverAddress?: string;
|
|
83
|
+
/** smtp server port */
|
|
84
|
+
serverPort?: number;
|
|
85
|
+
/** user name used for SMTP login */
|
|
86
|
+
username?: string;
|
|
87
|
+
};
|
|
88
|
+
type GetEmailConfig = {
|
|
76
89
|
/** Number of authentication failures */
|
|
77
90
|
authFailures?: number;
|
|
78
91
|
/** used for SMTP authentication */
|
|
79
92
|
emailAddress?: string;
|
|
80
93
|
/** Is the configuration valid */
|
|
81
94
|
isValid?: boolean;
|
|
95
|
+
lastUpdated?: string;
|
|
82
96
|
/** Last modification time. Formatted as a ISO 8601 string. */
|
|
83
97
|
modificationTime?: string;
|
|
84
98
|
/** Indicates if password is defined for this smtp config. The password itself is not returned! */
|
|
85
99
|
passwordExists?: boolean;
|
|
100
|
+
providerConfig?: GetMicrosoft365Config | GetBasicAuthConfig;
|
|
86
101
|
/** one of none, StartTLS or SSL/TLS */
|
|
87
102
|
securityType?: string;
|
|
88
103
|
/** domain name or IP address of SMTP server */
|
|
89
104
|
serverAddress?: string;
|
|
90
105
|
/** smtp server listening port */
|
|
91
106
|
serverPort?: number;
|
|
107
|
+
/** Name of the service provider for authentication */
|
|
108
|
+
serviceProvider?: "Microsoft365" | "BasicAuth";
|
|
92
109
|
/** Contains statusCode and statusReason */
|
|
93
110
|
status?: SmtpConfigStatus;
|
|
94
111
|
/** The tenant Id */
|
|
@@ -96,7 +113,14 @@ type EmailConfigGet = {
|
|
|
96
113
|
/** user name */
|
|
97
114
|
username?: string;
|
|
98
115
|
};
|
|
99
|
-
type
|
|
116
|
+
type GetMicrosoft365Config = {
|
|
117
|
+
/** Microsoft365 client identifier */
|
|
118
|
+
clientId?: string;
|
|
119
|
+
/** The email address that should appear in From field when sending emails with this account */
|
|
120
|
+
emailAddress?: string;
|
|
121
|
+
/** Microsoft365 tenant identifier */
|
|
122
|
+
providerTenantId?: string;
|
|
123
|
+
};
|
|
100
124
|
type SmtpCheck = {
|
|
101
125
|
/** true if smtp config is correct and complete. Will return false if smtp-config does not exist at all */
|
|
102
126
|
isValid?: boolean;
|
|
@@ -154,7 +178,7 @@ type DeleteEmailConfigHttpError = DeleteEmailConfig403HttpError | DeleteEmailCon
|
|
|
154
178
|
*/
|
|
155
179
|
declare const getEmailConfig: (options?: ApiCallOptions) => Promise<GetEmailConfigHttpResponse>;
|
|
156
180
|
type GetEmailConfigHttpResponse = {
|
|
157
|
-
data:
|
|
181
|
+
data: GetEmailConfig;
|
|
158
182
|
headers: Headers;
|
|
159
183
|
status: number;
|
|
160
184
|
};
|
|
@@ -182,7 +206,7 @@ type PatchEmailConfigHttpResponse = {
|
|
|
182
206
|
status: number;
|
|
183
207
|
};
|
|
184
208
|
type PatchEmailConfig400HttpError = {
|
|
185
|
-
data:
|
|
209
|
+
data: UpdateEmailConfigError;
|
|
186
210
|
headers: Headers;
|
|
187
211
|
status: 400;
|
|
188
212
|
};
|
|
@@ -316,4 +340,4 @@ interface TransportsAPI {
|
|
|
316
340
|
*/
|
|
317
341
|
declare const transportsExport: TransportsAPI;
|
|
318
342
|
|
|
319
|
-
export { type DeleteConfigNotFoundError, type DeleteEmailConfig403HttpError, type DeleteEmailConfig404HttpError, type DeleteEmailConfigDefaultHttpError, type DeleteEmailConfigHttpError, type DeleteEmailConfigHttpResponse, type Email, type EmailConfigFieldPatch, type
|
|
343
|
+
export { type DeleteConfigNotFoundError, type DeleteEmailConfig403HttpError, type DeleteEmailConfig404HttpError, type DeleteEmailConfigDefaultHttpError, type DeleteEmailConfigHttpError, type DeleteEmailConfigHttpResponse, type Email, type EmailConfigFieldPatch, type EmailConfigPatch, type ErrorPublic, type ErrorsPublic, type GetBasicAuthConfig, type GetEmailConfig, type GetEmailConfig403HttpError, type GetEmailConfigDefaultHttpError, type GetEmailConfigHttpError, type GetEmailConfigHttpResponse, type GetMicrosoft365Config, type PatchEmailConfig400HttpError, type PatchEmailConfig403HttpError, type PatchEmailConfigDefaultHttpError, type PatchEmailConfigHttpError, type PatchEmailConfigHttpResponse, type SendTestEmail403HttpError, type SendTestEmail404HttpError, type SendTestEmailDefaultHttpError, type SendTestEmailHttpError, type SendTestEmailHttpResponse, type SendTestMailConfigNotFoundError, type SmtpCheck, type SmtpConfigStatus, type SmtpResult, type TenantAdminError, type TransportsAPI, type UpdateEmailConfigError, type ValidateEmailConfigHttpError, type ValidateEmailConfigHttpResponse, type VerifyConnectionConfigNotFoundError, type VerifyEmailConfigConnection404HttpError, type VerifyEmailConfigConnectionDefaultHttpError, type VerifyEmailConfigConnectionHttpError, type VerifyEmailConfigConnectionHttpResponse, clearCache, transportsExport as default, deleteEmailConfig, getEmailConfig, patchEmailConfig, sendTestEmail, validateEmailConfig, verifyEmailConfigConnection };
|
package/transports.js
CHANGED
package/users.d.ts
CHANGED
package/users.js
CHANGED
package/web-integrations.d.ts
CHANGED
package/web-integrations.js
CHANGED
package/web-notifications.d.ts
CHANGED
package/web-notifications.js
CHANGED
package/webhooks.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-CMQsAHYd.js';
|
|
2
|
+
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
type Delivery = {
|
|
5
5
|
/** The name of the triggering event-type */
|
package/webhooks.js
CHANGED
|
File without changes
|