openxiangda-skill-kit 2.0.0-alpha.97 → 2.0.0-alpha.98

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openxiangda-skill-kit",
3
- "version": "2.0.0-alpha.97",
3
+ "version": "2.0.0-alpha.98",
4
4
  "description": "Validation and deterministic packaging for OpenXiangda 2.0 AI skills.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "README.md"
18
18
  ],
19
19
  "dependencies": {
20
- "openxiangda-devkit-core": "2.0.0-alpha.76"
20
+ "openxiangda-devkit-core": "2.0.0-alpha.77"
21
21
  },
22
22
  "devDependencies": {
23
23
  "tsx": "4.23.12",
@@ -57,7 +57,10 @@ await this.notifications.send({
57
57
  navigationTarget: {
58
58
  kind: 'APP_ROUTE',
59
59
  appCode: 'proposal_app',
60
- routeCode: 'proposal.detail',
60
+ routeCodes: {
61
+ desktop: 'proposal.detail',
62
+ mobile: 'proposal.detail-mobile',
63
+ },
61
64
  pathParams: { id: proposal.id },
62
65
  access: 'AUTHENTICATED',
63
66
  },
@@ -96,7 +99,10 @@ await this.notifications.sendFromEvent({
96
99
  navigationTarget: {
97
100
  kind: 'APP_ROUTE',
98
101
  appCode: 'proposal_app',
99
- routeCode: 'proposal.detail',
102
+ routeCodes: {
103
+ desktop: 'proposal.detail',
104
+ mobile: 'proposal.detail-mobile',
105
+ },
100
106
  pathParams: { id: event.data.proposalId },
101
107
  access: 'AUTHENTICATED',
102
108
  },