@iotexproject/kit 0.0.102 → 0.0.103

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8472,13 +8472,12 @@ declare class Contract extends BaseDBModule {
8472
8472
  export type ComponentType = "banner-latest" | "iotex-2.0";
8473
8473
  export interface ComponentData {
8474
8474
  id: ComponentType;
8475
- fullScreenData: string;
8476
- mobileData?: string;
8475
+ html: string;
8476
+ html_mobile: string;
8477
8477
  }
8478
8478
  declare class Resource {
8479
- getComponent({ id, mobile }: {
8479
+ get_component({ id }: {
8480
8480
  id: ComponentType;
8481
- mobile?: boolean;
8482
8481
  }): Promise<ComponentData>;
8483
8482
  }
8484
8483
  declare const modules$1: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.0.102",
5
+ "version": "v0.0.103",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {