@reflecterlab/bridge-sdk 1.0.1 → 1.1.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.
- package/dist/types.d.ts +3 -3
- package/package.json +15 -3
package/dist/types.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ export interface MiniApp {
|
|
|
3
3
|
name: string;
|
|
4
4
|
description: string;
|
|
5
5
|
url: string;
|
|
6
|
-
icon?: string;
|
|
7
6
|
category: 'finance' | 'gaming' | 'social' | 'tools' | 'ecosystem';
|
|
7
|
+
developerId: string;
|
|
8
8
|
permissions: AppPermission[];
|
|
9
|
-
developer_id: string;
|
|
10
|
-
created_at: Date;
|
|
11
9
|
status: 'pending' | 'active' | 'suspended';
|
|
10
|
+
icon?: string;
|
|
11
|
+
createdAt: Date;
|
|
12
12
|
}
|
|
13
13
|
export type AppPermission = 'read_identity' | 'read_balances' | 'sign_transaction' | 'sign_message';
|
|
14
14
|
export interface BridgeMessage<T = any> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reflecterlab/bridge-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "The official bridge to build mini-apps on Open The Doorz ecosystem.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,17 +9,29 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
|
-
"dev": "tsc --watch"
|
|
12
|
+
"dev": "tsc --watch",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"starknet",
|
|
16
17
|
"web3",
|
|
17
18
|
"mini-apps",
|
|
18
19
|
"bridge",
|
|
19
|
-
"wallet-sdk"
|
|
20
|
+
"wallet-sdk",
|
|
21
|
+
"open-the-doorz",
|
|
22
|
+
"reflecter"
|
|
20
23
|
],
|
|
21
24
|
"author": "Reflecter Labs",
|
|
22
25
|
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/reflecterlabs/Reflecter-Wallet.git",
|
|
29
|
+
"directory": "packages/bridge-sdk"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/reflecterlabs/Reflecter-Wallet#readme",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/reflecterlabs/Reflecter-Wallet/issues"
|
|
34
|
+
},
|
|
23
35
|
"devDependencies": {
|
|
24
36
|
"typescript": "^5.0.0"
|
|
25
37
|
}
|