@web-applets/sdk 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/types.d.ts +7 -3
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -15,9 +15,13 @@ export interface AppletHeader {
15
15
  name: string;
16
16
  description: string;
17
17
  url: string;
18
- params: {
19
- [key: string]: string;
20
- };
18
+ actions: {
19
+ id: string;
20
+ description: string;
21
+ params: {
22
+ [key: string]: string;
23
+ };
24
+ }[];
21
25
  }
22
26
  export type AppletState = Record<string, Serializable>;
23
27
  export type ActionParamSchema = Record<string, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web-applets/sdk",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "The Web Applets SDK, for creating & hosting Web Applets.",
5
5
  "author": "Rupert Manfredi <rupert@unternet.co>",
6
6
  "license": "MIT",