@abtnode/blocklet-services 1.16.17-beta-8903a652 → 1.16.17

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.
@@ -485,10 +485,11 @@ module.exports = {
485
485
  await node.createAuditLog(
486
486
  {
487
487
  action: 'loginFederated',
488
- args: { blocklet, memberSite: loginSite, teamDid },
488
+ args: { memberSite: loginSite, teamDid },
489
489
  context: {
490
490
  user: req.user,
491
491
  },
492
+ result: blocklet,
492
493
  },
493
494
  node
494
495
  );
@@ -574,10 +575,11 @@ module.exports = {
574
575
  await node.createAuditLog(
575
576
  {
576
577
  action: 'loginByMaster',
577
- args: { masterSite: verifySite, teamDid, blocklet },
578
+ args: { masterSite: verifySite, teamDid },
578
579
  context: {
579
580
  user: doc,
580
581
  },
582
+ result: blocklet,
581
583
  },
582
584
  node
583
585
  );
@@ -669,10 +671,11 @@ module.exports = {
669
671
  await node.createAuditLog(
670
672
  {
671
673
  action: 'loginByMember',
672
- args: { memberSite: verifySite, teamDid, blocklet },
674
+ args: { memberSite: verifySite, teamDid },
673
675
  context: {
674
676
  user: newUser,
675
677
  },
678
+ result: blocklet,
676
679
  },
677
680
  node
678
681
  );
@@ -747,10 +750,11 @@ module.exports = {
747
750
  await node.createAuditLog(
748
751
  {
749
752
  action: 'loginByMaster',
750
- args: { masterSite: verifySite, teamDid, blocklet },
753
+ args: { masterSite: verifySite, teamDid },
751
754
  context: {
752
755
  user: newUser,
753
756
  },
757
+ result: blocklet,
754
758
  },
755
759
  node
756
760
  );
@@ -816,10 +820,11 @@ module.exports = {
816
820
  await node.createAuditLog(
817
821
  {
818
822
  action: 'loginFederatedMaster',
819
- args: { blocklet, masterSite, teamDid },
823
+ args: { masterSite, teamDid },
820
824
  context: {
821
825
  user,
822
826
  },
827
+ result: blocklet,
823
828
  },
824
829
  node
825
830
  );
@@ -129,7 +129,7 @@ module.exports = {
129
129
 
130
130
  const userSessionDoc = await upsertUserSession(
131
131
  {
132
- teamDid: appPid,
132
+ teamDid,
133
133
  userDid,
134
134
  visitorId,
135
135
  appPid,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.17-beta-8903a652",
6
+ "version": "1.16.17",
7
7
  "description": "Provide unified services for every blocklet",
8
8
  "main": "api/index.js",
9
9
  "files": [
@@ -33,17 +33,17 @@
33
33
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
34
34
  "license": "Apache-2.0",
35
35
  "dependencies": {
36
- "@abtnode/analytics": "1.16.17-beta-8903a652",
37
- "@abtnode/auth": "1.16.17-beta-8903a652",
38
- "@abtnode/client": "1.16.17-beta-8903a652",
39
- "@abtnode/connect-storage": "1.16.17-beta-8903a652",
40
- "@abtnode/constant": "1.16.17-beta-8903a652",
41
- "@abtnode/core": "1.16.17-beta-8903a652",
42
- "@abtnode/cron": "1.16.17-beta-8903a652",
43
- "@abtnode/logger": "1.16.17-beta-8903a652",
44
- "@abtnode/models": "1.16.17-beta-8903a652",
45
- "@abtnode/router-templates": "1.16.17-beta-8903a652",
46
- "@abtnode/util": "1.16.17-beta-8903a652",
36
+ "@abtnode/analytics": "1.16.17",
37
+ "@abtnode/auth": "1.16.17",
38
+ "@abtnode/client": "1.16.17",
39
+ "@abtnode/connect-storage": "1.16.17",
40
+ "@abtnode/constant": "1.16.17",
41
+ "@abtnode/core": "1.16.17",
42
+ "@abtnode/cron": "1.16.17",
43
+ "@abtnode/logger": "1.16.17",
44
+ "@abtnode/models": "1.16.17",
45
+ "@abtnode/router-templates": "1.16.17",
46
+ "@abtnode/util": "1.16.17",
47
47
  "@arcblock/did": "^1.18.93",
48
48
  "@arcblock/did-auth": "1.18.93",
49
49
  "@arcblock/did-ext": "^1.18.93",
@@ -52,11 +52,11 @@
52
52
  "@arcblock/jwt": "1.18.93",
53
53
  "@arcblock/validator": "^1.18.93",
54
54
  "@arcblock/ws": "1.18.93",
55
- "@blocklet/constant": "1.16.17-beta-8903a652",
55
+ "@blocklet/constant": "1.16.17",
56
56
  "@blocklet/form-builder": "^0.1.11",
57
57
  "@blocklet/form-collector": "^0.1.6",
58
- "@blocklet/meta": "1.16.17-beta-8903a652",
59
- "@blocklet/sdk": "1.16.17-beta-8903a652",
58
+ "@blocklet/meta": "1.16.17",
59
+ "@blocklet/sdk": "1.16.17",
60
60
  "@did-connect/authenticator": "^2.2.0",
61
61
  "@did-connect/relay-adapter-express": "^2.2.0",
62
62
  "@did-connect/storage-nedb": "^2.2.0",
@@ -98,12 +98,12 @@
98
98
  "@nedb/core": "^2.1.2"
99
99
  },
100
100
  "devDependencies": {
101
- "@abtnode/ux": "1.16.17-beta-8903a652",
101
+ "@abtnode/ux": "1.16.17",
102
102
  "@arcblock/did-connect": "^2.8.5",
103
103
  "@arcblock/icons": "^2.8.5",
104
104
  "@arcblock/ux": "^2.8.5",
105
105
  "@blocklet/launcher-layout": "2.2.22",
106
- "@blocklet/tracker": "1.16.17-beta-8903a652",
106
+ "@blocklet/tracker": "1.16.17",
107
107
  "@blocklet/ui-react": "^2.8.5",
108
108
  "@emotion/react": "^11.10.4",
109
109
  "@emotion/styled": "^11.10.4",
@@ -174,5 +174,5 @@
174
174
  "url": "https://github.com/ArcBlock/blocklet-server/issues",
175
175
  "email": "shijun@arcblock.io"
176
176
  },
177
- "gitHead": "8ce907ca1b4321b374a699ac8c2577772e3464c3"
177
+ "gitHead": "628ba2f5dac74749900bc1e9fd81bab8d320412a"
178
178
  }