@qlik/embed-runtime
Advanced tools
+6
-0
| # @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: {}; |
+1
-1
@@ -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: {}; |
+7
-14
| { | ||
| "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" | ||
| } | ||
| } |
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
3
-66.67%391
0.51%19343
-0.12%+ Added
- Removed
Updated