@messenger-box/platform-client 10.0.3-alpha.158 → 10.0.3-alpha.160

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.0.3-alpha.160](https://github.com/cdmbase/messenger-box/compare/v10.0.3-alpha.159...v10.0.3-alpha.160) (2025-12-24)
7
+
8
+ **Note:** Version bump only for package @messenger-box/platform-client
9
+
6
10
  ## [10.0.3-alpha.158](https://github.com/CDEBase/messenger-box/compare/v10.0.3-alpha.157...v10.0.3-alpha.158) (2025-12-23)
7
11
 
8
12
  **Note:** Version bump only for package @messenger-box/platform-client
@@ -97,6 +97,32 @@ mutation DeleteMessageFile($url:String!){
97
97
  }
98
98
 
99
99
 
100
+ mutation GenerateAiCode($messageId: String!, $modelConfig: ModelConfigurationInput) {
101
+ generateAiCode(messageId: $messageId, modelConfig: $modelConfig) {
102
+ eventId
103
+ message
104
+ success
105
+ }
106
+ }
107
+
108
+ mutation RecreateSandbox($messageId: String!) {
109
+ recreateSandbox(messageId: $messageId) {
110
+ eventId
111
+ message
112
+ success
113
+ }
114
+ }
115
+
116
+ mutation UpdateSandboxFile($projectId: String!, $messageId: String!, $filePath: String!, $content: String!) {
117
+ updateSandboxFile(projectId: $projectId, messageId: $messageId, filePath: $filePath, content: $content) {
118
+ success
119
+ message
120
+ filePath
121
+ timestamp
122
+ syncStatus
123
+ }
124
+ }
125
+
100
126
 
101
127
  #mutation PinMessage($messageId:String! , $messageInput:String! , $content:String!) {
102
128
  # pinMessage(
@@ -0,0 +1,17 @@
1
+ subscription SandboxError($projectId: String!) {
2
+ sandboxError(projectId: $projectId) {
3
+ projectId
4
+ sandboxId
5
+ error {
6
+ id
7
+ projectId
8
+ sandboxId
9
+ errorType
10
+ message
11
+ stack
12
+ timestamp
13
+ url
14
+ fixable
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/platform-client",
3
- "version": "10.0.3-alpha.158",
3
+ "version": "10.0.3-alpha.160",
4
4
  "description": "Sample core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -20,7 +20,7 @@
20
20
  "watch": "yarn build:lib:watch"
21
21
  },
22
22
  "dependencies": {
23
- "@adminide-stack/file-info-client": "^5.4.3-alpha.0",
23
+ "@adminide-stack/file-info-client": "^5.4.4-alpha.3",
24
24
  "@messenger-box/core": "10.0.3-alpha.158",
25
25
  "key-mirror": "1.0.1",
26
26
  "moment-timezone": "0.5.33"
@@ -35,5 +35,5 @@
35
35
  "typescript": {
36
36
  "definition": "lib/index.d.ts"
37
37
  },
38
- "gitHead": "3c0470617c57636194851348aea9d87533d10837"
38
+ "gitHead": "88d9539b559a1791670e02900b2f55ca98b6af0c"
39
39
  }