@abtnode/core 1.8.4 → 1.8.5

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.
@@ -231,6 +231,8 @@ const getLogContent = async (action, args, context, result, info, node) => {
231
231
 
232
232
  return message;
233
233
  }
234
+ case 'createTransferInvitation':
235
+ return `created a transfer node invitation(${result.inviteId})`;
234
236
 
235
237
  default:
236
238
  return action;
@@ -282,6 +284,7 @@ const getLogCategory = (action) => {
282
284
  case 'updatePermissionsForRole':
283
285
  case 'configTrustedPassports':
284
286
  case 'delegateTransferNFT':
287
+ case 'createTransferInvitation':
285
288
  return 'team';
286
289
 
287
290
  // accessKeys
@@ -740,7 +740,7 @@ const parseChildrenFromMeta = async (src, context = {}) => {
740
740
  try {
741
741
  m = await getBlockletMetaFromUrls(urls);
742
742
  } catch {
743
- throw new Error('Failed get component meta');
743
+ throw new Error(`Failed get component meta: ${config.title || config.name}`);
744
744
  }
745
745
 
746
746
  validateBlockletMeta(m, { ensureDist: true });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.4",
6
+ "version": "1.8.5",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -19,32 +19,32 @@
19
19
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@abtnode/certificate-manager": "1.8.4",
23
- "@abtnode/constant": "1.8.4",
24
- "@abtnode/cron": "1.8.4",
25
- "@abtnode/db": "1.8.4",
26
- "@abtnode/logger": "1.8.4",
27
- "@abtnode/queue": "1.8.4",
28
- "@abtnode/rbac": "1.8.4",
29
- "@abtnode/router-provider": "1.8.4",
30
- "@abtnode/static-server": "1.8.4",
31
- "@abtnode/timemachine": "1.8.4",
32
- "@abtnode/util": "1.8.4",
33
- "@arcblock/did": "1.17.5",
22
+ "@abtnode/certificate-manager": "1.8.5",
23
+ "@abtnode/constant": "1.8.5",
24
+ "@abtnode/cron": "1.8.5",
25
+ "@abtnode/db": "1.8.5",
26
+ "@abtnode/logger": "1.8.5",
27
+ "@abtnode/queue": "1.8.5",
28
+ "@abtnode/rbac": "1.8.5",
29
+ "@abtnode/router-provider": "1.8.5",
30
+ "@abtnode/static-server": "1.8.5",
31
+ "@abtnode/timemachine": "1.8.5",
32
+ "@abtnode/util": "1.8.5",
33
+ "@arcblock/did": "1.17.6",
34
34
  "@arcblock/did-motif": "^1.1.10",
35
- "@arcblock/did-util": "1.17.5",
36
- "@arcblock/event-hub": "1.17.5",
37
- "@arcblock/jwt": "^1.17.5",
35
+ "@arcblock/did-util": "1.17.6",
36
+ "@arcblock/event-hub": "1.17.6",
37
+ "@arcblock/jwt": "^1.17.6",
38
38
  "@arcblock/pm2-events": "^0.0.5",
39
- "@arcblock/vc": "1.17.5",
40
- "@blocklet/meta": "1.8.4",
41
- "@blocklet/sdk": "1.8.4",
39
+ "@arcblock/vc": "1.17.6",
40
+ "@blocklet/meta": "1.8.5",
41
+ "@blocklet/sdk": "1.8.5",
42
42
  "@fidm/x509": "^1.2.1",
43
43
  "@nedb/core": "^1.3.2",
44
44
  "@nedb/multi": "^1.3.2",
45
- "@ocap/mcrypto": "1.17.5",
46
- "@ocap/util": "1.17.5",
47
- "@ocap/wallet": "1.17.5",
45
+ "@ocap/mcrypto": "1.17.6",
46
+ "@ocap/util": "1.17.6",
47
+ "@ocap/wallet": "1.17.6",
48
48
  "@slack/webhook": "^5.0.3",
49
49
  "axios": "^0.27.2",
50
50
  "axon": "^2.0.3",
@@ -82,5 +82,5 @@
82
82
  "express": "^4.17.1",
83
83
  "jest": "^27.4.5"
84
84
  },
85
- "gitHead": "c42fb1bb84c5eef0f753fd5397d8007c7a6eee19"
85
+ "gitHead": "58da88581cdf1dd45fd50e56db08a055be82626e"
86
86
  }