@openfin/cloud-interop-core-api 0.0.1-alpha.f467b5d → 0.0.1-alpha.f47cc84

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/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @openfin/cloud-interop-core-api
2
2
 
3
- This package contains the core interop library that handles all interactions with the Here™ Cloud Interop Service.
3
+ This package contains the core interop library that handles all interactions with the HERE Cloud Interop Service.
4
4
 
5
5
  It is callable via browser or node applications.
6
6
 
7
7
 
8
8
  ## Authentication
9
9
 
10
- The library supports authentication with the Here™ Cloud Interop Service using the following methods:
10
+ The library supports authentication with the HERE Cloud Interop Service using the following methods:
11
11
  - Basic Authentication
12
12
  - JWT Token Authentication
13
13
  - Default Authentication i.e. Interactive session based authentication using cookies
package/bundle.d.ts CHANGED
@@ -51,7 +51,7 @@ declare const appIntentSchema: z.ZodObject<{
51
51
  name: string;
52
52
  displayName: string;
53
53
  }>;
54
- apps: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
54
+ apps: z.ZodArray<z.ZodObject<{
55
55
  description: z.ZodOptional<z.ZodString>;
56
56
  icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
57
57
  size: z.ZodOptional<z.ZodString>;
@@ -88,10 +88,10 @@ declare const appIntentSchema: z.ZodObject<{
88
88
  title: z.ZodOptional<z.ZodString>;
89
89
  tooltip: z.ZodOptional<z.ZodString>;
90
90
  version: z.ZodOptional<z.ZodString>;
91
- }, {
91
+ } & {
92
92
  appId: z.ZodString;
93
93
  instanceId: z.ZodOptional<z.ZodString>;
94
- }>, "strip", z.ZodTypeAny, {
94
+ }, "strip", z.ZodTypeAny, {
95
95
  appId: string;
96
96
  instanceId?: string | undefined;
97
97
  description?: string | undefined;
@@ -268,7 +268,7 @@ export declare class CloudInteropAPI {
268
268
  * @returns {*} {Promise<void>}
269
269
  * @memberof CloudInteropAPI
270
270
  */
271
- setContext(contextGroup: string, context: object): Promise<void>;
271
+ setContext(contextGroup: string, context: InferredContext): Promise<void>;
272
272
  /**
273
273
  * Starts an intent discovery operation
274
274
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/cloud-interop-core-api",
3
- "version": "0.0.1-alpha.f467b5d",
3
+ "version": "0.0.1-alpha.f47cc84",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "./index.cjs",
@@ -8,11 +8,11 @@
8
8
  "types": "./bundle.d.ts",
9
9
  "author": "",
10
10
  "license": "SEE LICENSE IN LICENSE.md",
11
+ "dependencies": {
12
+ "mqtt": "^5.13.0",
13
+ "zod": "^3.24.4"
14
+ },
11
15
  "optionalDependencies": {
12
16
  "@rollup/rollup-linux-x64-gnu": "*"
13
- },
14
- "dependencies": {
15
- "mqtt": "^5.3.1",
16
- "zod": "^3.24.1"
17
17
  }
18
18
  }