🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@qlik/embed-runtime

Package Overview
Dependencies
Maintainers
3
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qlik/embed-runtime - npm Package Compare versions

Comparing version
1.2.11
to
1.3.0
+6
-0
CHANGELOG.md
# @qlik/embed-runtime
## 1.3.0
### Minor Changes
- 000ec8a: Update tooling for enabling easier testing
## 1.2.11

@@ -4,0 +10,0 @@

+11
-9
import { HostConfig } from '@qlik/api/auth';
import { Doc, GenericObject, Field } from '@qlik/api/qix';
type TypeNotYetAvailable = any;
type Neverify<T> = {

@@ -21,3 +21,5 @@ [P in keyof T]?: never;

stateName?: string;
properties?: any;
properties?: {
[key: string]: unknown;
};
};

@@ -58,7 +60,7 @@ type CommonAnalyticsProps = WithAppId & {

*/
getDoc: () => Promise<TypeNotYetAvailable>;
getDoc: () => Promise<Doc>;
/**
* Returns a promise of the enigma object model that is rendered.
*/
getObject: () => Promise<TypeNotYetAvailable>;
getObject: () => Promise<GenericObject>;
/**

@@ -105,4 +107,4 @@ * Returns a promise of chart-specific ref API.

*/
getDoc: () => Promise<TypeNotYetAvailable>;
getField(): Promise<TypeNotYetAvailable>;
getDoc: () => Promise<Doc>;
getField: () => Promise<Field>;
};

@@ -114,3 +116,3 @@ type SelectionsProps = CommonAnalyticsProps;

*/
getDoc: () => Promise<TypeNotYetAvailable>;
getDoc: () => Promise<Doc>;
};

@@ -201,4 +203,4 @@ type ClassicAppProps = {

type Mounted = {
$destroy(): void;
$set(props: QlikEmbedVanillaProps): void;
$destroy: () => void;
$set: (props: QlikEmbedVanillaProps) => void;
};

@@ -205,0 +207,0 @@ type MountVanillaEmbedComponent = ({ target, props }: MountProps) => Mounted;

@@ -62,3 +62,3 @@ import { HostConfig } from '@qlik/api/auth';

*/
invokeFetch<T extends InvokeFetchResponse>(api: string, { method, pathTemplate, pathVariables, query, body, options }: InvokeFetchProperties): Promise<T>;
invokeFetch: <T extends InvokeFetchResponse>(api: string, { method, pathTemplate, pathVariables, query, body, options }: InvokeFetchProperties) => Promise<T>;
/**

@@ -70,3 +70,3 @@ * Clears cached responses for a certain api

*/
clearApiCache(api: string): void;
clearApiCache: (api: string) => void;
}

@@ -73,0 +73,0 @@ declare const _default: {};

@@ -5,3 +5,3 @@ import { OpenAppSessionProps, AppSession } from '@qlik/api/qix';

interface QixRuntimeApiV1 {
openAppSession(appSessionProps: OpenAppSessionProps): AppSession;
openAppSession: (appSessionProps: OpenAppSessionProps) => AppSession;
}

@@ -8,0 +8,0 @@ declare const _default: {};

{
"name": "@qlik/embed-runtime",
"version": "1.2.11",
"version": "1.3.0",
"description": "Types for Qlik Embed libraries",

@@ -18,16 +18,9 @@ "license": "ISC",

],
"prettier": "@qlik/prettier-config",
"dependencies": {
"@qlik/api": "1.34.0"
"@qlik/api": "^1.41.0"
},
"devDependencies": {
"@qlik/eslint-config": "^0.8.2",
"@qlik/prettier-config": "^0.4.25",
"@qlik/tsconfig": "^0.2.8",
"@types/node": "^22.15.33",
"eslint": "^8.57.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"@types/node": "^24.2.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
"typescript": "^5.9.2"
},

@@ -44,6 +37,6 @@ "engines": {

"check-types": "tsc --noEmit",
"format:check": "prettier --check '**' --ignore-unknown",
"format:write": "prettier --write '**' --ignore-unknown",
"lint": "eslint . --ext .ts"
"format:check": "cd ../.. && prettier --check './packages/embed-runtime/**' --ignore-unknown",
"format:write": "cd ../.. && prettier --write './packages/embed-runtime/**' --ignore-unknown",
"lint": "cd ../.. && eslint ./packages/embed-runtime"
}
}