@opencxh/domain 1.172.2 → 1.173.1

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.
@@ -37,7 +37,7 @@ export type ResourceDefinition<T = any> = T;
37
37
  * It defines the app's identity, its components, its UI contributions,
38
38
  * and most importantly, its security sandbox via the permissions block.
39
39
  */
40
- export interface AppManifest<TSDK = any> {
40
+ export interface AppManifest<_TSDK = any> {
41
41
  /**
42
42
  * The namespace of the application.
43
43
  */
@@ -12,18 +12,18 @@ export interface GlobalServices extends ServiceMap {
12
12
  path: string;
13
13
  options?: any;
14
14
  };
15
- response: void;
15
+ response: undefined;
16
16
  };
17
17
  "platform:auth:expired": {
18
18
  params: {};
19
- response: void;
19
+ response: undefined;
20
20
  };
21
21
  "platform:ui:toast": {
22
22
  params: {
23
23
  message: string;
24
24
  type: "success" | "error";
25
25
  };
26
- response: void;
26
+ response: undefined;
27
27
  };
28
28
  }
29
29
  export interface ServiceInvocation<T = any> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.172.2",
3
+ "version": "1.173.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",